Yahoo Poland Wyszukiwanie w Internecie

Search results

  1. Oracle CASE expression allows you to add if-else logic to SQL statements without having to call a procedure. The CASE expression evaluates a list of conditions and returns one of the multiple possible results. You can use a CASE expression in any statement or clause that accepts a valid expression.

  2. 16 sie 2017 · Instrukcję IF THEN ELSE w Oracle możemy używać w PL/SQL m. in. w blokach anonimowych, procedurach, funkcjach, triggerach. Składnia PL/SQL If Then Else wygląda następująco: {...polecenie wykonywane, gdy warunek_1 jest spełniony - ma wartość TRUE...}

  3. 7 gru 2023 · A case expression returns a single value. In PL/SQL you can write a case statement to run one or more actions. The differences between case expressions and statements are: You complete them with end case (instead of just end) Each then/else clause contains a statement, rather than returning a value

  4. 6 maj 2015 · You should use a (left) outer join to solve such case. NVL / COALESCE will take care of replacing NULL by some hard coded value. Something like that: Please check if its worth for you. else 'NO PR_USER' end as primary_user_name.

  5. 17 lis 2014 · CASE działa na takiej zasadzie, że dla każdego wiersza zwracanego w wyniku zapytania sprawdza warunek logiczny i w zależności od wyniku wypisuje komunikat podany po słowie kluczowym THEN. Przykład użycia instrukcji CASE: Ogólny kod: Spodobało się?

  6. 23 paź 2024 · SELECT CASE WHEN RIGHT(studenci.pesel, 2) % 2 = 0 THEN 'Kobieta' WHEN RIGHT(studenci.pesel, 2) % 2 = 1 THEN 'Mężczyzna' END AS `plec`, COUNT(*) AS liczba_osob FROM studenci GROUP BY `plec`; Dla porównania oto kod, który zrobi to samo, ale bez użycia instrukcji CASE .

  7. The simple CASE statement evaluates a single expression and compares it to several potential values. The searched CASE statement evaluates multiple Boolean expressions and chooses the first one whose value is TRUE.

  1. Ludzie szukają również