pretentious
@pretentious
·
SQL Issue: INSERT without column_list
When reviewing application code, I often see INSERT queries that don't specify a column list. INSERT INTO Table1 VALUES ('Val1', 'Val2', 'Val3'); #### This syntax works great. However, it has an impl…