About 10,100,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 …

  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 …

  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 …

  5. 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. …

  6. 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 …

  7. 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 …

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

    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 …

  9. 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 …

  10. Select from multiple tables without a join? - Stack Overflow

    What is the easiest way to select data from two tables and rather than join them, have them appear as separate rows. Both tables have similar or matching fields and I want to run some …