i have a table one table message and other table is image . i want to fetch the data from image for the selected row from the message ( idea is that i want to display the images of sender that are stored in other table "IMAGE" and message are stored in other table "Message" Please help . this is not working
select msg.Uid, msg.Fid, msg.Message, img.ImagePath, img.Uid
FROM Message msg left OUTER JOIN Image img
ON
msg.Uid=img.Uid