Simple primary key

Data license: Apache License 2.0 · Data source: tests/fixtures.py · About: About Datasette

5 rows sorted by content descending

View and edit SQL

id content ▲
2 world
1 hello
4 {"column": "content", "table": "simple_primary_key", "database": "fixtures", "config": {"depth": "table", "special": "this-is-simple_primary_key"}}
5 RENDER_CELL_ASYNC_RESULT
3  

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE simple_primary_key (
  id varchar(30) primary key,
  content text
);