Application Development and Automation 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: 
Read only

selecting from database view

Former Member
0 Likes
579

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

plz help me with example...

it is just like SELECTing from a transparent table.

Select * into table zview from z_view.

3 REPLIES 3
Read only

Former Member
0 Likes
557

it is just like SELECTing from a transparent table.

Select * into table zview from z_view.

Read only

Former Member
0 Likes
557

Hi,

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

Thanks

Naren

Read only

Former Member
0 Likes
557

Yes its the same:

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

Provided the ITAB is having view / table structure.

Thanks