An UPDATE to an existing row is allowed only if the WHERE clause remains true for the resulting row.
An INSERT is allowed only if the WHERE clause is true for the new row.
An UPDATE to an existing row is allowed only if the WHERE clause remains true for the resulting row.
An INSERT is allowed only if the WHERE clause is true for the new row.
Front
Using the WITH CHECK OPTION on a view
Back
Both, like they are and'ed together.
Front
If a view has a where clause in the create and the select of the view has a where clause which is used.
Back
Undefined, Merge, and Temptable
Front
What are the 3 view algorithms
Back
You must have drop permission
Front
To have the with replace or alter view you must have what permission besides create view
Back
undefined
Front
If no algorithm is chosen for a view which one is default
Back
SELECT * FROM INFORMATION_SCHEMA.VIEWS
-> WHERE TABLE_NAME = 'CityView'
-> AND TABLE_SCHEMA = 'world'\G
Front
What table can you query to get information about tables?
Back
The create order by view is ignored and the select order by is used.
Front
If a view has an order by in the create view and an order by in the select From view, which is used?