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 everything starting with first char

Former Member
0 Likes
1,671

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
Read only

Former Member
0 Likes
1,031

WHERE WERKS LIKE 'D%'.

Thanks,

Srinivas

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.

3 REPLIES 3
Read only

Former Member
0 Likes
1,032

WHERE WERKS LIKE 'D%'.

Thanks,

Srinivas

Read only

0 Likes
1,031

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

Read only

Former Member
0 Likes
1,031

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

Rob