Yahoo Poland Wyszukiwanie w Internecie

Search results

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

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

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

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

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

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

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

  1. Ludzie szukają również