isaac_cm Posted December 11, 2006 Share Posted December 11, 2006 newbie question , what is the select syntax to get all result that contains string "abc" other than using "like"thanks Quote Link to comment https://forums.phpfreaks.com/topic/30179-get-all-result-that-contains-string-abc/ Share on other sites More sharing options...
btherl Posted December 11, 2006 Share Posted December 11, 2006 There are plenty of other ways, such as regular expressions. Why don't you want to use like? Quote Link to comment https://forums.phpfreaks.com/topic/30179-get-all-result-that-contains-string-abc/#findComment-138845 Share on other sites More sharing options...
isaac_cm Posted December 11, 2006 Author Share Posted December 11, 2006 I talk to myself and and said it must be other ways to do the same thing without using like so it is just for learning other ways :) Quote Link to comment https://forums.phpfreaks.com/topic/30179-get-all-result-that-contains-string-abc/#findComment-138946 Share on other sites More sharing options...
mjlogan Posted December 11, 2006 Share Posted December 11, 2006 You could index the table and use the fulltext search for example. Quote Link to comment https://forums.phpfreaks.com/topic/30179-get-all-result-that-contains-string-abc/#findComment-139022 Share on other sites More sharing options...
isaac_cm Posted December 11, 2006 Author Share Posted December 11, 2006 I need SQL SYNTAX Quote Link to comment https://forums.phpfreaks.com/topic/30179-get-all-result-that-contains-string-abc/#findComment-139315 Share on other sites More sharing options...
Zane Posted December 11, 2006 Share Posted December 11, 2006 [code]SELECT * FROM table WHERE name REGEXP 'abc'[/code] Quote Link to comment https://forums.phpfreaks.com/topic/30179-get-all-result-that-contains-string-abc/#findComment-139321 Share on other sites More sharing options...
isaac_cm Posted December 11, 2006 Author Share Posted December 11, 2006 that will do thanks Quote Link to comment https://forums.phpfreaks.com/topic/30179-get-all-result-that-contains-string-abc/#findComment-139354 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.