sql server - Do table hints apply to all tables or only the preceding table? -


if have

select * tablea, tableb (nolock) 

does nolock hint apply tableb, or apply both tables? need do

select * tablea (nolock), tableb (nolock) 

for hint apply both tables?

table hints apply preceeding table. need

select * tablea (nolock), tableb (nolock) 

Comments

Popular posts from this blog

haskell - Using filter on an item in a list? -

tomcat6 - Exception when stopping container for a with Spring + Quartz + Tomcat web application -

c# - Binding attached property to IEnumerable -