题目内容
请完成本次上机实训,将答案代码直接写在下面文本框中并提交!请将3个表的创建代码拷贝到数据库查询分析器中执行,已有运行相关表代码,则忽略此步骤!!!实训步骤:打开数据库软件,点击左上角的“新建查询”,建表(运行建表的代码即可),写insert语句插入相关记录,运行查看结果。类别表:create table T_category(Category_id varchar(10) not null primary key,Category varchar(20),Register varchar(10))产品表:create table T_product(Product_id varchar(50) not null primary key,T_c_Category_id varchar(10) not null references T_category(Category_id),Product_name varchar(50),Price numeric(8,2),Remark varchar(500),Register_date datetime)产品评论表:create table T_product_review(Review_id varchar(10) not null primary key,T_p_Product_id varchar(50) not null references T_product(Product_id),Review varchar(500),Register_date datetime)
查看答案
搜索结果不匹配?点我反馈