查找MySQL列中带有双引号的记录?

使用LIKE查找带双引号的记录。以下是语法-

select *from yourTableName where yourColumnName LIKE '%"%';

让我们首先创建一个表-

mysql> create table DemoTable740 (Value varchar(100));

使用插入命令在表中插入一些记录-

mysql> insert into DemoTable740 values("\"");
mysql> insert into DemoTable740 values("\"John");
mysql> insert into DemoTable740 values("Sam");

使用select语句显示表中的所有记录-

mysql> select *from DemoTable740;

这将产生以下输出-

+-------+
| Value |
+-------+
| "     |
| "John |
| Sam   |
+-------+
3 rows in set (0.00 sec)

这是查找在MySQL中带有双引号的记录的查询-

mysql> select *from DemoTable740 where Value LIKE '%"%';

这将产生以下输出-

+-------+
| Value |
+-------+
| "     |
| "John |
+-------+
2 rows in set (0.00 sec)