i didn't knew that syntax was possible, yet another question has come into my mind that i forgot to ask.
is there a possibility to group the entries in the temp_table in just one entry in the definitive_table? or some way to identify that they correspond to the same order?
my temp_table looks like this
email = char(254)
cod = char(254)
qty = char(254)
type = char(254)
model = char(254)
price = char(254)
id = int(11) PRIMARY KEY
my definitive_table looks like this
email = char(254)
cod = char(254)
status = char(125)
address = char(125)
zip_code = char(254)
city = char(254)
date = char(254)
id = int(11) PRIMARY KEY
thanks in advance