<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>TABLE on Kinetica Docs</title><link>/7.2/snippet-tags/table/</link><description>Recent content in TABLE on Kinetica Docs</description><generator>Hugo -- gohugo.io</generator><language>en</language><atom:link href="/7.2/snippet-tags/table/index.xml" rel="self" type="application/rss+xml"/><item><title>Creating Tables</title><link>/7.2/snippets/create-tables/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>/7.2/snippets/create-tables/</guid><description>Column Types Column Features Keys Indexes Collision Options (Table Exists) Distribution Properties Partitions Tier Strategy For the full table creation syntax, see CREATE TABLE.
Column Types For the full set of column types, see Column Types.
Numeric Text (Simple) Text (Complex) Date/Time Binary Geospatial Array Numeric 1 2 3 4 5 6 7 8 9 10 11 12 CREATE TABLE column_types_numeric ( b BOOLEAN, -- Native &amp;#34;boolean&amp;#34; type ti TINYINT, -- Native &amp;#34;int8&amp;#34; type si SMALLINT, -- Native &amp;#34;int16&amp;#34; type i INT, -- Native &amp;#34;integer&amp;#34; type bi BIGINT, -- Native &amp;#34;long&amp;#34; type ub UNSIGNED BIGINT, -- Native &amp;#34;ulong&amp;#34; type r REAL, -- Native &amp;#34;float&amp;#34; type d DOUBLE, -- Native &amp;#34;double&amp;#34; type dc DECIMAL(18, 4) -- Native &amp;#34;decimal&amp;#34; type ) Text (Simple) 1 2 3 4 5 6 7 CREATE TABLE column_types_text_simple ( c_min VARCHAR(1), -- Native &amp;#34;char1&amp;#34; type c_max VARCHAR(256), -- Native &amp;#34;char256&amp;#34; type s VARCHAR, -- Native &amp;#34;string&amp;#34; type sn VARCHAR(512) -- Native &amp;#34;string&amp;#34; type ) Text (Complex) 1 2 3 4 5 6 CREATE TABLE column_types_text_complex ( ip IPV4, -- Native &amp;#34;ipv4&amp;#34; column property on &amp;#34;string&amp;#34; type ui UUID, -- Native &amp;#34;uuid&amp;#34; type j JSON -- Native &amp;#34;json&amp;#34; type ) Date/Time 1 2 3 4 5 6 7 CREATE TABLE column_types_date_time ( td DATE, -- Native &amp;#34;date&amp;#34; type dt DATETIME, -- Native &amp;#34;datetime&amp;#34; type tt TIME, -- Native &amp;#34;time&amp;#34; type ts TIMESTAMP -- Native &amp;#34;timestamp&amp;#34; type ) Binary 1 2 3 4 CREATE TABLE column_types_binary ( b BLOB -- Native &amp;#34;bytes&amp;#34; type ) Geospatial 1 2 3 4 5 CREATE TABLE column_types_geospatial ( geo GEOMETRY, -- Native &amp;#34;wkt&amp;#34; subtype of &amp;#34;string&amp;#34; type bw BLOB(WKT) -- Native &amp;#34;wkt&amp;#34; subtype of &amp;#34;bytes&amp;#34; type ) Array 1 2 3 4 5 6 7 8 9 10 11 CREATE TABLE column_types_array ( ab BOOLEAN[3], -- Native &amp;#34;array(boolean, 3)&amp;#34; subtype of &amp;#34;string&amp;#34; type ai INT[3], -- Native &amp;#34;array(int, 3)&amp;#34; subtype of &amp;#34;string&amp;#34; type abi BIGINT[3], -- Native &amp;#34;array(long, 3)&amp;#34; subtype of &amp;#34;string&amp;#34; type aubi UNSIGNED BIGINT[3], -- Native &amp;#34;array(ulong, 3)&amp;#34; subtype of &amp;#34;string&amp;#34; type avec VECTOR(3), -- Native &amp;#34;vector(3)&amp;#34; type ar REAL[3], -- Native &amp;#34;array(float, 3)&amp;#34; subtype of &amp;#34;string&amp;#34; type ad DOUBLE[3], -- Native &amp;#34;array(double, 3)&amp;#34; subtype of &amp;#34;string&amp;#34; type avar VARCHAR[3] -- Native &amp;#34;array(string, 3)&amp;#34; subtype of &amp;#34;string&amp;#34; type ) Column Features Any column type can have the nullability modified or have a comment applied.</description></item></channel></rss>