About 55,300 results
Open links in new tab
  1. sql - Using an IIF statement in a where clause - Stack Overflow

    Using an IIF statement in a where clause Asked 8 years ago Modified 8 years ago Viewed 31k times

  2. sql - How to use multiple conditions (With AND) in IIF expressions in ...

    How to use multiple conditions (With AND) in IIF expressions in ssrs Asked 11 years, 8 months ago Modified 2 years, 11 months ago Viewed 220k times

  3. SQL Server IIF vs CASE - Stack Overflow

    Apr 3, 2014 · 27 IIF is a non-standard T-SQL function. It was added to SQL SERVER 2012, so that Access could migrate to SQL Server without refactoring the IIF's to CASE before hand. Once the …

  4. Access Query SQL IIf Statement with OR - Stack Overflow

    In the first IIF statement, I cannot get the query to return any records. I want it to return all records with either "MOTOR" or "SHAFT" in the PUMP_CODE field when both referenced objects are > 0.

  5. conditional operator - ORACLE IIF Statement - Stack Overflow

    ORACLE IIF Statement Asked 12 years, 10 months ago Modified 5 years, 5 months ago Viewed 152k times

  6. How do I perform an IF...THEN in an SQL SELECT?

    Sep 15, 2008 · SELECT IIF(Obsolete = 'N' OR InStock = 'Y', 1, 0) AS Salable, * FROM Product This is effectively just a shorthand (albeit not standard SQL) way of writing CASE. I prefer the conciseness …

  7. sql - IIF (...) not a recognized built-in function - Stack Overflow

    Aug 20, 2012 · IIF is valid for SQL Server 2008 R2 and any version before that. was introduced in SQL Server 2012 (there is no link to previous versions on the documentation page I have linked to).

  8. Using IIF in SQL update statement - Stack Overflow

    Feb 15, 2013 · Using IIF in SQL update statement Asked 12 years, 9 months ago Modified 12 years, 9 months ago Viewed 32k times

  9. sql - SUM IIF expression result - Stack Overflow

    May 2, 2016 · in this select i need the sum result the IIF expression, but when i execute this query obtain only first IIF statement. Any suggestion?? Thanks SELECT conto, desconto, date, codoperaio, …

  10. sql - IIF statement with multiple conditions - Stack Overflow

    Aug 14, 2018 · 1 See whether you find Switch easier than nested IIf statements. Open a new query in the Access query designer, switch to SQL View, and paste in this statement ...