标签: php mysql
我想在MySQL数据库中选择所有数据时遇到问题,所以我想在一列中选择除apple以外的所有单词。
apple
表名:tb_fruits:
+========+ | word | +========+ | apple | +--------+ | banana | +--------+ | mango | +--------+
所以我想获取水果表中没有数据apple的所有数据。
"Select * from tb_fruits ...."
答案 0 :(得分:1)
SELECT * FROM tb_fruits WHERE word <> 'apple'
请参考文档和一些基本教程以获得帮助。
Comparison Functions and Operators
NOT LIKE
NOT EQUAL