This is a discussion on Re: problem migratin from ms sql within the pgsql Novice forums, part of the PostgreSQL category; --> On Tue, Apr 19, 2005 at 05:35:05PM +0200, Bruno Depero wrote: > > create table #mytable( title_id char(6), total_money_made ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| On Tue, Apr 19, 2005 at 05:35:05PM +0200, Bruno Depero wrote: > > create table #mytable( title_id char(6), total_money_made money ) insert > into #mytable select title_id, total_money_made=sum( ytd_sales*price ) > from titles group by title_id select * from #mytable drop table #mytable > > Of course odbc driver for postgresql reports a syntax error due to the > table name ! See "Identifiers and Key Words" in the "SQL Syntax" chapter of the documentation, in particular the discussion of quoted identifiers. -- Michael Fuhr http://www.fuhr.org/~mfuhr/ ---------------------------(end of broadcast)--------------------------- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to majordomo@postgresql.org so that your message can get through to the mailing list cleanly |