clickhouse sql语句

查看a表的创建语句

复制代码
SHOW CREATE TABLE a;

删除表b

复制代码
DROP TABLE b;

例如:

sql 复制代码
CREATE TABLE ark_us.d_stk_info_us_polygon_cik_5_w
(
    `ticker` String,
    `t_date` DateTime64(6),
    `name` Nullable(String),
    `market` Nullable(String),
    `type` Nullable(String),
    `cik` Nullable(String),
    `primary_exchange` Nullable(String),
    `is_alter` Nullable(String),
    `data_issue` Nullable(String),
    `alter_data` Nullable(String)
)
ENGINE = MergeTree
PARTITION BY toYYYYMM(t_date)
ORDER BY (ticker, t_date)
SETTINGS index_granularity = 8192

DROP TABLE ark_us.d_stk_info_us_polygon_cik_5_w

select语句,group by,

正则表达式:

sql 复制代码
SELECT *
                        FROM ark_us.d_stk_info_us_polygon_cik_1_w
                        WHERE (not arrayStringConcat(splitByChar('.', substring(ticker, 1))) != arrayStringConcat(splitByChar('.', replaceRegexpAll(ticker, '[a-z]', ''))))---小写字母
                            and(
                             NOT (ticker LIKE '%.%')-- ticker 不含有点
                            OR
                            -- ticker 含有点且点后只含有一个字符
                            (ticker LIKE '%._%' AND ticker NOT LIKE '%.__%'))
                            and (not ticker like '%.%.%')

对于v1表,选出两种类型,只有CS,只发生CS和NULL转变的两种cik-ticker,得到v2表

sql 复制代码
--插入数据表
insert into ark.d_stk_info_us_polygon_v2 select * from
(
	SELECT ticker, t_date, name, market, if(type IS NULL, 'CS', type)as type, cik, primary_exchange
	FROM (
	select concat(if(cik IS NULL, 'NULL', cik),
	        if(ticker IS NULL, 'NULL', ticker) ) as cik_ticker ,
	        cik,ticker,t_date,type,name,market,primary_exchange
	FROM ark.d_stk_info_us_polygon_v1
	where market = 'stocks'
	) as a_table
	RIGHT JOIN (
	    select *,concat(if(cik IS NULL, 'NULL', cik),
	        if(ticker IS NULL, 'NULL', ticker) ) as cik_ticker from (
	SELECT 
	    cik,
	    ticker,
	    groupArray(DISTINCT if(type IS NULL, 'NULL', type)) AS type_list,
	    arrayStringConcat(type_list) AS type_str
	FROM ark.d_stk_info_us_polygon_v1
	where market = 'stocks'
	GROUP BY cik,ticker
	HAVING length(type_list) >= 1
	) where   type_str in ('CS', 'CSNULL', 'NULLCS')
	) as b_table USING (cik_ticker)
)

distinct ,count(),group by having

sql 复制代码
nohup python3 data.py > output_1733.log &

相关推荐
hqxstudying23 分钟前
MyBatis 和 MyBatis-Plus对比
java·数据库·mysql·mybatis
DarkAthena37 分钟前
AI生成技术报告:GaussDB与openGauss的HTAP功能全面对比
数据库·gaussdb
DemonAvenger2 小时前
高效JOIN操作:多表关联查询技巧与实战经验分享
数据库·mysql·性能优化
小云数据库服务专线3 小时前
GaussDB 数据库架构师修炼(十八) SQL引擎-分布式计划
数据库·数据库架构·gaussdb
秋已杰爱4 小时前
Redis分布式锁
数据库·redis·分布式
烟锁池塘柳05 小时前
【R语言】R语言中 rbind() 与 merge() 的区别详解
sql·r语言
haogexiaole11 小时前
Redis优缺点
数据库·redis·缓存
在未来等你11 小时前
Redis面试精讲 Day 27:Redis 7.0/8.0新特性深度解析
数据库·redis·缓存·面试
新法国菜13 小时前
MySql知识梳理之DML语句
数据库·mysql
老华带你飞13 小时前
校园交友|基于SprinBoot+vue的校园交友网站(源码+数据库+文档)
java·数据库·vue.js·spring boot·论文·毕设·校园交友网站