Skip to main content

String

String Data Types

In Databend, strings can be stored in the VARCHAR field, the storage size is variable.

NameAliasesStorage Size
VARCHARSTRINGvariable

Functions

See String Functions.

Example

CREATE TABLE string_table(text VARCHAR);
DESC string_table;

Result:

┌──────────────────────────────────────────────┐
│ Field │ Type │ Null │ Default │ Extra │
├────────┼─────────┼────────┼─────────┼────────┤
│ text │ VARCHAR │ YES │ NULL │ │
└──────────────────────────────────────────────┘
INSERT INTO string_table VALUES('databend');
SELECT * FROM string_table;

Result:

┌──────────────────┐
│ text │
├──────────────────┤
│ databend │
└──────────────────┘
Did this page help you?
Yes
No
Explore Databend Cloud for FREE
Low-cost
Fast Analytics
Easy Data Ingestion
Elastic Scaling
Try it today