Recent content by Lotos

  1. L

    How do I join these two tables? (SQL)

    SELECT DISTINCT t1.*, t2.* FROM t1 LEFT JOIN t2 ON(t1.A = t2.A AND t1.B = t2.B AND t1.C = t2.C) something like this maybe? I'm pretty bad at SQL theory. I usually tend to just write a query, run it, and tweak as needed.