oracle数据库之多表联接查询(一)

--此文章能够做为sql脚本直接运行 /*   建表以及插入相关数据,为后面的查询作准备工做 */ --建学生信息表 create table studentinfo(   stuid  int  primary key,   sname  varchar(10) not null,   cid    int not null,   address varchar(20) ); --建班级表 cr
相关文章
相关标签/搜索