1、使用where ...like..查询指定数据
题目:查询students表中name="ton"的数据,此时的like相当于『=』
mysql> select id,name from students where name like "ton";
+----+------+
| id | name |
+----+------+
| 6 | ton |
+----+------+
1 row in set (0.00 sec)
题目:查询students表中name字段包含"ton"的数据
mysql> select id,name from students where name like "%ton%";
+----+------+
| id | name |
+----+------+
| 3 | tony |
| 6 | ton |
+----+------+
2 rows in set (0.00 sec)
你可以在WHERE子句中指定任何条件。
你可以在WHERE子句中使用LIKE子句。
你可以使用LIKE子句代替等号(=)。
LIKE 通常与 % 一同使用,类似于一个元字符的搜索。
你可以使用AND或者OR指定一个或多个条件。
你可以在 DELETE 或 UPDATE 命令中使用 WHERE...LIKE 子句来指定条件。