Published
Edited
Dec 28, 2021
Fork of SQL + Chart
Insert cell
Insert cell
Insert cell
Insert cell
database
SELECT name FROM sqlite_schema
WHERE type = 'table'
AND name NOT LIKE 'sqlite_%'
ORDER BY 1;
Insert cell
Insert cell
database
SELECT * FROM population WHERE GEOGRAPHY_CODE IN ('E06000001','E06000002')
Insert cell
Insert cell
database
SELECT * FROM population,population_names WHERE GEOGRAPHY_CODE IN ('E06000001','E06000002')
Insert cell
database
SELECT * FROM population CROSS JOIN population_names WHERE GEOGRAPHY_CODE IN ('E06000001','E06000002')
Insert cell
Insert cell
Insert cell
database
SELECT CELL,SUM(OBS_VALUE) FROM population WHERE GEOGRAPHY_CODE IN ('E06000001','E06000002') GROUP BY CELL
Insert cell
b
Insert cell
Insert cell
database
SELECT economic.CELL,name,SUM(OBS_VALUE) FROM economic,economic_names WHERE GEOGRAPHY_CODE IN ('E06000001','E06000002') AND name = 'employee'
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more