MySQL 有哪些不同的引号?
mysqlmysqli database
在 MySQL 中,可以使用反引号和单引号。反引号可用于列名和表名,而单引号可用于列名值。
让我们为这两种引号举个例子。为了理解上述语法,让我们创建一个表。创建表的查询如下 −
mysql> create table QuotesDemo -> ( -> Id int NOT NULL AUTO_INCREMENT PRIMARY KEY, -> UserName varchar(20), -> UserAge int -> ); Query OK, 0 rows affected (2.53 sec)
使用 insert 命令在表中插入一些记录 −
mysql> insert into QuotesDemo(`UserName`,`UserAge`) values('John',23); Query OK, 1 row affected (0.21 sec) mysql> insert into QuotesDemo(`UserName`,`UserAge`) values('Carol',21); Query OK, 1 row affected (0.24 sec) mysql> insert into QuotesDemo(`UserName`,`UserAge`) values('Sam',22); Query OK, 1 row affected (0.11 sec)
现在,您可以使用 select 语句显示表中的所有记录。查询如下 −
mysql> select *from `QuotesDemo`;
输出
+----+----------+---------+ | Id | UserName | UserAge | +----+----------+---------+ | 1 | John | 23 | | 2 | Carol | 21 | | 3 | Sam | 22 | +----+----------+---------+ 3 rows in set (0.00 sec)
以下查询显示了两个引号的用法 −
mysql> select *from `QuotesDemo` where `UserName` = 'Carol';
输出
+----+----------+---------+ | Id | UserName | UserAge | +----+----------+---------+ | 2 | Carol | 21 | +----+----------+---------+ 1 row in set (0.00 sec)