嗨所有你强大的sqlsuperheros在那里..
任何人都可以帮我救起即将来临的灾难吗?
任何人都可以帮我救起即将来临的灾难吗?
我正在使用Microsoft Access sql.我想在一个表(table1)中选择不在另一个表(table2)中出现的记录,然后根据table1中的记录将新记录插入到table2中,如下所示:
[表格1]
file_index:filename
[表2]
file_index:celeb_name
我要:
从table1中选择所有记录,其中[filename]类似于aud
并且其对应的[file_index]值不
存在于table2中,带有[celeb_name] =’Audrey Hepburn’
有了这个选择,我想在[table2]中插入一个新记录
[file_index] = [table1].[file_index]
[celeb_name] =’奥黛丽·赫本’
[table1]和[table2]中的[file_index]之间有一对多的关系
[table1]中的一个记录,[table2]中的许多记录.
非常感谢
解决方法
这会做吗显然添加一些方括号和东西.不是进入自己.
INSERT INTO table2 (file_index,celeb_name) SELECT file_index,'Audrey Hepburn' FROM table1 WHERE filename = 'aud' AND file_index NOT IN (SELECT DISTINCT file_index FROM table2 WHERE celeb_name = 'Audrey Hepburn')