摘要: Linux系统-部署-运维系列导航 -- 连表 SELECT t.* from test_table t inner join (select t1.`name`,max(t1.id) id from test_table t1 group by t1.`name`) t2 on t.id = t2 阅读全文
posted @ 2023-09-06 09:39 xiaoyaozhe 阅读(78) 评论(0) 推荐(0) 编辑
摘要: Linux-Windows系统-部署-运维系列导航 守护程序的指标 开机能启动 正常运行时不守护 手动关闭进程,守护启动 只有一个进程 本文以windows批处理程序(.bat)来演示守护程序,也可以使用其他方式,如Python、VB等脚本语言,当然也可以使用C/C++、C#、Java等高级语言编写 阅读全文
posted @ 2023-09-06 09:22 xiaoyaozhe 阅读(125) 评论(0) 推荐(0) 编辑