mysql - Is there a join that returns a table where one row has been merged? -
i have table called phone
, has 1 column called names
, called number
. have second table called address
, has 1 column called family
, called address
. family
, names
have same values family
has repeats. join these table has family
, names
1 column , phone
, address
another. however, because of size mismatch (more addresses phone numbers) not sure if possible.
thanks!
is expecting?
table 1 name number bob 1234 tom 3456 table 2 family address bob md bob nj bob ny tom nc result name number address bob 1234 md/nj/ny
Comments
Post a Comment