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

select statement

Former Member
0 Likes
619

hi all,

Is the following statement correct

select TCTLOW from TABLE1 into table IT_EMP

where TCTUSERNM = 'N*'.

to select all the users starting with N.

thanks.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
593

This will work -

select * from tablename where field like 'N%'.

Thanks,

Sheel

4 REPLIES 4
Read only

Former Member
0 Likes
593

select TCTLOW from TABLE1 into table IT_EMP

where TCTUSERNM like 'N%'.

<REMOVED BY MODERATOR>

Thanks.

Imran.

Edited by: Alvaro Tejada Galindo on Apr 30, 2008 12:30 PM

Read only

Former Member
0 Likes
593

select TCTLOW from TABLE1 into table IT_EMP

where TCTUSERNM LIKE 'N%'.

Read only

Former Member
0 Likes
594

This will work -

select * from tablename where field like 'N%'.

Thanks,

Sheel

Read only

0 Likes
593

Thank you very much guys.