Return to Snippet

Revision: 34200
at October 19, 2010 07:45 by username


Initial Code
select camping_rec.user, 
       "CS123" camp,  -- comment
       " " v15       
 from camping_rec
  where camp = 'ACE' -- comment
  into temp b_0 with no log;

...
select * from b_0;

...
drop table b_0;

Initial URL


Initial Description


Initial Title
SQL stores result in Temp table

Initial Tags


Initial Language
SQL