2007 Feb 08 7:45 AM
how to retrive data from database views or projection views
2007 Feb 08 7:47 AM
Hi chintam,
1. Very simple
2. Just like normal select statement.
3. Select * from VIEWNAME.
4. (Instead of the tablename, we just have to give the viewname)
regards,
amit m.
2008 Dec 04 6:50 AM
Hi,
Are u sure bringing data from view using select statement.
Regards,
BBR.
2007 Feb 08 7:53 AM
Hi Chintam,
Getting data from a view is same as getting it from a table.
Write a selectquery just as u write for a database table and mention the view name in it instead of the table.Selct into an internal table.
And then check the data u selected in the internal table.
Regards,
Priyanka.
2008 Dec 04 6:42 AM
Hi.
Retrieving data from database view is very much similar to get the data from tables. So check the syntax of tables. Same will work for database view also.Thanks