根据给出的数据库表的结构和要求,写出相应的Sql语句

2025-02-26 12:35:45
推荐回答(1个)
回答1:

--1 什么数据库
select tc.cno,c.cname from teacher_cource tc ,teacher t, course c
where tc.tno = t.tno and tc.cno=c.cno and t.tname like ''刘%';