I stole this from "scheme-pg". Use section 9 - "SQL Statment Creation" of the scheme-pg manual for instructions on how to use. a example to start you off: type: (select all (table1 table2))
I stole this from "scheme-pg". Use section 9 - "SQL Statment Creation" of the scheme-pg manual for instructions on how to use. a example to start you off: type: (select all (table1 table2))
you should get: "SELECT * FROM \"table1\",\"table2\" "
so use (select all (table1 table2)) instead of: "SELECT * FROM table1,table2" when programing.