Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Category : SQL

SQL related questions

Question
All you have to do is to go through the code and comment the question for which the following is an answer of   SELECT player, teamid, mdate FROM game JOIN goal ON (id=matchid AND teamid='GER')
in progress 0
55 years 1 Answer 897 views Grand Master

Question
All you have to do is to go through the code and comment the question for which the following is an answer of SELECT team1, team2, player FROM game JOIN goal ON (id=matchid AND player LIKE 'Mario%')
in progress 0
55 years 1 Answer 685 views Grand Master

Question
All you have to do is to go through the code and comment the question for which the following is an answer of SELECT mdate, teamname FROM game JOIN eteam ON (team1=eteam.id AND coach LIKE '%Santos')
in progress 0
55 years 1 Answer 765 views Grand Master

Question
All you have to do is to go through the code and comment the question for which the following is an answer of SELECT player FROM goal JOIN game ON (id=matchid AND stadium = 'National Stadium, Warsaw')
in progress 0
55 years 1 Answer 876 views Grand Master

Question
All you have to do is to go through the code and comment the question for which the following is an answer of SELECT id, mdate, COUNT(player) FROM game JOIN goal ON (id=matchid AND (team1 = 'GER' OR team2 = 'GER') AND teamid='GER') GROUP ...
in progress 0
55 years 1 Answer 673 views Grand Master

Question
All you have to do is to go through the code and comment the question for which the following is an answer of SELECT mdate, team1, SUM(CASE WHEN teamid = team1 THEN 1 ELSE 0 END) AS score1, team2, SUM(CASE WHEN teamid = team2 THEN ...
in progress 0
55 years 1 Answer 595 views Grand Master

Question
All you have to do is to go through the code and comment the question for which the following is an answer of SELECT mdate, team1, SUM(CASE WHEN teamid = team1 THEN 1 ELSE 0 END) AS score1, team2, SUM(CASE WHEN teamid = team2 THEN ...
in progress 0
55 years 1 Answer 640 views Grand Master

Question
You have a table with the following 3 columns customer_id, order_id, order_date 123.                   987.            2/9/2020 123                    1234      ...
in progress 2
55 years 3 Answers 1413 views Grand Master