Re: [SQL] insert from a select

2010-11-25 Thread Trinath Somanchi
Is the query stated in the mail a working on. Can we give a query for a column name in the SELECT statement. " Select cl.pkid, cl.depart, cl.sessionid, cl.instrid, cl.classseq,*(select facility from esloc where esloc.pkid = cl.locationid) as facility*, cl.schedule from esclass cl where cl.pkid in

Re: [SQL] insert from a select

2010-11-25 Thread John Fabiani
On Thursday, November 25, 2010 04:32:57 am Carla wrote: > Sorry. I forgot some columns: > > insert into tempclass (pkid, depart, sessionid, instrid, *classeq, > facility, schedule*) > Select cl.pkid, cl.depart, cl.sessionid, cl.instrid, > cl.classseq,(select facility from esloc where esloc.pkid =

Re: [SQL] insert from a select

2010-11-25 Thread Carla
Sorry. I forgot some columns: insert into tempclass (pkid, depart, sessionid, instrid, *classeq, facility, schedule*) Select cl.pkid, cl.depart, cl.sessionid, cl.instrid, cl.classseq,(select facility from esloc where esloc.pkid = cl.locationid) as facility, cl.schedule from esclass cl where cl.pki

Re: [SQL] insert from a select

2010-11-25 Thread Carla
Try to explicit the column names. Something like: insert into tempclass (pkid, depart, sessionid, instrid) Select cl.pkid, cl.depart, cl.sessionid, cl.instrid, cl.classseq,(select facility from esloc where esloc.pkid = cl.locationid) as facility, cl.schedule from esclass cl where cl.pkid in (14507

Re: [SQL] insert from a select

2010-11-24 Thread Adrian Klaver
On Wednesday 24 November 2010 4:07:43 pm John Fabiani wrote: > Hi, > I have a strange issue that is mostly likely me not understanding > something. I always thought that an insert statement would accept any > select statement. I'm guessing I am wrong. > > I have created a temporary table ("tempcla

[SQL] insert from a select

2010-11-24 Thread John Fabiani
Hi, I have a strange issue that is mostly likely me not understanding something. I always thought that an insert statement would accept any select statement. I'm guessing I am wrong. I have created a temporary table ("tempclass") that is exact match to an existing table ('esclass'). When I