MYSQL语句(简单地)

发布网友 发布时间:2022-03-24 22:03

我来回答

3个回答

懂视网 时间:2022-03-25 02:24

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”等。

  

  

热心网友 时间:2022-03-24 23:32

如果以学生为主的话,关联课程表和学员表进行关联查询。具体的sql语句要看你的数据表示如何建立的

热心网友 时间:2022-03-25 00:50

得给出表结构才行

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com