如果您的表名或列名是任何保留字,那麼您需要在 MySQL 查詢中使用引號將表名和列名括起來。您需要在表名和列名周圍使用反引號。語法如下:
SELECT *FROM `table` where `where`=condition;
這裡是建立一個不帶引號和保留字的表的查詢。您將收到錯誤訊息,因為它們是預先定義的保留字。錯誤如下:
mysql> create table table -> ( -> where int -> ); ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'table ( where int )' at line 1
現在讓我們在表格和欄位的名稱周圍加上引號,因為「table」和「where」是保留字。這是引號的查詢:
mysql> create table `table` -> ( -> `where` int -> ); Query OK, 0 rows affected (0.55 sec)
使用插入指令在表格中插入記錄。查詢如下:
mysql> insert into `table`(`where`) values(1); Query OK, 1 row affected (0.13 sec) mysql> insert into `table`(`where`) values(100); Query OK, 1 row affected (0.26 sec) mysql> insert into `table`(`where`) values(1000); Query OK, 1 row affected (0.13 sec)
借助where條件顯示表中的特定記錄。查詢如下:
mysql> select *from `table` where `where`=100;
以下是輸出:
+-------+ | where | +-------+ | 100 | +-------+ 1 row in set (0.00 sec)
以上是MySQL 查詢中的表格和欄位周圍的引號真的有必要嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!