create database if not exists #{dataBaseName} create table if not exists #{dataBaseName}.#{superTableName} ${item.fieldName} timestamp tinyint smallint int bigint float double binary nchar bool json (#{item.size}) tags ${item.fieldName} timestamp tinyint smallint int bigint float double binary nchar bool json (#{item.size}) create table if not exists #{dataBaseName}.#{tableName} using #{dataBaseName}.#{superTableName} tags #{item.fieldValue} insert into #{dataBaseName}.#{tableName} #{item.fieldName} using #{dataBaseName}.#{superTableName} tags #{item.fieldValue} values #{item.fieldValue} ALTER STABLE #{superTableName} ADD COLUMN #{fieldsVo.fieldName} timestamp tinyint smallint int bigint float double binary nchar bool json ( #{fieldsVo.size} ) ALTER STABLE #{superTableName} DROP COLUMN #{fieldsVo.fieldName} ALTER STABLE #{superTableName} ADD TAG #{fieldsVo.fieldName} timestamp tinyint smallint int bigint float double binary nchar bool json ( #{fieldsVo.size} ) ALTER STABLE #{superTableName} DROP TAG #{fieldsVo.fieldName} ${sql}