| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> comp.databases.theory -> Re: building sets in SQL92
In full SQL-92 you could write:
(VALUES ('Boston'), ('Atlanta'), ('Columbia')) AS Cities(city)name)
The VALUES() statement is now generalized (orthogonalized?) to create tables and not just single rows. Most products donot have this yet, so you might have to use UNION ALL to put the rows into your working table. Received on Sat Jul 21 2001 - 18:31:26 CDT
![]() |
![]() |