select concat('drop table ',table_name,';') from information_schema.tables where table_schema='employees' and table_name rlike '^d.*$' into outfile 'd ...
分类:
数据库 时间:
2021-05-24 08:59:21
阅读次数:
0
一、关于TableException的问题 [ERROR] Could not execute SQL statement. Reason:org.apache.flink.table.api.TableException: Sink `catalog_1`.`mydb`.`region_sales ...
分类:
其他好文 时间:
2021-05-24 08:49:39
阅读次数:
0
修改删除表 修改 -- 修改表名 alter table test rename as tttt -- 怎加表的字段 alter table tttt add age int(11) -- 修改表的字段(重命名,修改约束) alter table tttt modify age varchar(11 ...
分类:
其他好文 时间:
2021-05-24 08:42:42
阅读次数:
0
帆软报表 环境配置 选择服务器 定义数据连接 选择”+”号, 选择”JDBC” ,可以添加多个JDBC连接,名称可自定义 数据库,更加业务需求连接不同的数据库,例:Mysql、SqlServre、Oracle、Db2等 输入需要连接的库URL 输入用户名,密码 点击测试,提示连接成功,则环境配置成功 ...
分类:
其他好文 时间:
2021-05-24 08:38:04
阅读次数:
0
当自然数 n 依次取 1、2、3、……、N 时,算式 ?n/2?+?n/3?+?n/5? 有多少个不同的值?(注:?x? 为取整函数,表示不超过 x 的最大自然数,即 x 的整数部分。) 输入格式: 输入给出一个正整数 N(2≤N≤10?4??)。 输出格式: 在一行中输出题面中算式取到的不同值的个 ...
分类:
编程语言 时间:
2021-05-24 08:34:57
阅读次数:
0
merge into ZQ_A A using ZQ_B b on (a.name=b.name) when matched then update set a.age=b.age when not matched then insert (a.name,a.age) values(b.name,b ...
分类:
数据库 时间:
2021-05-24 08:28:00
阅读次数:
0
unpivot列转行函数 select 字段 from 数据集 unpivot(自定义列名/*列的值*/ for 自定义列名/*列名的别名,自己定义*/ in(列名)) 注意 後面的是列名 比如 DATEGP CLASS_NAME CLASS_CODE GROUP_ADMIN ISTYPE_CODE ...
分类:
数据库 时间:
2021-05-24 08:27:14
阅读次数:
0
外观数列是指具有以下特点的整数序列: d, d1, d111, d113, d11231, d112213111, ... 它从不等于 1 的数字 d 开始,序列的第 n+1 项是对第 n 项的描述。比如第 2 项表示第 1 项有 1 个 d,所以就是 d1;第 2 项是 1 个 d(对应 d1)和 ...
分类:
编程语言 时间:
2021-05-24 08:25:54
阅读次数:
0
目标 了解并能够应用某些方法来旋转物体。 API对Quaternion的(部分)说明 Quaternion Description 描述 Quaternions are used to represent rotations. 四元数用于表示旋转。 They are compact, don't s ...
分类:
编程语言 时间:
2021-05-24 08:25:35
阅读次数:
0
环境:Linux centos7.6 +Python 2.7.5+DM8 必须安装dmPython。 安装包可以在1139926252QQ群里的文件中下载,下载好后上传到linux服务器中。 一、安装dmPython Python 有现成的mysql,oracle 等数据库包,可以直接import ...
分类:
数据库 时间:
2021-05-24 08:02:14
阅读次数:
0