Question: he above sql commands will create a table, Countries, and populate six countries' data in it . Let's run queries using the table above. To

he above sql commands will create a table, Countries, and populate six countries' data in it. Let's run queries using the table above. To do it in the interactive sql compiler, you need to add the query command at the bottom of the above code at a time.
(A) Create a new line at the bottom in the compiler box (keeping the schema and data queries above). Click submit then examine the output in the bottom box. Discuss: What it does? Add a screenshot.
SELECT * FROM Countries;
(B) Replace the query (A) with the below in the compiler box (keeping the schema and data queries above). Click submit then examine the output in the bottom box. Discuss: What it does? Add a screenshot.
SELECT *
FROM Countries
WHERE (ContinentCode ='AS');
(C) Remove query from (B)(keeping the schema and data queries above). Write your own SQL code which searches the Continent, 'North America'. Add a screenshot.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!