About 9,890,000 results
Open links in new tab
  1. SQL JOIN where to place the WHERE condition? - Stack Overflow

    1. For INNER JOIN any condition can be in a WHERE instead of an ON as long as there is no intervening OUTER JOIN. 2. When moving a LEFT JOIN condition from an ON to a WHERE the …

  2. What is the difference between JOIN and INNER JOIN?

    The fact that when it says INNER JOIN, you can be sure of what it does and that it's supposed to be just that, whereas a plain JOIN will leave you, or someone else, wondering what the standard said about …

  3. SQL Server Left Join With 'Or' Operator - Stack Overflow

    Nov 1, 2013 · Instead of one join with OR it turned into three joins. With each condition in a seprate join and a final join to get that one matching row from either first or second join.

  4. What is a SQL JOIN, and what are the different types?

    Theta-join is analogous to a special case of inner join where the on is a theta comparison on of a column from each. Some decades after Codd defined them some textbook (s) misdefined theta join as a …

  5. SQL JOIN: what is the difference between WHERE clause and ON clause?

    If you are doing a LEFT JOIN, add any WHERE conditions to the ON clause for the table in the right side of the join. This is a must, because adding a WHERE clause that references the right side of the join …

  6. sql - Condition within JOIN or WHERE - Stack Overflow

    The question and solutions pertain specifically to INNER JOINs. If the join is a LEFT/RIGHT/FULL OUTER JOIN, then it is not a matter of preference or performance, but one of correct results. The …

  7. How can I do an UPDATE statement with JOIN in SQL Server?

    This was an example, but the point is as Eric said in How can I do an UPDATE statement with JOIN in SQL Server?. You need to add an UPDATE statement at first with the full address of all tables to join …

  8. powershell - How do I use Join-Path to combine more than two strings ...

    Since PowerShell 6.0, Join-Path has a new parameter called -AdditionalChildPath and can combine multiple parts of a path out-of-the-box. Either by providing the extra parameter or by just supplying a …

  9. oracle database - SQL "Join" on null values - Stack Overflow

    Do you really want to be able to join the tables if a value is null? Can't you just exclude the possible null values in the join predicate? I find it hard to grok that rows in two tables can be related by a null value.

  10. Difference between natural join and inner join - Stack Overflow

    Jan 2, 2012 · At one time, this was closed as a duplicate of What is the difference between left, right, outer and inner joins, but that question does not address the difference between inner joins and …