在mysql字段中搜索特定单词并返回值

时间:2013-01-18 01:32:11

标签: php mysql search

我需要帮助的人!让我举一个例子......假设我在mysql的'comment'字段中有这两个条目..

 Entry 01: Kindly contact me through my email address entry01@nobody.com

 Entry 02: Please drop an email to entry02@you.com for more information

我只想从条目中提取电子邮件地址。任何人都可以帮助我吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

试试这个

  SELECT * 
  FROM your_table 
  WHERE your_column_entry1 
  LIKE  '%nobody.com%' 
  OR your_column_entry2 LIKE '%you.com%'