i have two msaccess tables
tableA
textA numA
bd 1
as 0
aa 2
cc 4
tableB
textB
ss
aa
bd
as
how to write an sql query to add one column called numB in table B so that final table B would be
tableB ( basically fetching values from tableA )
textB numB
ss 0 ( because ss is not there in table A )
aa 2
bd 1
as 0