位置: 编程技术 - 正文
对于数据库来说多多少少要掌握一点,首先基本的SQL语句要了解。下面来总结一些入门级别的SQL语句。
create相关
show database; 显示出现有的数据库use database_x; 现在要使用数据库database_xcreate table coffee (id int(5) not null,coffee_name varchar()); 创建一张表,包含id和coffee_name两个字段alter table coffee add taste varchar(); 增加新的一列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"; 查询出id=1的所有信息select coffee_name from coffee where id="2"; 查询出id=2的coffee nameselect * from club where id between "1" and "3"; 查询出id=1到3的条目select * from club where id="1" or id="3"; 查询出id=1和id=3这两个条目select club_name from club where mark>; 查询出mark大于的clubselect club_name from club where mark not between and ; 查询mark不在与之间的clubselect * 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>; 多重查询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"; id=1的俱乐部积分罚8分delete语句
delete from club where id=""; 删除id=的俱乐部信息以上语句都是SQL语句增删改查最基本的部分,属于入门级别,一定要掌握。
推荐整理分享sql server 入门语句总结(sql server使用教程),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:sql server操作教程,sql server?,sql server入门教程,sql server操作教程,sql server实用教程,sql server入门新手教程,sql server入门教程,sql server入门教程,内容如对您有帮助,希望把文章链接给更多的朋友!
一条select语句引起的瓶颈问题思考 情境还原:公司一项目新上线,刚上线的第2天,在后台发现数据库服务器与IIS服务器的网络IO出现瓶颈,1GB的网络带宽,占用了%-%,也就是每秒传输
简化SQL Server备份与还原到云工作原理及操作方法 除了硬盘和磁带,现在您可以使用SQLServer的本机备份功能来备份您的SQLServerDatabase到WindowsAzureBlob存储服务。在此版本中,您可以使用T-SQL和SMO备份到Window
SQL Server遍历表中记录的2种方法(使用表变量和游标) SQLServer遍历表一般都要用到游标,SQLServer中可以很容易的用游标实现循环,实现SQLServer遍历表中记录。本文将介绍利用使用表变量和游标实现数据库中
标签: sql server使用教程
本文链接地址:https://www.jiuchutong.com/biancheng/347792.html 转载请保留说明!上一篇:Sql Server中一个表2个字段关联同一个表(代码解决)(sql server中一个数据库可以有多个文件组)
下一篇:一条select语句引起的瓶颈问题思考(select语句中的select*说明)
友情链接: 武汉网站建设