9951 explained code solutions for 126 technologies


clickhouseHow to create temporary table


CREATE TEMPORARY TABLE tmp(id UInt64, name String)ctrl + c
CREATE TEMPORARY TABLE

will create temp table (which is going to be deleted on user logout)

tmp

name of the tmp table

id UInt64, name String

temp table column declaration