数据库系统基础教程第三版 部分实验命令

本文为机械工业出版社 出版的《数据库系统基本教程(第三版)》一些课后习题的数据库操做命令。sql #建立产品数据库 create database products; #使用产品数据库 use products; #建立产品表 create table Product( maker char(5), model int(10), type char(10) ); #建立PC表 creat
相关文章
相关标签/搜索