compound_three_primary_keys

Data source: https://github.com/simonw/datasette-jellyfish

1 row where pk1 = "a", pk2 = "p" and pk3 = "c"

View and edit SQL

Link pk1 pk2 pk3 content
a p c a-p-c

Advanced export

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

CSV options:

CREATE TABLE compound_three_primary_keys (
  pk1 varchar(30),
  pk2 varchar(30),
  pk3 varchar(30),
  content text,
  PRIMARY KEY (pk1, pk2, pk3)
);
CREATE INDEX idx_compound_three_primary_keys_content ON compound_three_primary_keys(content);
Powered by Datasette · Query took 8.175ms · Data source: https://github.com/simonw/datasette-jellyfish