hi i am using SQL Server 2008, want to create a view to list the different between two tables.
for example
t1
id name
---- ------
1 John
2 peter
3 mary
4 joe
5 sun
t2
id name
--- ----
1 john
2 joe
how to create a view to list all the name in t1 but not in t2.
i tried to do that, and always get "Conversion failed when converting from a character string to uniqueidentifier." error
and also, i don`t want to use select something not in {something}, this is slow
so is there any way can use join??