mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-25 12:04:21 +01:00
DuckDB is pretty, I want to be pretty! ``` limbo> CREATE TABLE t(x); INSERT INTO t VALUES (1), (2), (3); limbo> .mode pretty limbo> SELECT * FROM t; ┌───┐ │ x │ ├───┤ │ 1 │ ├───┤ │ 2 │ ├───┤ │ 3 │ └───┘ ```