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.
如何在过滤器中构造包含&符号的sqlite查询:
SELECT id FROM mediainfo WHERE album="Betty & Kate";
我使用 sqlite C 接口(在查询构建时使用 sqlite3_bind_text() 和 ? 标记),但 C 查询和 SQLite 管理员都没有返回任何数据
&不是 C 字符串或 SQL 字符串中的特殊字符,所以我认为这不是问题。从SQLite Database Browser之类的工具中尝试相同的查询。
&