不,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 表名中的下劃線會導致問題嗎?的詳細內容,更多請關注www.92cms.cn其它相關文章!