B
Bob
How can I add multiple records using the union select statement only once?
For example:
Select car, type
From
Cars
Union select
"mycar1", "mytype1" <--- this should be the first record added
"mycar2", "mytype2" <--- this should be the second record added
From
Cars
Obviously the statement above does not work.... somehow I need to indicate
where the second record starts... I suppose there is a solution without
using the union statement for every record...
For example:
Select car, type
From
Cars
Union select
"mycar1", "mytype1" <--- this should be the first record added
"mycar2", "mytype2" <--- this should be the second record added
From
Cars
Obviously the statement above does not work.... somehow I need to indicate
where the second record starts... I suppose there is a solution without
using the union statement for every record...