|
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
求教老师,SQL语句怎样生成的
老师的语句是这样的的:
select 客户名称,五级分类,贷款类别,贷款金额,利息,'AA'as 分表 from [AA$]union
select 客户名称,五级分类,贷款类别,贷款金额,利息,'BB'as 分表 from [BB$]union
select 客户名称,五级分类,贷款类别,贷款金额,利息,'CC'as 分表 from [CC$]
我做的是这样的,虽然结果一样,但是想知道。老师是怎样生成SQL语句的。
SELECT * FROM `C:\Documents and Settings\Owner\桌面\表一\表一`.`aa$` `AA$`union all
SELECT * FROM `C:\Documents and Settings\Owner\桌面\表一\表一`.`bb$` `AA$`union all
SELECT * FROM `C:\Documents and Settings\Owner\桌面\表一\表一`.`cc$` `AA$` |
|