|
|
|
|
|
by homami
2244 days ago
|
|
I find SQL INSERT statement not intuitive. I can understand why SQL requires me to declare the field names and then the values of a new row that I am inserting; but it would've been a huge time saver if SQL had a key-value dictionary-like syntax: INSERT INTO "my_table"
"col1": value1,
"col2": value2,
...
|
|