I'm working on a program in Go, that makes heavy usage of MySQL. For sake of readability, is it possible to include the value of a column after each column name in an INSERT statement? Like:
INSERT INTO `table` (`column1` = 'value1', `column2` = 'value2'...);
instead of
INSERT INTO `table` (`column`, `column2`,...) VALUES('value1', 'value2'...);
so that it's easier to see which value is associated with which column, considering the SQL strings can often get fairly long