易鲸捷数据库(EsgynDB)常用SQL
1.数据库连接
trafci.sh -h 主机ip -u 用户名 -p 密码 <<EOF
cqd attempt_esp_parallelism 'on';
set schema 库名;
--SQL
cqd attempt_esp_parallelism 'off';
exit;
EOF
2.表创建和截断
create table if not exists 库名.t1(
id varchar(32),
name varchar(32)
)
truncate table 库名.t
原创
2022-01-09 15:54:42 ·
932 阅读 ·
0 评论