Standard SQL-92 views are constructed from SQL SELECT statements that do not contain the GROUP BY clause.
A. True
B. False
Answer: Option B
Solution (By Examveda Team)
Standard SQL-92 views are constructed using SQL SELECT statements, and they can include the GROUP BY clause.The SQL-92 standard allows views to be created with complex SELECT statements, including those that use GROUP BY, JOINs, subqueries, and aggregate functions.
Therefore, the claim that views cannot contain the GROUP BY clause is incorrect according to the SQL-92 standard.
Join The Discussion
Comments (1)
Related Questions on SQL for Database Construction
A ________ is a stored program that is attached to a table or a view.
A. pseudofile
B. embedded SELECT statement
C. trigger
D. None of the above is correct.
A. deletes the table structure only.
B. deletes the table structure along with the table data.
C. works whether or not referential integrity constraints would be violated.
D. is not an SQL statement.
SQL views can be used to hide:
A. columns and rows only.
B. complicated SQL syntax only.
C. both of the above can be hidden by an SQL view.
D. None of the above is correct.

Correct Answer is A) True