select id from customers where firstname like(%ell%)
Or, is there regular expression support in the select's where clause?
thanksTry:
select id from customers where firstname like '%ell%'
select id from customers where firstname like(%ell%)
Or, is there regular expression support in the select's where clause?
thanksTry:
select id from customers where firstname like '%ell%'
No comments:
Post a Comment