combine data from two tables

SantoR

Registered User.
Local time
Tomorrow, 03:54
Joined
Apr 20, 2015
Messages
38
i have 2 tables one having primary key and other having secondary key
TblA
pkey
info1
info2

TblB
pKey_Rk
info3
info4

i want a resultset having all the records present in tblA plus records in TblB (if present)

pkey----info1----info2----info3----info4
value---value---value---value---value
value---value---value---notpresent--notpresent
.
 
Last edited:
do a left join on tableA to tableB. In the query builder, create the join, then right click on the join line and select join properties. Then select option 2
 
thanks for the quick reply...CJ
 

Users who are viewing this thread

Back
Top Bottom