Mysql syntax help

Posted by Karthick on Stack Overflow See other posts from Stack Overflow or by Karthick
Published on 2010-05-28T21:48:57Z Indexed on 2010/05/28 21:52 UTC
Read the original article Hit count: 206

Filed under:
|
|

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?

© Stack Overflow or respective owner

Related posts about sql

Related posts about mysql