sowamaciej

Untitled

May 20th, 2018
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1.  
  2. if(inserted(id_uczen, id_klasy))
  3. {
  4. if(klasaDostepna(id_klasy))
  5. INSERT;
  6. else
  7. {
  8. print("Klasa osiągnęła limit 25 osób");
  9. break;
  10. }
  11. }
  12.  
  13. klasaDostepna(id_klasy)
  14. {
  15. liczba_uczniow = SELECT COUNT(id_uczen) FROM Uczen
  16. WHERE Uczen.id_klasy = id_klasy;
  17.  
  18. if(liczba_uczniow <= 25)
  19. return 1;
  20. else
  21. return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment