摘要:
--创建数据库
create database Studets
--创建表
create table student ( sno char(5), sname char(20), ssex char(2), sage smallint, sdept char(15) )
create table course ( cno char(3), cname char(30), cpno char(3), ccredit smallint )
create table sc ( sno char(5), cno char(3), grade int )
--查看表信息 阅读全文
posted @ 2013-05-12 21:35
伏草惟存
阅读(706)
评论(2)
推荐(1)
浙公网安备 33010602011771号