Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

selecting from database view

Former Member
0 Kudos
76

is it the same to get the values from view and table?

plz help me with example...

3 REPLIES 3

Former Member
0 Kudos
54

it is just like SELECTing from a transparent table.

Select * into table zview from z_view.

Former Member
0 Kudos
54

Hi,

Yes..But you can select only from projection view or database view..

Thanks

Naren

Former Member
0 Kudos
54

Yes its the same:

SELECT * FROM <view / table> INTO TABLE ITAB WHERE <condition>.

Provided the ITAB is having view / table structure.

Thanks