Data Types

Data types recognized by DuckDB and how they appear in ExploreMyData.

TypeExamplesExplorer Card
VARCHAR (text)"hello", "2024-01-01", "true"Value counts with bar chart
INTEGER / BIGINT42, -7, 1000000Histogram
DOUBLE (decimal)3.14, -0.5, 99.99Histogram
BOOLEANtrue, falseValue counts
DATE2024-01-15Time-series chart
TIMESTAMP2024-01-15 10:30:00Time-series chart

Type Detection

DuckDB automatically detects column types when loading your file. It samples the data and chooses the most specific type that fits all values.

Type Conversion

Use the Convert Type operation to change column types. DuckDB uses TRY_CAST which returns null instead of erroring on invalid values.