Hi.
I have two tables in sql2005
then i execute the sql querry in vb.net form
result of this query is
my question : how to "convert" the id_item from table2 to item_name from table1, i order to show the result :
Is it possible to do this without relationship on the tables ?
thanks
I have two tables in sql2005
table1
id_item item_name
1 computer
2 pc
3 laptop
table2
EmployeeName id_item Telephone
Alex 1 03-123456
then i execute the sql querry in vb.net form
Strsql= "Select * from table2"
result of this query is
Alex 1 03-123456
my question : how to "convert" the id_item from table2 to item_name from table1, i order to show the result :
Alex computer 03-123456
Is it possible to do this without relationship on the tables ?
thanks