在SQL语句中有几点问题,特此记录。 1.表、字段等用什么符号?用反引号或者不用,用单引号会产生错误; 2.字符串需要使用单引号或着双引号。
eg: create table test; ok create table test;ok create table 'test'; error
test