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

*TABLE_NAME

Former Member
0 Likes
548

WHAT DOES *TABLE NAME SPECIFIES?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
512

Hi!

You can access this way a second header line of the table (it works like a work area, and it has the same sructure as the table).

It is a way obsolete.

Regards

Tamá

4 REPLIES 4
Read only

Former Member
0 Likes
513

Hi!

You can access this way a second header line of the table (it works like a work area, and it has the same sructure as the table).

It is a way obsolete.

Regards

Tamá

Read only

seshatalpasai_madala
Product and Topic Expert
Product and Topic Expert
0 Likes
512

Hi,

This is used along with TABLES statement.

So if you want to create two strcutres of the same table using TABLES statement then use as follows.

TABLES: scarr, *scarr.

The avantage is

SELECT SINGLE *

FROM scarr

WHERE carrid = 'LH'.

SELECT SINGLE *

FROM *scarr

WHERE carrid = 'UA'.

*scarr behaves in a same way as scarr and even it works in SELECT statement and *scarr will be treated as scarr and data will be read from scarr. This usage is obsolete.

Regards,

Sesh

Read only

Former Member
0 Likes
512

hi tushar,

*TABLE means the dummy table of original table TABLE

i will have the structure same as that of original table....but it wont be having any records..

hope this may help u...

please reward incase usefull...

regards,

prashant

Read only

Former Member