I would like to add some rows to an existing table in MS SQL server 2005 which has 3 columns:
ProviderCodeRef (PK, int, not null)
ManagerRef (int, not null)
UnitPriceRef (int, not null)
The current last row is as follows:
ProviderCodeRef ManagerRef UnitPriceRef
164000790 164000598 164000891
If I run the following the record will be added.
Insert into ProviderCodes (ProviderCodeRef,ManagerRef,UnitPriceRef) values ('164000791','164000110','164005000');
so the last 2 rows are now
ProviderCodeRef ManagerRef UnitPriceRef
164000790