在 MySQL 表格名称中使用下划线会导致问题吗?
不会,在 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
广告