Advertisement
alexarcan

test_prep_sql

Dec 18th, 2016
354
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.38 KB | None | 0 0
  1. CREATE OR REPLACE PROCEDURE insert_gameplay_session(
  2. userID IN NUMBER,
  3. gameID IN NUMBER,
  4. len IN NUMBER,
  5. points IN NUMBER,
  6. starttime IN NUMBER)
  7. AS
  8. invalid_timestamp BOOLEAN := false;
  9. BEGIN
  10. -- verify points
  11. IF points < 0 THEN
  12. RAISE_APPLICATION_ERROR(-20000, 'Points value incorrect.');
  13. END IF;
  14. -- verify user existence (veriy if exists record in users table with that id)
  15. IF count_user_entries(userID) = 0 THEN
  16. RAISE_APPLICATION_ERROR(-20001, 'No user found with that id.');
  17. END IF;
  18. -- verify game existence
  19. IF count_game_entries(gameID) = 0 THEN
  20. RAISE_APPLICATION_ERROR(-20002, 'No game found with that id.');
  21. END IF;
  22. FOR gameplaysession IN
  23. (SELECT gs.START_TIME, gs.LENGTH
  24. FROM USER_GAMES ug,
  25. GAMEPLAY_SESSIONS gs
  26. WHERE ug.user_id =userID
  27. AND gs.USER_GAME_ID = ug.ID
  28. )
  29. LOOP
  30. -- verify time interval
  31. -- DBMS_OUTPUT.PUT_LINE(starttime);
  32. IF starttime >= gameplaysession.start_time
  33. THEN
  34. invalid_timestamp := true;
  35. END IF;
  36. END LOOP;
  37. END insert_gameplay_session;
  38.  
  39. SET serveroutput ON
  40. begin
  41. insert_gameplay_session(1,1,2,10,99);
  42. end;
  43.  
  44.  
  45. set define off;
  46. CREATE OR REPLACE FUNCTION count_user_entries
  47. (userid IN NUMBER)
  48. return number IS
  49. nb_entries NUMBER(20) := 0;
  50. BEGIN
  51. SELECT count(*) INTO nb_entries from users
  52. where user_id = userid;
  53. return nb_entries;
  54. END;
  55. /
  56. SET serveroutput ON
  57. begin
  58. DBMS_OUTPUT.PUT_LINE(count_user_entries(1));
  59. end;
  60.  
  61. set define off;
  62. CREATE OR REPLACE FUNCTION count_game_entries
  63. (gameId IN NUMBER)
  64. return number IS
  65. nb_entries NUMBER(20) := 0;
  66. BEGIN
  67. SELECT count(*) INTO nb_entries from games
  68. where game_id = gameId;
  69. return nb_entries;
  70. END;
  71. /
  72. SET serveroutput ON
  73. begin
  74. DBMS_OUTPUT.PUT_LINE(count_game_entries(1));
  75. end;
  76.  
  77. CREATE OR REPLACE FUNCTION compute_end_time
  78. (
  79. starttime IN NUMBER,
  80. len IN NUMBER
  81. )
  82. return NUMBER IS
  83. endtime NUMBER;
  84. BEGIN
  85. endtime := starttime + len;
  86. return endtime;
  87. end;
  88. /
  89. SET serveroutput ON
  90. begin
  91. DBMS_OUTPUT.PUT_LINE(compute_end_time(34,10));
  92. end;
  93.  
  94.  
  95. --d)
  96. CREATE VIEW most_played_games AS
  97. SELECT g.GAME_ID, COUNT(g.game_id) AS times
  98. FROM user_games g, gameplay_sessions gs
  99. WHERE g.GAME_ID = gs.USER_GAME_ID
  100. GROUP BY g.GAME_ID
  101. ORDER BY COUNT(g.game_id) DESC
  102. ;
  103. select game_id from MOST_PLAYED_GAMES WHERE rownum <=1 ;
  104.  
  105. CREATE OR REPLACE FUNCTION game_total_points(
  106. userid IN NUMBER,
  107. gameid IN NUMBER )
  108. RETURN NUMBER
  109. IS
  110. total_points NUMBER := 0;
  111. CURSOR c1
  112. IS
  113. SELECT points
  114. FROM gameplay_sessions
  115. WHERE user_game_id =
  116. (SELECT id FROM user_games WHERE user_id = userid AND game_id = gameid
  117. );
  118. BEGIN
  119. FOR session_points IN c1
  120. LOOP
  121. total_points := total_points + session_points.points;
  122. END LOOP;
  123. RETURN total_points;
  124. END;
  125. /
  126. SET serveroutput ON
  127. begin
  128. DBMS_OUTPUT.PUT_LINE(game_total_points(1,1));
  129. end;
  130.  
  131. CREATE OR REPLACE PROCEDURE most_played_top IS
  132. rc SYS_REFCURSOR;
  133. BEGIN
  134. open rc for
  135. SELECT USERS.USER_ID, USERS.USER_NAME, USER_GAMES.game_id AS GAME_ID,
  136. game_total_points(users.user_id, user_games.game_id) AS TOTAL_POINTS
  137. FROM USERS,
  138. USER_GAMES
  139. WHERE USERS.USER_ID = USER_GAMES.USER_ID
  140. AND USER_GAMES.GAME_ID =
  141. (SELECT game_id FROM MOST_PLAYED_GAMES WHERE rownum <=1
  142. ) ;
  143. END;
  144.  
  145. SET serveroutput ON
  146. begin
  147. most_played_top;
  148. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement