maverickmonster
Programmer
I have an query as follows
there is a field in the tbl_all_alpha_new_final called source_file which is the last field in the table, i wish to insert a string in to this like "10" to indicate where the information has come from, i have tried this
but the error comes up "No destination field name in INSERT INTO statement (10)
Code:
INSERT INTO tbl_all_Alpha_new_final
SELECT *
FROM 10
there is a field in the tbl_all_alpha_new_final called source_file which is the last field in the table, i wish to insert a string in to this like "10" to indicate where the information has come from, i have tried this
Code:
INSERT INTO tbl_all_Alpha_new_final
SELECT *, 10, 10
FROM 10
but the error comes up "No destination field name in INSERT INTO statement (10)