RosettaCodeData/Task/Documentation/DuckDB/documentation-1.duckdb
2025-08-11 18:05:26 -07:00

4 lines
174 B
Text

CREATE TABLE t AS (SELECT unnest([]));
COMMENT ON TABLE t IS /* this is just an example */ 'foo bar'; -- ignore me
select comment from duckdb_tables where table_name = 't';