我能得到一些幫助去纏着這個查詢我在第2行收到錯誤1064:錯誤Heidisql爲MySQL
use MyDB CREATE TABLE 'room_table'
('id' int(10) unsigned auto_increment primary key not null,
'created_by' int(10)unsigned not null, 'created_at' datetime not null,
'updated_by' int(10) unsigned, 'updated_at' datetime,
'deleted_by' int(10) unsigned, 'deleted_at' datetime,
'type' varchar(14) not null,
'order' int(10) unsigned not null, 'level' char(1) not null,
'length' int unsigned, 'width' int unsigned,
'description' varchar(255)
),
show tables;
** **從未使用'''桌子上的報價/字段名。這將他們變成了字符串,他們不再被視爲表/字段名稱。如果你堅持全部引用它們,那麼使用反引號(') –
或者:如果你堅持使用帶引號的標識符,打開ANSI模式並使用標準雙引號''' –