I have this SQL table:
Employee ( Id, Name, Address, Tel)
and I want to execute SQL queries without respecting the indicated order, something like this:
Insert Into Employee (Tel, name, Id, Address)
Values (555621, "Jihen", 10236, "21 Cranberry street")
Am I allowed to do this?
yes – so long as you specify the order explicitly (as you have shown) in both parts of the statement