mysql:4274
From: fuji <fuji <fujiyama@xxxxxxxxxx>>
Date: Mon, 03 Sep 2001 19:54:29 +0900
Subject: [mysql 04274] Re: 2テーブル間で不一致のデータを抽出したい!
こんにちは。 fujiyamaです。 > 私の書いたSQLでもうまくいってほしいですネ! > SELECT DISTINCT employee.emp_cd ,employee.last_name_j as name FROM employee, administrators > WHERE ( (employee.emp_cd <> administrators.emp_cd) ) > これて、Bugなんでしょうネ。 気になったんですが、これは標準的なSQLでは全てこう動くはずです。 なので、ACCESSで SELECT DISTINCT employee.emp_cd ,employee.last_name_j as name FROM employee INNER JOIN administrators ON ( (employee.emp_cd <> administrators.emp_cd) として ------------------ | emp_cd | last_name | ------------------ | 2 | 鈴木 一郎 | ------------------ となるとしたら、こちらの方がバグだと思うのですが、本当にこう動いたのでしょ うか? #JOIN関係は頭こんがらがりますね(><) --お世話になっています fuji <fujiyama@xxxxxxxxxx>
4270 2001-09-03 16:18 ["yasushi fujiwara" <] 2テーブル間で不一致のデータを抽出したい! 4271 2001-09-03 16:54 ┣[<endo_t@xxxxxxxxxx> ] 4272 2001-09-03 17:52 ┣[madara <madara@xxxxx] 4273 2001-09-03 19:39 ┃┗["yasushi fujiwara" <] -> 4274 2001-09-03 19:54 ┃ ┣[fuji <fujiyama@xxxxx] 4277 2001-09-03 21:49 ┃ ┗[<endo_t@xxxxxxxxxx> ] 4278 2001-09-03 23:02 ┃ ┗["yasushi fujiwara" <] 4289 2001-09-09 08:15 ┃ ┗[<moeru@xxxxxxxxxx> ] 4290 2001-09-10 13:08 ┃ ┣[fuji <fujiyama@xxxxx] 4292 2001-09-10 21:23 ┃ ┃┗[<moeru@xxxxxxxxxx> ] 4293 2001-09-10 22:07 ┃ ┃ ┣[<endo_t@xxxxxxxxxx> ] 4294 2001-09-10 22:19 ┃ ┃ ┣[とみたまさひろ <tomm] 4295 2001-09-10 22:41 ┃ ┃ ┗[fuji <fujiyama@xxxxx] 4298 2001-09-12 00:23 ┃ ┃ ┗[<moeru@xxxxxxxxxx> ] 4291 2001-09-10 13:31 ┃ ┗[madara <madara@xxxxx] 4275 2001-09-03 19:54 ┗[Tomohiro 'Tomo-p' KA]