首页 > 代码库 > sql语句with as 和with(nolock)
sql语句with as 和with(nolock)
当with和as一起用时,表示定义一个SQL字句
例:
with
sonword as
(
select * from person
)
select * from student
where name in (select name from sonword)
相当于
select * from student
where name in (select name from person)
with(nolock)
一般用于select语句中,可以读取被事务锁定的数据
能提升sql的查询性能,解决阻塞死锁,但有可能造成脏读等数据问题
sql语句with as 和with(nolock)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。