Hi,
I am not sure on the syntax of using table alias with NoLock condition. The query I tried is as follows:
I even tried this:
I keep getting a syntax error. Could someone help in getting the right syntax?
I am not sure on the syntax of using table alias with NoLock condition. The query I tried is as follows:
Code:
Select U.Login, EMAIL
From MetaQuotes_VelocityDemo.mt4_users NoLock AS U LEFT JOIN MetaQuotes_VelocityDemo.mt4_Trades NoLock AS T ON (U.Login = T.Login)
Code:
Select U.Login, EMAIL
From MetaQuotes_VelocityDemo.mt4_users AS U NOLOCK LEFT JOIN MetaQuotes_VelocityDemo.mt4_Trades AS T NOLOCK ON (U.Login = T.Login)