SQL代码:
if not exists(select * from sys.databases where nameproductDB)
create Database productDB;
go
use productDB;
go
create table product
(
id int primary key IDentity(1,1),
PName nvarchar(20) Not null,
Price decimal(10,2)not null,
Stock int…