ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 1473|回复: 9

[求助] 帮忙看下,我这里为什么实行不了,谢谢

[复制链接]

TA的精华主题

TA的得分主题

发表于 2009-12-24 16:56 | 显示全部楼层 |阅读模式
SELECT 工服.姓名   from  工服
intersect
SELECT 工鞋.姓名  from  工鞋;
为什么实行不了, 我是在access下的sql 里面的

TA的精华主题

TA的得分主题

发表于 2009-12-25 00:05 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
hangglide05-11-2005, 02:39 PM
Sorry if this has already been answered. I searched and couldn't find it.

How do I do an INTERSECT query in Access? It is my understanding that Access does not support the INTERSECT query. Is this right?

The syntax for an INTERSECT query is:

select field1, field2, … field_n
from tables
INTERSECT
select field1, field2, … field_n
from tables;


Example #1

The following is an example of an INTERSECT query:

select supplier_id
from suppliers
INTERSECT
select supplier_id
from orders;


The INTERSECT query allows you to return the results of 2 or more "select" queries. However, it only returns the rows selected by all queries. If a record exists in one query and not in the other, it will be omitted from the INTERSECT results.

Is there a simple way to do that in Access? The only work around I know is to run the two select queries seperate and then run a third to see what they have in common. There has to be a simpler method (I want to code the solution in VBA script for an application I am writing).

Leo

TA的精华主题

TA的得分主题

发表于 2009-12-25 00:06 | 显示全部楼层
Try this (off the top of my head, but I think it will work):

SELECT suppliers.supplier_id
FROM suppliers INNER JOIN orders ON suppliers.supplier_id = orders.supplier_id;

TA的精华主题

TA的得分主题

发表于 2009-12-25 00:09 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
在access里没有intersect,要用join
SELECT 工服.姓名 from  工服 left join 工鞋 on 工鞋.姓名=工服.姓名 where 工鞋.姓名 is null
不好意思,这个是subtract不是intersect,请看楼下

[ 本帖最后由 zhaozyuan 于 2009-12-25 09:52 编辑 ]

TA的精华主题

TA的得分主题

 楼主| 发表于 2009-12-25 09:16 | 显示全部楼层
谢谢 ,太感谢了 ,大哥 你的英语真好 ,佩服   我要学英语 。。。。。。。。。

TA的精华主题

TA的得分主题

 楼主| 发表于 2009-12-25 09:22 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
试了下,说不支持 join

可以了,用 join 后 返回的好像是表格1里面有而表格2里面没有的, 有没有办法返回两个表格共有的  ,谢谢

[ 本帖最后由 Thomas2800 于 2009-12-25 09:25 编辑 ]

TA的精华主题

TA的得分主题

发表于 2009-12-25 09:50 | 显示全部楼层
原帖由 Thomas2800 于 2009-12-25 09:22 发表
试了下,说不支持 join

可以了,用 join 后 返回的好像是表格1里面有而表格2里面没有的, 有没有办法返回两个表格共有的  ,谢谢

哈哈,我搞错了,不好意思阿
SELECT 工服.姓名 from  工服 inner join 工鞋 on 工鞋.姓名=工服.姓名

TA的精华主题

TA的得分主题

 楼主| 发表于 2009-12-25 10:46 | 显示全部楼层

TA的精华主题

TA的得分主题

 楼主| 发表于 2009-12-25 10:58 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
为什么显示出来有重复的姓名呢,谢谢

TA的精华主题

TA的得分主题

发表于 2009-12-25 13:25 | 显示全部楼层
可能你的源表有重复
你可以试下
SELECT distinct 工服.姓名 from  工服 inner join 工鞋 on 工鞋.姓名=工服.姓名
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2025-1-13 02:44 , Processed in 0.023070 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表