Search results
Imposes conditions on the execution of a Transact-SQL statement. The Transact-SQL statement that follows an IF keyword and its condition is executed if the condition is satisfied: the Boolean expression returns TRUE.
15 wrz 2008 · The CASE statement is the closest to IF in SQL and is supported on all versions of SQL Server. SELECT CAST( CASE WHEN Obsolete = 'N' or InStock = 'Y' THEN 1 ELSE 0 END AS bit) as Saleable, * FROM Product
The IF () function returns a value if a condition is TRUE, or another value if a condition is FALSE. Syntax. IF (condition, value_if_true, value_if_false) Parameter Values. Technical Details. More Examples. Example. Return 5 if the condition is TRUE, or 10 if the condition is FALSE: SELECT IF(500<1000, 5, 10); Try it Yourself » Example.
Learn how to use the IF...ELSE statement to control the flow of code execution in SQL Server. See syntax, examples, and nested IF...ELSE statements.
30 lis 2019 · Poniżej prosty przykład z wykorzystanie instrukcji IF w Transact-SQL. Tworzymy zmienną liczbową i przypisujemy do niej losową liczbę od 1 do 100 za pomocą funkcji ROUND i RAND. Następnie dla tej właśnie liczby wyświetlamy komunikat za pomocą polecenia PRINT informujący nas, czy liczba znajduje się w zakresie od 0 do 50, czy od 51 do 100.
20 maj 2019 · Learn how to use SQL IF statement to execute real-time programming logic based on conditions in SQL Server. See syntax, examples, and tips for using BEGIN and END blocks, multiple IF statements, and ELSE condition.
12 wrz 2022 · Learn how to use the IF statement in T-SQL to execute code only if certain conditions are met. See examples of single and multiple statement IF, IF with BEGIN and END, and IF with ELSE IF and ELSE.