|
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用 · 内置多项VBA编程加强工具 ★ 免费下载 ★ ★ 使用手册★
本帖最后由 罗达 于 2012-8-21 15:05 编辑
有三个工作薄,A\B\C公司,每个工作薄有“收入表”“支出表”2个sheet,在E盘根目录,建一个汇总表,用OLE DB编辑查询,始终都提示语法不对?但我没看出哪错了,谁帮我看看!
一、select * from 'E:\A公司' . '收入表$' '收入表$' union all
select * from 'E:\A公司' . '支出表$' '支出表$' union all
select * from 'E:\B公司' . '收入表$' '收入表$' union all
select * from 'E:\B公司' . '支出表$' '支出表$' union all
select * from 'E:\C公司' . '收入表$' '收入表$' union all
select * from 'E:\C公司' . '支出表$' '支出表$'
二、我想分个类,这样写的:
select 'A公司' , * from 'E:\A公司' . '收入表$' '收入表$' union all
select 'A公司' , * from 'E:\A公司' . '支出表$' '支出表$' union all
select 'B公司' , * from 'E:\B公司' . '收入表$' '收入表$' union all
select 'B公司' , * from 'E:\B公司' . '支出表$' '支出表$' union all
select 'C公司' , * from 'E:\C公司' . '收入表$' '收入表$' union all
select 'C公司' , * from 'E:\C公司' . '支出表$' '支出表$' |
|