摘要:
postgresql使用navicat软件导出[数据库](https://jiuaidu.com/jianzhan/tag/251/)表,在[导入](https://jiuaidu.com/jianzhan/tag/13337/)会数据库的[操作](https://jiuaidu.com/jianz 阅读全文
摘要:
# 感谢!!!原文:https://blog.csdn.net/weixin_43453621/article/details/125890774 ## **2. 链接上postgreSQL数据库** ![img](https://img2023.cnblogs.com/blog/2446184/2 阅读全文
摘要:
解释:Java读取excel中日期结果是计算1900-0-1之后到当前日期,一共有多少天,需要做一下转换处理 ```java /** * 用于计算1900-0-1之后的day天日期是哪天 * 举例:1900-0-1之后的44326天日期是2021/5/10 * @return */ public s 阅读全文
摘要:
1.今日 select * from "表名" where to_date("时间字段"::text,'yyyy-mm-dd')=current_date 2.昨日 select * from "表名" where to_date("时间字段"::text,'yyyy-mm-dd')=current 阅读全文
摘要:
1、命令lsof,以查找占用端口80为例,用法如下: ```shell [root@localhost nginx]# lsof -i:80 --命令 [root@localhost nginx]# --返回 ``` 什么都没有表示:没有进程占用80端口 ```shell [root@localho 阅读全文
摘要:
> ## 感谢!原文链接:https://blog.csdn.net/qq_42169450/article/details/122688940 ### 一、Linux 运行jar包的几种方式 - **方式一: java -jar xxx.jar** 最常用的启动jar包命令,特点:当前ssh窗口被 阅读全文
摘要:
### 第一种情况:日期转字符串 1、函数:date_format(date, format) ```java select date_format(now(),'%Y-%m-%d %H:%i:%S'); ``` ### 第二种情况:日期转时间戳 1、函数:unix_timestamp(data) 阅读全文
摘要:
本文的日期/时间全部格式化为”2016-01-01 01:01:01“形式; MONITOR_TIME为数据库表字段; # 字符串与日期/时间相互转换函数 ## Oracle **日期/时间转字符串函数**:to_char(t.MONITOR_TIME, ‘yyyy-mm-dd hh24:mi:ss 阅读全文
摘要:
**MySQL**怎么将字符串转为**datetime**类型?两种转换方法:1、使用str_to_date()函数,可以格式化字符串,根据指定格式将其转为日期时间值,语法“str_to_date(字符串值, 转换格式)”。2、使用CAST()函数,可以将指定字符串值转换为datetime数据类型, 阅读全文
摘要:
### java日期和毫秒值的相互转化 - - [1.日期转毫秒](https://blog.csdn.net/weixin_42908843/article/details/86704268#1_2) - [2.毫秒转日期](https://blog.csdn.net/weixin_4290884 阅读全文