|
For example, there is a table
create table Province
(
ProID int primary key,
ProName varchar (20) not null
)
The inserted data is: (1, Guangzhou)
So how to modify the primary key value with SQL statement so that it becomes (2, Guangzhou)
Waiting online ... |
|