I have couple of questions:
1) First basic question how can i execute multiple statements (Create temp table and Select from temp table) using same jdbc connection in spring jdbctemplate?
2) I am creating temp table using below sql statement. JDBCTemplate execute(String sql) method doesn't accept any parameters then how to run it using jdbc template
Select column1, column2, column3... into #t
from Table where column1 >= ? and column1 < ?