不,MySQL 表名中的底線不會有任何問題。 MySQL 表名中的破折號會出現問題。
這是一個演示,表名中的下劃線沒有任何問題 -
_StudentTrackerDemo
讓我們在創建表時看到相同的情況。建立表格的查詢如下 -
mysql> create table _StudentTrackerDemo -> ( -> StudentId int, -> StudentFirstName varchar(100) -> ); Query OK, 0 rows affected (0.75 sec)
下劃線對於表名有效,但破折號在某些 MySQL 版本中無效。這是帶有破折號的表名稱。同樣會產生錯誤 -
mysql> create table Student-table -> ( -> Id int, -> Name varchar(100) -> ); 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 (Id int, Name varchar(100) )' at line 1
以上是MySQL 表名中的底線會導致問題嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!