I have a problem regarding on sql about inner join.
i have this database 2 tables: table1 has 3 attributes and table2 has 4 attributes.
now i want to copy the exact data inputted from table1 to table2. I have used inner join but it only binds the 2 attributes and leaves the rest.
here's what I've done:
sql = "Select * From T1 Inner Join T2r On T1.At1=T2.At1"
is it possible to bind the other attributes using that code?
example:
sql = "Select * From T1 Inner Join T2r On T1.At1=T2.At1 & T1.At2=T2.At2 & T1.At3=T3.At3"
T1=Table1
T2=Table2
At1=attribute1
At2=attribute2
At3=attribute3
can you please help me with this?
I would Really appreciate it to if you give me some link (tut) about it.

New Topic/Question
Reply




MultiQuote



|