Which SQL statement would display the view names and definitions of all the views owned by you?

Which SQL statement would display the view names and definitions of all the views owned by you?

Which SQL statement would display the view names and definitions of all the views owned by you?

A.
SELECT view_name, text
FROM user_view;

B.
SELECT view_name, text
FROM user_object ;

C.
SELECT view_name, text
FROM user_objects;

D.
SELECT view_name, text
FROM user_views;



Leave a Reply 2

Your email address will not be published. Required fields are marked *


user

user

SELECT * FROM user_views;
SELECT * FROM user_objects;

mr_tienvu

mr_tienvu

I agree with the answer. D