Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 400 Bytes

File metadata and controls

13 lines (9 loc) · 400 Bytes

Step 1: Connect to database and explore the dataset

Connect to the international_debt database that contains the table international_debt_statistics_summary.

Select all of the columns from the international_debt_statistics_summary table and limit the output to first ten rows.

select * from international_debt_statistics_summary
limit 10;

Step 1 Result