mysql中的SQL语句char类型是单引号还是双引号

2024-12-01 10:11:10
推荐回答(1个)
回答1:

mysql> insert into test values('Hello');
Query OK, 1 row affected (0.00 sec)

mysql> insert into test values("World");
Query OK, 1 row affected (0.00 sec)

结论,都可以。