Hi,
I'm trying to copy from from one table in my database and then insert those rows with a value changed.
my table looks like this
so i want to select all rows where DbID = 556
then with those selected rows modify DbID to say 557
and insert them into the table, and no i don't want to update those rows.
so my end result would look like this:
You help would be appreciated
Thanks
Roman
I'm trying to copy from from one table in my database and then insert those rows with a value changed.
my table looks like this
Code:
DbID (float) | ClientID(float) 556 342 556 612 446 745 142 112 142 612 142 147 142 369 223 369
then with those selected rows modify DbID to say 557
and insert them into the table, and no i don't want to update those rows.
so my end result would look like this:
Code:
DbID (float) | ClientID(float) 556 342 556 612 557 342 // new row 557 612 // new row 446 745 142 112 142 612 142 147 142 369 223 369
Thanks
Roman
Comment