use SalesCREATE table salesman
(no int null unique,
fname char(20) not null,
fname char(20) not null,
product_no char(10))create table product
(product_no char(10) not null unique,
product_name char(20) null,
price money null)create view product_info
as select product_no,product_name
from product运行后就提示题目中的错误了,请大家帮帮忙,谢谢~~