Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有可能获取以字母“ly”结尾的表的每个字符串?
这行得通吗:SELECT * FROM Table WHERE word LIKE %ly;
SELECT * FROM Table WHERE word LIKE %ly
提前致谢
如果您的意思是:“获取具有特定字段匹配字符串表达式的表的每条记录”,然后尝试(如您所建议):
SELECT * FROM myTable WHERE myField LIKE '%ly';
只需将您的搜索字符串放入单引号中。