我正在为学校开发一个小型关系数据库,但在简单查询时遇到了麻烦。我应该在表中找到所有在文本中某处带有单词“OMG”的字段的记录。我已经尝试了其他一些,但我无法弄清楚。我收到无效的关系运算符错误。
我的尝试:
select * from comments where contains('omg');
select * from comments where text contains('omg');
select * from comments where about('omg');
以及上述的几个变体。如您所见,我对 SQL 来说是全新的。text 是注释表中字段的名称。
谢谢你的帮助。