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 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? 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 :) 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. 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 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] 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 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
Archived
This topic is now archived and is closed to further replies.