博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
T-SQL:SQL Server-数据库查询语句基本查询
阅读量:6327 次
发布时间:2019-06-22

本文共 1148 字,大约阅读时间需要 3 分钟。

ylbtech-SQL Server-Basic:SQL Server-数据库查询语句基本查询

 SQL Server 数据库查询语句基本查询。

1,数据库查询语句基本查询
 
数据库 SQL Server Oracle
基本语句    
select

select * from titles

select title_id,title,price,pub_id from titles

select * from title where title_id=9834

select * from title order by price

select * from authirs order by a_lname,a_fname

select type,count(title_id)as 每种类型数量 from title group by type

注意:where 在前 order by 其次 group by 最后

同左←
delete delete into title where title_id=9874 同左←
update update title set title=title1,price=price1 where title_id=9874 同左←
insert

insert titles(,,,,) values(,,,,)

insert titles(title,price) values('thanks to java',23.5)

同左←
建视图    
  create view view_name
as
sql语句
 
建存储过程    
  create procdure proc_name
as
sql语句
 
有参数(只有入参) create proc ups_shj
@pub_id varchar(20)
as
select * from titles where pub_id=@pub_id;
 
有参数(入参,出参output)

create proc ups_shj1

@title varchar(200),
@ytd_sales int output
as
select @ytd_sales=ytd_sales from titles where title=@title;

--执行存储过程,查找书籍'Sushi, Anyone?'

go
declare @sales int
exec ups_shj1 'Sushi, Anyone?',@ytd_sales=@sales output
select @sales

 
     
warn 作者:
出处:
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
你可能感兴趣的文章
高度决定视野眼界决定世界
查看>>
shell脚本路径写法的注意点
查看>>
Testng生成的测试报告乱码解决办法
查看>>
vim快速入门
查看>>
大杂烩 -- 单向链表是否存在环或是否相交
查看>>
关键字检索高亮标出-javasript/jQuery代码实现
查看>>
Vijos P1785 同学排序【模拟】
查看>>
人物关系网络图可视化
查看>>
关于ADO.Net SqlConnection的性能优化
查看>>
docker安装及加速配置
查看>>
MRF能量优化
查看>>
什么是.Net, IL, CLI, BCL, FCL, CTS, CLS, CLR, JIT
查看>>
Atlas Control ToolKit 发布
查看>>
Dundas 系列
查看>>
Windows的命令行查看,修改,删除,添加环境变量
查看>>
iOS 图文混排
查看>>
GC是什么? 为什么要有GC?
查看>>
JQuery EasyUi之界面设计——母版页以及Ajax的通用处理(三)
查看>>
童年记忆
查看>>
Selenium Python bindings 文档一
查看>>