I want to execute a simple sql delete statement eg: delete from mytable where id not in ('10000','20000')
I am trying to do the same type in jdbctemplate of spring which throws Sql grammar exception
The code in which I am trying to change is the old code which does not use SimpleJdbcTemple or NamedJdbcTemplate (I am not supposed to change because of backward compatibility issue :( )
So How to execute IN() SQL queries with Spring's JDBCTemplate effectivly? this does not help for me.
Kindly help me out to solve this.
Thanks in advance, Brinal