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.

Login

Register Now

It will take less than 1 minute to register for lifetime. Bonus Tip - We don't send OTP to your email id Make Sure to use your own email id for free books and giveaways

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 780 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 603 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 678 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 786 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 582 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 545 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 596 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 1307 views Grand Master