Reset Database
|
Return to Main
Tables
state
name
text
capital
text
population
numeric
sq_mi
numeric
Query
Enter a SQL statement below and press Execute:
select * from state
Or try one of these SQL commands:
select * from state
select name, capital from state
select name, capital from state order by name
select name, population from state where population > 10000000
select * from state where name like 'M%'