I have a table SL with some fields, the first of them are: CODNOU and CODADR. I have a query test with some fields, the first of them are COD_NOU and COD_ADR. I made the following query:
INSERT INTO SL ( CODNOU, CODADR )
SELECT COD_NOU, COD_ADR
FROM test;
which intends to insert the data from test qry into to the table SL. Unfortunatelly when I run the qry a message occures and invites me to input the parameter value for COD_NOU. If I avoid using the field COD_NOU in the wry, the qry works correctly. What`s wrong?
Thank you in advance!
INSERT INTO SL ( CODNOU, CODADR )
SELECT COD_NOU, COD_ADR
FROM test;
which intends to insert the data from test qry into to the table SL. Unfortunatelly when I run the qry a message occures and invites me to input the parameter value for COD_NOU. If I avoid using the field COD_NOU in the wry, the qry works correctly. What`s wrong?
Thank you in advance!
Last edited: