sortable
3 rows where pk2 = "h" and text = "$blah"
This data as json, CSV (advanced)
Link | pk1 | pk2 | content | sortable | sortable_with_nulls | sortable_with_nulls_2 | text |
---|---|---|---|---|---|---|---|
d,h | d | h | d-h | -54 | 0.48754993239134437 | 0.8803199797582254 | $blah |
e,h | e | h | e-h | -69 | $blah | ||
f,h | f | h | f-h | 42 | 0.2644585783524238 | $blah |
Advanced export
JSON shape: default, array, newline-delimited, object
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) );