sortable

4 rows where pk2 = "x" and text = "$blah" sorted by sortable_with_nulls_2

View and edit SQL

text

  • $blah · 4

pk2

Link pk1 pk2 content sortable sortable_with_nulls sortable_with_nulls_2 ▼ text
a x a-x 50 0.07099308600903254   $blah
d x d-x -71 0.5445623787105787   $blah
b x b-x 17   0.22292354720580898 $blah
f x f-x 59 0.6330767243010155 0.3809043988185208 $blah

Advanced export

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

CSV options:

CREATE TABLE sortable (
  pk1 varchar(30),
  pk2 varchar(30),
  content text,
  sortable integer,
  sortable_with_nulls real,
  sortable_with_nulls_2 real,
  text text,
  PRIMARY KEY (pk1, pk2)
);
Powered by Datasette · Query took 9.024ms