Cosmiccradle
Technical User
Is there anyone that can help with the following: using the "insert into" query only gives me one field at a time.
INSERT INTO Kleinebibliotheken ( Filiaal, Code, Titel, Siso, Prijs, Jgd, Vlw, Opmerking, Basislijstnr )
SELECT 'Betondorp' AS Filiaal, 'w' AS Code, 'Try Again' AS Titel, '422.22' AS Siso, ' 45,00' AS Prijs, 'P' AS Jgd, ' ' AS Vlw, 'ipv Bobbo' AS Opmerking, '1 ' AS Basislijstnr;
What I need is that the SELECT expression can fill more then 9 fields at a time instead of one as in Betondorp, which is one of nine branch libraries.
Tanks for any help Cosmiccradle
INSERT INTO Kleinebibliotheken ( Filiaal, Code, Titel, Siso, Prijs, Jgd, Vlw, Opmerking, Basislijstnr )
SELECT 'Betondorp' AS Filiaal, 'w' AS Code, 'Try Again' AS Titel, '422.22' AS Siso, ' 45,00' AS Prijs, 'P' AS Jgd, ' ' AS Vlw, 'ipv Bobbo' AS Opmerking, '1 ' AS Basislijstnr;
What I need is that the SELECT expression can fill more then 9 fields at a time instead of one as in Betondorp, which is one of nine branch libraries.
Tanks for any help Cosmiccradle