I want to run a SQL query to copy a row from my table to either the same table or another table.
Whichever method I use, I end up with a message telling me something similar to "You can't run an INSERT INTO query if it contains a multi-value field" (translated from french) I tried using SELECT * INTO, but the result is the same.
My table is about reports, which can have a revision (hence the row copy), and they can have an attachment like for ex. a pdf file.
so, how do you / can you copy a row which has an attachment field ?
Thanks