数据库
失眠丶丶丶
这个作者很懒,什么都没留下…
展开
-
【Postgresql 基础】查询日期时间偏移(昨天、本周、本月、上月、本年统计数据)
【Postgresql 基础】查询昨天、本周、本月、上月、本年统计数据1、获取当前系统时间select now();select current_timestamp;# now()/current_timestamp展示当前系统的时间,日期格式2、获取当前日期或时间select current_date;# 当前日期select current_time;# 当前时间3、查询偏移时间select (now() - interval '1 day') # 将查询时间结果偏移一天原创 2021-03-01 14:49:03 · 5545 阅读 · 0 评论 -
oracle ORA-00257 (清理无用的归档日志)(Windows操作系统)
ORA-00257表示oracle日志文件已满,需清理日志空间rman命令清理日志# rman target sys/pass检查一些无用的archivelogRMAN> crosscheck archivelog all;删除过期的归档RMAN> delete expired archivelog all;删除截止到前一天的所有archivelogdelete archivelog until time 'sysdate-1' ;使用 dba角色登陆sqlplus原创 2020-06-30 14:54:26 · 677 阅读 · 0 评论 -
修改mysql数据库字符集问题
– 修改数据库字符集alter database tkp_tn character set utf8 COLLATE utf8_general_ci;– 字段的字符集SELECT CONCAT('ALTER TABLE ', table_name, ' MODIFY ', column_name, ' ‘, DATA_TYPE, ‘(’, CHARACTER_MAXIMUM_LENGTH, ...原创 2020-04-30 14:41:55 · 209 阅读 · 0 评论 -
mysql5.7groupby问题
Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column ‘eral_tkp.eb_user.UserID’ which is not functionally dependent on columns in GROUP BY clause; this is incompatib...原创 2019-07-20 16:44:20 · 689 阅读 · 0 评论