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.
我想编写一个查询来选择标题以字母开头的项目,例如:
select * from items where title like "A%";
但是一些项目名称以“A 或 'A 开头,我想知道是否有可能,所以我的查询包含所有这些形式的标题。
select * from items where title like 'A%' or title like '\'A%';
或者,如果有很多 OR 的可能性,您可以使用正则表达式。