Microsoft
Software
Hardware
Network
Question : Check to see if a table has a certain value, MS Access 2003
Lets say you have the following tables (tables could be any size):
Table1 Table2
Name Value Name Value
A 1 A 3
B 2 C 3
C 3 D 2
E 3
Now I want to determine if any Names in Table1 do not exist in Table2; which obiviously is Name = "B" with a value = "2"
Answer : Check to see if a table has a certain value, MS Access 2003
use a query like this
select * from table1
left join table2 on table1.[name]=table2.[name
]
where table2.[name] is null
Random Solutions
Switch 3Com 4800G doesn't save configuration ?
How can I destroy all data on this old server?
Table Design
Put control inside of AJAX UpdatePanel, now get Type 'System.Web.UI.UpdatePanel
' does not have a public property named 'FileUpload'
Using wininet.dll with vba code within Excel 2003 macro on windows 2008 R2 server. FTP hangs
Frameless and Borderless Popup Window in Flash Actionscript 2
In Latex, how do I change the format of automatic equation numbering?
Unable to install Webmin
Failing over between Active/Active WAN connections on a Cisco Router
How to block mulitple ports within a range in mmc?