您所在的位置:
首页 > 用SQL语句生成带有小计合计的数据集脚本 > 信息评论 >
用SQL语句生成带有小计合计的数据集脚本
使用SQL语句生成带有小计合计的数据集: 测试用户: scott 测试用表: dept,emp ////////////////////////////////// //检索出需要进行统计的数据集 select dept.dname,emp.job,sal from emp,dept where emp.deptno=dept.deptno; //////////////////////////////////
网友评论