hpkaiq 最近的时间轴更新
hpkaiq

hpkaiq

V2EX 第 393299 号会员,加入于 2019-03-19 02:36:22 +08:00
今日活跃度排名 16868
hpkaiq 最近回复了
98 天前
回复了 syh2 创建的主题 问与答 分享你们的电话卡套餐
广西钉钉卡 29 无限流量不限速不限量
232 天前
回复了 wxm 创建的主题 职场话题 昨日的一次 5 分钟面试
面试遇到刷 kpi 的没办法,谁让咱是诚心找工作的遇到想找半小时工具人的
KeePassXC +1
每分钟执行,维护一个计数的文件或者其他的,每分钟加 1 ,如果等于 7 之行实际需要的逻辑,然后重置计数等于 0
316 天前
回复了 ciyouwu 创建的主题 宽带症候群 如何合理的消耗手机流量?
西丁,开了附卡,家里 公司 cpe 各插一张,每月 1200g 左右
烽火 cpe 还不错,性价比高,华为价格高
361 天前
回复了 a3000xgyj 创建的主题 宽带症候群 今天你们公网 IP 被刷新了吗?
我是搞了个 ddns ,都用域名访问
2024-02-22 15:12:06 +08:00
回复了 izyao 创建的主题 问与答 兄弟们,个人档案在手上怎么办啊,有处理过的兄弟么
TaoBao 搜一下,我之前也是在手里,上面找人解决的
2024-01-31 18:39:06 +08:00
回复了 shuaishuaivip 创建的主题 程序员 Hive SQL 实现问题,请大佬看下~
with t2 as (
select *,
lead(`start`) over (partition by name order by `end_time`) as next_start from your_table
)
,t3 as (
select name,start_time,end_time
from t2 where `end` != next_start or next_start is null
)
,t4 as (select * ,lag(`end_time`) over (partition by name order by `end_time`) as pre_end_time
from t3)

select name,step_end_time,
min(`start`) `start`,max(`end`) `end`,
min(start_time) start_time,max(end_time) end_time
from
(
select t2.*,step_end_time from
(
select name,end_time step_end_time,if(pre_end_time is null,'1970-01-01 00:00:00',pre_end_time) step_start_time from t4
)step
join
t2 on step.name = t2.name and t2.end_time <= step_end_time and t2.start_time > step_start_time
)tmp
group by name,step_end_time
order by name,step_end_time

小试一把,不知道行不行
2024-01-29 15:12:10 +08:00
回复了 hanbin 创建的主题 分享发现 edge 把 baidu.com 的域名干掉了
我以为是我开了 clash 的原因呢,关了还是一样,哈哈,大家都一样呀
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1047 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 11ms · UTC 18:59 · PVG 02:59 · LAX 10:59 · JFK 13:59
Developed with CodeLauncher
♥ Do have faith in what you're doing.