Meteorite Landings
This comprehensive data set from The Meteoritical Society contains information on all of the known meteorite landings. https://data.nasa.gov/dataset/meteorite-landings
Getting Started
This dataset is ready for exploration using PostgreSQL 17. Switch to the "SQL Editor" tab to start writing queries.
Sample Queries
Try these example queries to get started:
Top 10 years with most meteorite landings with count
select year, count(*) as num_landings from meteorite_landings group by year order by num_landings desc limit 10;
SQL Output
Getting Started
1Switch to a SQL tab and select a database
2Write or paste your SQL in the editor
3Press Alt+Enter to run
Quick Templates
Tip:Select text in the editor to run only that portion