用sql查询所有计算机系的教师编号和姓名 (1):5261答:select st.姓名,st.性别 from Student st,Sclass sc,Class c where st.学号4102=sc.学号 and sc.课程1653编号=c.课程编号 and c.课程名字=\"计算机系;select st.姓名,st.性别 from Student st,Sclass sc,Class c where st.学号=sc.学号 and sc.课程编号.(2):答:(1)update 教师 set 年龄=年龄+1(2)select*from 教师 where 所属院系='软件学院' order by 编号(3)insert into 教师(编号,姓名,性别,年龄,所属院系,职称)values('4331','李艳','女',28,'计算机学院','讲师')(4)delete from 教师 where.(3):答:1.在学生管理数据库EDUC中,完成下列查询操作。(1.④ 查询2013级学生所有任课教师的编号、姓名、职称.④ 查询计算机科学系(CS)和数学系(MA)的姓张的.(4):答:create table t_teacher_course(dno varchar2(4)primary key,dname varchar2(20)not null,ddimo varchar2(7))insert into t_teacher_couse values('0001','计算机','A002');insert into t_teacher_couse values('0002','英语','A003');(5):答:1.select*from 课程表 where 教师号 in(select 教师号 from 教师表 where 所在系=‘计算机’);2.select*from 课程表 where 课程号 in(select。
SQl 查询:输入教师名,显示该系教师姓名,年龄,系别,职称 考试T.T 考试T.T是什么意思啊?创建表create table teachertname varchar(20)not null,-教师名tage int not null,-年龄tspe varchar(10)not null,-系别tjob varchar(20)not null-工作职称查询select t.tname,t.age,t.spe,t.tjob from teacher t where t.tname='教师名条件'修改update teacher t set t.tjob='要改的职称' where t.name='教师名条件'delete from teacher where 你的条件insert into teacher values('教师名','年龄','系别','工作职称')这样行了吗?
sql语句查询教授职称的教师姓名和所在部门 你得给你表结构吧 最少得给出这些信息啊,就是个关联查询恩!select XX from table1 t1 left join table2 t2 on t1.*=t2.#;