‎2008 Apr 30 5:25 PM
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.
‎2008 Apr 30 5:32 PM
This will work -
select * from tablename where field like 'N%'.
Thanks,
Sheel
‎2008 Apr 30 5:29 PM
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
‎2008 Apr 30 5:30 PM
select TCTLOW from TABLE1 into table IT_EMP
where TCTUSERNM LIKE 'N%'.
‎2008 Apr 30 5:32 PM
This will work -
select * from tablename where field like 'N%'.
Thanks,
Sheel
‎2008 Apr 30 6:32 PM