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 columnName FROM tableName WHERE LOCATE(string,columnName)!=0; 但它没有用。
SELECT columnName FROM tableName WHERE columnname LIKE '%string%'