当前位置: 首页 > article >正文

Clickhouse使用基础

# 查看操作系统版本
cat /etc/os-release

# clickhouse版本
clickhouse -V

# 登录clickhouse客户端
clickhouse-client -u xxx --password xxx -m 
# -m 或 --multiline:进入客户端后,运行输入多行sql语句

建表

# 创建数据库
CREATE DATABASE IF NOT EXISTS test;  --使用默认库引擎创建库
# 创建本地表
create table IF NOT EXISTS test.user_table (
	uid String comment '用户ID',
	sex String comment '性别',
	age UInt16 comment '年龄',
	phone String comment '联系电话'
)
engine = MergeTree()
order by uid;
  • 数据类型需要大写开头:String、UInt16
  • 表引擎类型也必须大写MergeTree
  • 如果没有指定主键,默认使用 order by 指定的字段
# 创建分布式表
-- 在集群中创建实际存放数据的本地表
create table test.user_event on cluster data_cluster(
	uid String comment '用户id',
	event String comment '事件名称',
	c_time DateTime comment '点击时间',
	dt Date comment '日期'
)
engine = MergeTree()
partition by dt 
order by uid;

--创建分布式表
create table test.user_event_distributed (
	uid String comment '用户id',
	eventString comment '事件名称',
	c_time DateTime comment '点击时间',
	dt Date comment '日期'
)
engine = Distributed('data_cluster', 'test', 'user_event', rand());
  • 分布式表需要选择Distributed 表引擎:
    • 第1个参数:集群名称
    • 第2个参数:数据库名
    • 第3个参数:数据表名
    • 第4个参数:分片key,数据被到不同服务器依据的字段,相同的值会被分配到同一台服务器

如果在创建分布式表test.user_event_distributed 时没有指定on cluster data_cluster,那么创建是本地表,后续的查询只能在建表的那个节点服务器查询数据

表变更

# 删除特定分区
alter table test.user_event 
on cluster data_cluster 
drop partition '2024-11-30';

alter table test.user_event 
on cluster data_cluster 
delete where dt > '2024-11-15';

alter table test.user_event 
on cluster data_cluster 
delete where dt='2024-11-30';

# 删除满足特定条件数据
alter table test.user_event 
on cluster data_cluster 
delete where user_id='u00001';

自定义函数

/**
 * 创建自定义函数 x_split
 * 分割字符串并把类型转换为整数
 */
CREATE FUNCTION x_split (x String)
RETURNS Array(UInt32)
AS
(
    arrayMap(
        (y) -> toUInt32(y), 
        splitByString(',', x)
    )
);

http://www.kler.cn/a/456599.html

相关文章:

  • Spring Boot实现多数据源连接和切换
  • WPF的下拉复选框多选,数据来源数据库的表
  • stm32f103zet6 ds18b20
  • Java 同步锁性能的最佳实践:从理论到实践的完整指南
  • nginx中的proxy_set_header参数详解
  • 考研互学互助系统|Java|SSM|VUE| 前后端分离
  • 【可靠有效】springboot使用netty搭建TCP服务器
  • 【达梦数据库】达梦数据库windows安装
  • Mask R-CNN
  • WPF TextBox 输入限制 详解
  • OpenWrt 系统UCI详解(Lua、C语言调用uci接口实例)
  • Cocos Creator 3.8.5 正式发布,更小更快更多平台!
  • Windows Subsystem for Linux (WSL)
  • 【WebSocket】tomcat内部处理websocket的过程
  • LossMaskMatrix损失函数掩码矩阵
  • 大模型推理:vllm多机多卡分布式本地部署
  • 【jyy os 2024】绪论
  • 图文教程:使用PowerDesigner导出数据库表结构为Word/Html文档
  • 从0入门自主空中机器人-1【课程介绍】
  • UI页面布局分析(4)- 贵族 特权分页列表
  • 【面试经典】多数元素
  • c#泛型学习
  • 香橙派5Plus启动报错bug: spinlock bad magic on cpu#6, systemd-udevd/443
  • Anaconda+PyTorch(CPU版)安装
  • STM32 I2C通信协议
  • 策略模式以及优化