07 2022 档案

摘要:首先在MySQL自带表information_schema中可以找到我们所需要的数据 然后输入如下sql即可: select ic.table_schema '数据库名', ic.table_name '表名', ic.column_name '列名', ic.data_type '字段类型', c 阅读全文
posted @ 2022-07-25 10:24 迷糊桃 阅读(777) 评论(0) 推荐(0) 编辑
摘要:select t.* from (SELECT * from person where create_time<'2022-08-01 00:00:00' HAVING 1 order by create_time desc)c group by c .code; 阅读全文
posted @ 2022-07-21 15:45 迷糊桃 阅读(1131) 评论(0) 推荐(0) 编辑
摘要:public static void main(String[] args) { //1.生成一个Jedis对象,这个对象负责和指定的Redis节点进行通信 Jedis jedis = new Jedis("ip", 端口); jedis.auth("password"); //2.jedis执行s 阅读全文
posted @ 2022-07-12 19:47 迷糊桃 阅读(60) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示