create table tb_name -- this is a table (id int(11)); √ create table tb_name0 -- this is a table (id int(11)); × create table tb_name1 (id int(11)); #this is a table √ create table tb_name2 /*this is a table*/ (id int(11)); create table tb_name3 (id int(11) comment ‘this is a table‘); √
原文:https://www.cnblogs.com/WeiKing/p/12218657.html