发布网友 发布时间:2022-04-22 06:21
共4个回答
热心网友 时间:2022-04-07 21:28
以两表为例:
有以下两张表:
现在要通过deptno字段,在查询中显示emp表中全部内容和dept表中的dname字段。
可用如下语句:
select a.*,b.dname from emp a,dept b where a.deptno=b.deptno;
查询结果:
热心网友 时间:2022-04-07 22:46
select a.user_name ,b.math_scores + c.chinese_scores热心网友 时间:2022-04-08 00:21
select uname "姓名",(math_scoreschinese_scores) "总成绩"热心网友 时间:2022-04-08 02:12
是每个人的总成绩还是所有人的总成绩。。。描述清楚追问每个人的总成绩