SQL Joins

I have a SQL join for two tables. I want to display the data in a datagrid and update both tables witht the changes. I first tried to do an update using a SQL JOIN DataSet, but that gave me an error, I then tried to create 2 different DataTables and adding a DataRelation.
Table1
-ID "PK"
-UserName
-UserSurname
-UserEmailAdress
-Some more fields--

relation TABLE1.ID --> TABLE2.UserID

Table2
ID "PK"
UserID
-Some more fields--


I am new to SQL Joins VS 2005 beta 2.Tongue Tied



Answer this question

SQL Joins