这个SQL应该怎么写啊!(50分)

  • 主题发起人 主题发起人 maipu
  • 开始时间 开始时间
M

maipu

Unregistered / Unconfirmed
GUEST, unregistred user!
INSERT INTO "temp.db"(卡号, 消费日期, 存入金额, 消费金额)
SELECT 卡号, 消费日期, 存入金额, 消费金额
FROM "posqd.DB" as D
WHERE
(select 卡号, 消费日期, 存入金额, 消费金额 from "pospz.db"
where 卡号=D.卡号 AND 消费日期=D.消费日期
AND 消费金额= D.消费金额 AND 存入金额= D.存入金额)
 
INSERT INTO "temp.db"(卡号, 消费日期, 存入金额, 消费金额)
SELECT D.卡号, D.消费日期, D.存入金额, D.消费金额
FROM "posqd.DB" as D, "pospz.db" E
where E.卡号=D.卡号 AND E.消费日期=D.消费日期
AND E.消费金额= D.消费金额 AND E.存入金额= D.存入金额

 
INSERT INTO "temp.db"(卡号, 消费日期, 存入金额, 消费金额)
SELECT 卡号, 消费日期, 存入金额, 消费金额
FROM "posqd.DB" as D
WHERE
exists (select 卡号, 消费日期, 存入金额, 消费金额 from "pospz.db"
where 卡号=D.卡号 AND 消费日期=D.消费日期
AND 消费金额= D.消费金额 AND 存入金额= D.存入金额)

 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
I
回复
0
查看
972
import
I
后退
顶部