I partially got this idea from my friend ...
I partially got this idea from my friend
Mundi King. It bothered me that the insert and update sql functions are so different in structure ('insert into [table] (key1, key2) values (value1, value2)' as opposed to 'update [table] set key1=value1, key2=value2'), so that if you wanted to convert your existing insert function to an update function or vice-versa, you have to do a lot of rewriting (instead of say, replacing the word 'insert' with the word 'update'). Well, this takes care of that.