sql server总结二
一些常用查詢
?Insert into 表(字段一,字段二,字段三,………) values(插入一,插入二,插入三,…………)
?Update 表 set 字段= where 字段=
?Delete from 表 where 字段=? (沒有where后面則是刪除表里所有數據)
4 一些不常用但偶爾也會用到的
①???Exists
表一為product
表二為Blogs表
查詢product表中與Blogs表中id相同的數據(exists)
select * from product where exists(select BlogId from Blogs where product.ID=Blogs.BlogId)
查詢product表中有Blogs表中沒有的數據(not exists)
??? select * from product where not exists(select BlogId from Blogs where product.ID=Blogs.BlogId)
②???內連接join on
?product表
Blogs表
內連接(join on)
?????? select * from product join Blogs on Blogs.BlogId=product.ID
③???完全外連接
④???左外連接
⑤???右外連接
?
轉載于:https://www.cnblogs.com/yangyufan/p/7281469.html
總結
以上是生活随笔為你收集整理的sql server总结二的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 《ASP.NET MVC企业实战》(一)
- 下一篇: swoole+redis(websock