创建表 create table agg_source( \ id UInt8, \ name String, \ city String, \ money UInt32 \ ) engine=MergeTree() \ partition by city \ order by id; 插入数据 i ...
分类:
其他好文 时间:
2021-06-05 18:20:32
阅读次数:
0
存储字段 eg: <script type="text/javascript"> $('#option_btn').change(function () { project_id = $('#option_btn').val(); var project_ids = $('#option_btn') ...
分类:
其他好文 时间:
2021-06-05 18:11:43
阅读次数:
0
今天学习了MFC中拆分窗口,现将方法记录下. 想要在窗口视图中拆分成左右两个视图窗口,首先要注意的是拆分后要加载到左右的视图要符合动态创建的类, 也就是要在自己创建的视图类中添加动态创建机制宏. 类内声明宏: DECLARE_DYNCREATE(CSelectView) //CSelectView为 ...
分类:
编程语言 时间:
2021-06-05 17:47:03
阅读次数:
0
create database zuoye; -- 创建数据库 use zuoye; -- 使用数据库 #创建几个库表 create table Student -- 学生表 ( Sno char(3) NOT NULL Primary key , -- 学号 ,设为主键,不允许空值 Sname c ...
分类:
数据库 时间:
2021-06-05 17:46:33
阅读次数:
0
###yum安装依赖包 yum -y install libaio ###下载mysql_8.x版本rpm包 wget http://repo.mysql.com/mysql80-community-release-el7-1.noarch.rpm ###安装mysql_yum源 yum local ...
分类:
数据库 时间:
2021-06-04 19:54:22
阅读次数:
0
如何在Linux下删除文件名是乱码或者带有特殊字符的文件。 今天遇到一个问题,一个文件名是“ (-++=$^__.log”,直接用rm删除的时候就报错,有些文件是可以用rm删除的 开始想着带引号删,发现带引号删除也一样报illegal option的错 先ls -i 查到文件的inode,然后用fi ...
分类:
其他好文 时间:
2021-06-04 19:46:37
阅读次数:
0
dedecms在首页调用栏目(公司介绍)内容,一般通过代码: {dede:sql sql='Select content,substring(content,1,300) as content from dede_arctype where id=1'}[field:content function ...
分类:
其他好文 时间:
2021-06-04 19:42:24
阅读次数:
0
// html <div id="bg_img"> <div> <input type="text" /> </div> </div> // css #bg_img{ display: grid; place-items: center; } ...
分类:
其他好文 时间:
2021-06-04 19:14:30
阅读次数:
0
https://www.superbin.cc/software/1503.html yang0826!!!! env可以从脚本式流水线中访问的环境变量,例如: env.PATH 或 env.BUILD_ID。 访问内置的全局变量参考页面 ${YOUR_JENKINS_URL}/pipeline-s ...
分类:
其他好文 时间:
2021-06-04 19:13:45
阅读次数:
0
<input id="input" type="text" /> input { caret-color: red; } ...
分类:
其他好文 时间:
2021-06-04 19:13:12
阅读次数:
0