Query:
select t1.col1
from table1 t1
inner join with (nolock) table2 t2 on t1.col2 = t2.col1
Am trying to use nolock option for optimized query in mySQL db, but for some reason the above query does not work and the error i receive is
You have an error in your SQL syntax;
Any thoughts?