Is there a way to make this work for a query...
INSERT INTO table_name (column1,column2,column3)
values(xxx,xxx,xxx)
WHERE field = 'x'
I already have a string of column names and corresponding values and I need them inserted into an existing record.
I know this is normally an UPDATE statement, but my code containing my column string and value string are already in several pages.
INSERT INTO table_name (column1,column2,column3)
values(xxx,xxx,xxx)
WHERE field = 'x'
I already have a string of column names and corresponding values and I need them inserted into an existing record.
I know this is normally an UPDATE statement, but my code containing my column string and value string are already in several pages.