oracle sqldeveloper - Create a temp table from a select query -- dbVisualizer vs SQL Developer -


i've got query:

select < column names >  <#temp_table>  < table >  < stuff >  

it runs fine in dbvisualizer. however, running in oracle sql developer gives me error "the executequery method must return result set."

what happening here, , how can fix in sql developer?

edit: in response tanner, errors when try following things (tell me if try invalid. i'm new sql):

this:

    select * #temp_table status 

produces this:

    executequery method must return result set. 

this:

    select * #temp_table status;     select * #temp_table; 

produces this:

    invalid object name '#temp_table'. 

and this:

    select *     from(       select * #temp_table status) 

produces this:

    incorrect syntax near keyword 'into'. 

i'm lost, ladies , gentledudes.

if have query like:

select *  #temp  table_a 

that creating , inserting data temp table.

what need return temp table, after have run code need this:

select *  #temp 

Comments

Popular posts from this blog

How has firefox/gecko HTML+CSS rendering changed in version 38? -

javascript - Complex json ng-repeat -

jquery - Cloning of rows and columns from the old table into the new with colSpan and rowSpan -