I have two tables, message, and user. I want a query that retrieves all the rows from the massage table, irrespective of the value of the user_id
field NULL
.
message table:
id, msg_date, sms_text, contact_id, user_id
'1', '2019-04-09 ', 'Hello 1', '1', '1'
'2', '2019-04-10', 'Hello 2', '1', NULL
'3', '2019-04-11', 'Hello 3', '1', '1'
user table:
# user_id, fullname
'1', 'Manish Sijaria'
if i execute the below query. it does not return row 2
from message table.
SELECT id, message_date , msg_from, msg_to, sms_text, contact_id,
message.user_id, user.fullname
FROM message left join user on message.user_id=user.user_id
and message.contact_id=1;
Result of above query:-
id, message_date, sms_text, contact_id, user_id, fullname
'1', '2019-04-09', 'Hello 1', '1', '1', 'Manish Sijaria'
'3', '2019-04-11 ', 'Hello 3', '1', '1', 'Manish Sijaria'
Row 2
is missing as user_id
is NULL
.
But I want the rows with user_id=NULL
from message table as well.
I want the below result:-
id, message_date, sms_text, contact_id, user_id, fullname
'1', '2019-04-09', 'Hello 1', '1', '1', 'Manish Sijaria'
'2', '2019-04-10 ', 'Hello 2', '1', NULL, NULL
'3', '2019-04-11 ', 'Hello 3', '1', '1', 'Manish Sijaria'
Kindly Suggest the query in Mysql.