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: 

Select everything starting with first char

Former Member
0 Kudos
837

Hi,

I have a simple question and forgot how to do this. I need to do a select statement and select everything from the table for a field i.e. WERKS starting with 'D'. Any help would be greatly appreciated and rewarded.

Thanks,

-David.

1 ACCEPTED SOLUTION

Former Member
0 Kudos
197

WHERE WERKS LIKE 'D%'.

Thanks,

Srinivas

3 REPLIES 3

Former Member
0 Kudos
198

WHERE WERKS LIKE 'D%'.

Thanks,

Srinivas

0 Kudos
197

thanks Srinivas for quick reply. Its working fo me , have a good day.

Former Member
0 Kudos
197

If you simply put your cursor on a SELECT statement and press F!, you'll get your answer very quickly.

Rob