Thanks, but that is not what I meant really, it's in the very INSERT INTO string.
It is the CONTENT of the INSERT INTO() and VALUES() that I want to generate with the words from column my_column in the table comtypes.
Example. if it says like this in the table:
row 1: phone
row 2: fax
Then I want my string to be generated like this:
INSERT INTO (phone, fax) VALUES ('$phone','$fax');
Does anyone know how to do?
Thank you