SQL server 查询语句

SQL server 查询语句,第1张

select * from test.dbo.users    -- 普通条件查询
where id=1;

模糊查询

	select * from test.dbo.users
	where username like '%li%';

范围查询

	select * from test.dbo.users	-- id在1~3之间的数据
	where id between 1 and 3;
	
	select * from test.dbo.users	-- id在1~3以外的数据
	where id not between 1 and 3;

子查询

	select * from test.dbo.users	-- id为1或2或3的数据
	where id in(1,2,3);
	
	select * from test.dbo.users	-- id不是1或2或3的数据
	where id not in(1,2,3);

排序

	select * from test.dbo.users	-- 从小到大排序
    order by id asc;
    
    select * from test.dbo.users	-- 从大到小排序
	order by id desc;

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/991219.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存