[Fixed]-How to compare data in SQL

1👍

You can add multiple join conditions like this

SELECT *
FROM <table>

INNER JOIN <same table different name>
    ON (condition1 OR condition2 OR condition3)
👤Slayer

Leave a comment