码迷,mamicode.com
首页 >  
搜索关键字:timestamp union autocommit    ( 5584个结果
【转】Scala JDBC 查询和更新MySQL
package com.bi import java.sql.{Connection, DriverManager, Timestamp} import java.util.Calendar /** * Created by xxx on 2017/6/28. */ object MySqlConn ...
分类:数据库   时间:2020-07-10 23:50:33    阅读次数:64
Mysql调优-4通过索引进行优化
通过索引进行优化: MySQL中的order by使用的时候是全排序,全排序比较低,可以使用索引,提升排序的效率; https://visualgo.net/zh https://geeksforgeeks.org1.索引的匹配方式: mysql官网下载saklia相关zip; 登录mysql执行 ...
分类:数据库   时间:2020-07-10 19:09:37    阅读次数:54
mysql的几种join 及 full join 问题
【注:本文转自 https://blog.csdn.net/u012410733/article/details/63684663】 【注意】:Oracle数据库支持full join,mysql是不支持full join的,但仍然可以同过左外连接+ union+右外连接实现 初始化SQL语句: / ...
分类:数据库   时间:2020-07-10 13:33:02    阅读次数:85
mysql优化从17秒多到1秒多。怀疑人生
一段MySQL,大概是这样 set @bl='value'; #定义变量 子查询1 子查询2 子查询3的where条件都用到了 select ... from( #子查询1(用到@bl) union #子查询2(用到@bl) union #子查询3(用到@bl) ) left join(子查询4) ...
分类:数据库   时间:2020-07-10 11:49:25    阅读次数:79
大数据之统计最低温度
package com.sjw.flink import org.apache.flink.streaming.api.TimeCharacteristicimport org.apache.flink.streaming.api.functions.timestamps.BoundedOutOfO ...
分类:其他好文   时间:2020-07-10 00:16:33    阅读次数:80
open_id和union_id区别
https://blog.csdn.net/hupoze/article/details/86594261 ...
分类:其他好文   时间:2020-07-09 10:37:44    阅读次数:51
Python 常用模块
time模块importtimeprint(time.time())#时间戳print(time.mktime(time.localtime()))#struct_time——>时间戳print(time.strftime(‘%Y-%m-%d%H:%M:%S‘))#格式化的字符串print(time.strftime(‘%Y-%m-%d%H:%M:%S‘,time.localtime()))
分类:编程语言   时间:2020-07-09 09:20:40    阅读次数:91
报错 java.sql.SQLException: Value '0000-00-00 00:00:00' can not be represented as java.sql.Timestamp 原因
sql异常 java.sql.SQLException: Value '0000-00-00 00:00:00' can not be represented as java.sql.Timestamp 是因为java不能将 0000-00-00 00:00:00 转成正常时间格式 ...
分类:数据库   时间:2020-07-08 15:43:22    阅读次数:132
[极客大挑战 2019]HardSQL
使用字典fuzz一下,发现过滤了空格,and,1=1,union,select,sleep,=等关键字但是没有过滤informaion_schema,updatexml等关键字,说明让我们使用报错注入,and被过滤可以使用or或者异或^代替,空格被过滤可以使用括号代替 查询数据库http://b80 ...
分类:数据库   时间:2020-07-07 15:46:10    阅读次数:131
1.更改统一审计AUD$UNIFIED 分区为1天
统计审计基表AUD$UNIFIED ,不允许直接更改,且默认是按月分区。 通过以下 DBMS_AUDIT_MGMT 更改分区为1天 BEGIN DBMS_AUDIT_MGMT.ALTER_PARTITION_INTERVAL( interval_number => 1, interval_frequ ...
分类:其他好文   时间:2020-07-07 09:39:32    阅读次数:70
5584条   上一页 1 ... 18 19 20 21 22 ... 559 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!