I want to join two tables ,while joining two tables in that column ,sample query is
from a in project_modules
join b in module_functions on a.project_module_id equals b.project_module_id
I want not equals operation inplace of equals
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Taking literally what you ask would be:
Note that it produces a cartesian product except the inner joined records. Well, maybe you need it for something.