linux mysql 基本指令问题 insert into
的有关信息介绍如下:插入:insert into table1(field1,field2) values(value1,value2)
删除:delete from table1 where 范围
更新:update table1 set field1=value1 where 范围
查找:select * from table1 where field1 like ’%value1%’ ---like的语法很精妙,查资料!
排序:select * from table1 order by field1,field2 [desc]
总数:select count as totalcount from table1
求和:select sum(field1) as sumvalue from table1
平均:select avg(field1) as avgvalue from table1
最大:select max(field1) as maxvalue from table1
最小:select min(field1) as minvalue from table1
因为你的单引号里有全角字符,应该用半角单引号
你主键没有设置自增属性,但你入库的时候也没有给主键写入值,当然就报错啦,两种方案,一种是给主键num加上自增属性,第二种方案就是改下写入语句,给num也写入值,希望对你有帮助
看上去是单引号没配对,注意中文。
插入语句 '张四'这里有特殊字符
你仔细找找:
1、是不是有汉字的单引号
2、是不是有其他的隐藏字符