CREATE VIEW customer_ro (name, language, credit)
AS SELECT cust_last_name, nls_language, credit_limit
FROM customers
How do i get the names of the aliases(i.e name, language, and credit) with respect to a particular view from the database.(oracle)….
i need to use it via jdbc…
Although views no longer appear in
USER_TABLES, they are still inUSER_TAB_COLUMNS(andDBA_andALL_equivalents). So you can do this:From jdbc you’d parameterise that, but otherwise the same query will work.