时间:2021-05-02
对于数据库来说多多少少要掌握一点,首先基本的SQL语句要了解。下面来总结一些入门级别的SQL语句。
create相关
•show database; 显示出现有的数据库
•use database_x; 现在要使用数据库database_x
•create table coffee (id int(5) not null,coffee_name varchar(25)); 创建一张表,包含id和coffee_name两个字段
•alter table coffee add taste varchar(10); 增加新的一列
•insert into coffee (id,coffee_name,taste,rank) value ("1","BlueMountain",“well”,“5”); 插入数据
•show columns from coffee; 查看表结构
•show create table coffee; 查看表信息,包括建表语句
•alter table student rename ss; 改变表名
•alter table ss drop mark; 删除表ss中mark列
select语句
•select * from coffee where; 查询出id=1的所有信息
•select coffee_name from coffee where; 查询出id=2的coffee name
•select * from club where id between "1" and "3"; 查询出id=1到3的条目
•select * from club where or; 查询出id=1和id=3这两个条目
•select club_name from club where mark>50; 查询出mark大于50的club
•select club_name from club where mark not between 48 and 50; 查询mark不在48与50之间的club
•select * from club where id in("1","3","4"); 查询id=1,3,4的条目
•select * from club where id not in("1","3","4");
•select * from club where name like "M%r"; 通配符%表示任意长度的字符(可以是0,汉字为两个字符)
•select * from club where name like "M_r"; _表示单个字符
•select * from club where id in("1","3","4") and mark>50; 多重查询
•select * from club order by mark desc; 按照mark降序排列(desc:降序,usc:升序)
数量查询相关
•select count(*) from club; 查询club中有多少条记录
•select count(distinct mark) from club; 不同分数的有多少条记录
•select sum(mark) from club; 积分总和
•select avg(mark) from club; 平均积分
•select max(mark) from club; 最高积分
•select min(mark) from club; 最低积分
update语句
•update club set mark=mark-8 where; id=1的俱乐部积分罚8分
delete语句
•delete from club where; 删除id=001的俱乐部信息
以上语句都是SQL语句增删改查最基本的部分,属于入门级别,一定要掌握。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
asp执行带参数的sql语句,需要向sql语句添加参数,可以有效屏蔽SQL注入,源代码如下:复制代码代码如下:varconn=Server.CreateObje
下面这段是基本的分页代码:<%sql="select……………………省略了sql语句 Setrs=Server.Createobject("ADODB.RECO
本文实例讲述了Mysql数据库之常用sql语句。分享给大家供大家参考,具体如下:前面讲述了Mysqlsql基本语句。这里继续总结一下SQL语句的进阶内容。SQL
本文实例总结了常用SQL语句优化技巧。分享给大家供大家参考,具体如下:除了建立索引之外,保持良好的SQL语句编写习惯将会降低SQL性能问题发生。①通过变量的方式
查询语句的优化是SQL效率优化的一个方式,可以通过优化sql语句来尽量使用已有的索引,避免全表扫描,从而提高查询效率。最近在对项目中的一些sql进行优化,总结整