9 lines
278 B
Text
9 lines
278 B
Text
# All SQL syntaxes that result in storing a variable-length string.
|
|
|
|
statement ok
|
|
CREATE TABLE kanto.myschema.mytable (a VARCHAR);
|
|
|
|
query TT
|
|
SELECT column_name, data_type FROM myschema.information_schema.columns WHERE table_catalog='kanto' ORDER BY column_name;
|
|
----
|
|
a Utf8View
|