Advertisement
icebit

asdasd

Dec 21st, 2015
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. //create or replace function fn_losuj_wartosc(v_min integer, v_max integer)
  2.  
  3. //returns integer
  4. //begin
  5.  
  6.  
  7.  
  8. //declare v_rezultat integer;
  9.  
  10. //set v_rezultat = (select v_min+round(rand()*(v_max-v_min),0) );
  11.  
  12. //return v_rezultat;
  13. //end;
  14.  
  15. //select fn_losuj_wartosc(2,40000000) as "Losowana:";
  16.  
  17. ///////////////////////////////////////////////////////
  18. create or replace function fn_losuj_wartosc2()
  19.  
  20. returns varchar(50)
  21. begin
  22.  
  23.  
  24.  
  25.  
  26. declare v_nazwisko varchar(50);
  27. declare v_min numeric;
  28. declare v_max numeric;
  29. declare v_wylosowana numeric;
  30.  
  31.  
  32.  
  33.  
  34. set v_min = (select min(NrZawodnika) from zawodnicy);
  35. set v_max = (select max(NrZawodnika) from zawodnicy);
  36.  
  37. set v_wylosowana = fn_losuj_wartosc(v_min, v_max);
  38.  
  39. set v_nazwisko = (select nazwisko from zawodnicy where nrzawodnika = v_wylosowana);
  40.  
  41.  
  42. return v_nazwisko;
  43. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement