mysql基本语句

时间:2021-05-18

mysql基本语句是:

  1、选择:“select * from table where”范围。

  2、插入:“insert into table(field1,field2) values(value1,value2)”。

  3、删除:“delete from table where ”范围。

  4、更新:“update table set field1=value1 where ”范围。

  5、查找:“select * from table where field1 like ’%value1%’”。

  6、排序:“select * from table order by field1,field2 [desc]”。

  7、总数:“select count as totalcount from table”。

  8、求和:“select sum(field1) as sumvalue from table”。

  9、平均:“select avg(field1) as avgvalue from table”。

  10、最大:“select max(field1) as maxvalue from table”。

  11、最小:“select min(field1) as minvalue from table”等。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章