上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 39 下一页
摘要: -- mysql 查看无主键的表 SELECT * FROM information_schema.`TABLES` t LEFT JOIN information_schema.STATISTICS s ON t.TABLE_SCHEMA = s.TABLE_SCHEMA AND t.table_ 阅读全文
posted @ 2023-03-10 12:47 chenzechao 阅读(62) 评论(0) 推荐(0)
摘要: ### 1. 列出trino中所有的表 trino --server IP:8080 --catalog hive --user batch_dev --schema=SCHEMA --execute="show tables" >table_list ### 2. 剔除不必要的表,并分出表和视图 阅读全文
posted @ 2023-02-16 08:54 chenzechao 阅读(149) 评论(0) 推荐(0)
摘要: 一、流程图的符号规范 二、流程图的结构规范 流程图有三大结构,分别是顺序结构、选择结构和循环结构。 1)顺序结构 这种结构最简单,各个步骤是按先后顺序执行的。如图,A、B、C是三个连续的步骤,它们是按顺序执行的,即完成上一个框中指定的操作才能再执行下一个动作。 2) 选择结构 选择结构又称分支结构, 阅读全文
posted @ 2023-01-18 14:41 chenzechao 阅读(762) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2022-12-06 15:46 chenzechao 阅读(1) 评论(0) 推荐(0)
摘要: # 输出双引号 awk -F "" '{print "\""$1"\"\,"}' "xxxxx", 使用""双引号把一个双引号括起来,然后用转义字符\对双引号进行转义,输出双引号。 # 输出单引号 awk -F "" '{print "'\''"$1"'\'\,'"}' 'xxxxx', # 使用一 阅读全文
posted @ 2022-12-05 15:16 chenzechao 阅读(364) 评论(0) 推荐(0)
摘要: 问题描述 使用docker-compose启动时,报错Cannot autolaunch D-Bus without X11 $DISPLAY ...Cannot autolaunch D-Bus without X11 $DISPLAY... 解决方法 问题出在Linux缺少一个密码管理包gnup 阅读全文
posted @ 2022-10-23 08:25 chenzechao 阅读(127) 评论(0) 推荐(0)
摘要: -- 第一个会话执行 drop table if exists test1; create table test1( id int not null ,name int ,primary key(id) ,unique key(name) ) engine=innodb ; begin; inser 阅读全文
posted @ 2022-10-17 17:53 chenzechao 阅读(949) 评论(0) 推荐(0)
摘要: http://t.zoukankan.com/yunfeifei-p-13158845.html 阅读全文
posted @ 2022-09-25 00:45 chenzechao 阅读(14) 评论(0) 推荐(0)
摘要: Dim mytime,myout1,myout2 mytime = 2 ' mytime = InputBox("请输入定时时间(格式20:10:05)" & vbLf & "如果想倒计时关机,请输入倒计时时间" & vbLf & "(单位/分钟)" & vbLf & "输入‘xxx'可以马上关机" 阅读全文
posted @ 2022-09-24 23:30 chenzechao 阅读(1149) 评论(0) 推荐(1)
摘要: https://www.cnblogs.com/hanzhe/p/16468683.html 阅读全文
posted @ 2022-09-22 10:46 chenzechao 阅读(39) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 39 下一页