查看: 976|回复: 3
|
请教一段sql statement....
[复制链接]
|
|
property_table
PID code update_date
P101 ABC999 2006-07-14
P102 ABC998 2006-07-14
note_table
NID code username insert_date
N101 ABC999 Jack 2006-07-04
user_table
UID username name
U101 Jack Lee
U102 Cindy Loh
SELECT p.code, p.update_date, n.insert_date FROM
property_table p INNER JOIN note_table n ON n.code = p.code
WHERE p.insert_date > n.update_date
我要如何将上面的sql statement合并下面的sql statement?
SELECT user_table.name FROM user_table INNER JOIN note_table
ON user_table.username = note_table.username |
|
|
|
|
|
|
|
发表于 17-7-2006 01:41 PM
|
显示全部楼层
你要怎样的RESULT?还有你的问题很模糊-。-!! |
|
|
|
|
|
|
|
发表于 17-7-2006 08:49 PM
|
显示全部楼层
pid_table
PID code update_date
P101 ABC999 2006-07-14
P102 ABC998 2006-07-14
note_table
NID code username insert_date
N101 ABC999 Jack 2006-07-04
user_table
UID username name
U101 Jack Lee
U102 Cindy Loh
SELECT * FROM pid_table,note_table,user_table
WHERE pid_table.code = note_table.code and
note_table.username = user_table.username
你要的是不是这样 ? |
|
|
|
|
|
|
|
发表于 17-7-2006 09:05 PM
|
显示全部楼层
SELECT t.name,p.code, p.update_date, n.insert_date
FROM property_table p
INNER JOIN note_table n ON n.code = p.code
INNER JOIN user_table t ON t.username=n.username
WHERE p.insert_date > n.update_date
username 在 note_table 的 structure 该 换 成 UID 较 好 ..
SELECT t.name,p.code, p.update_date, n.insert_date
FROM property_table p
INNER JOIN note_table n ON n.code = p.code
INNER JOIN user_table t ON t.UID=n.UID
WHERE p.insert_date > n.update_date
soonyu |
|
|
|
|
|
|
| |
本周最热论坛帖子
|