码迷,mamicode.com
首页 >  
搜索关键字:charge    ( 202个结果
在过程中执行truncate table总是报语法错误
源代码如下: BEGIN DECLARE i INT; DECLARE time_1 datetime; DECLARE ID_1 int; DECLARE charge_1 FLOAT; DECLARE length_1 FLOAT; DECLARE err_1 FLOAT; DECLARE RS ...
分类:其他好文   时间:2021-05-25 18:31:26    阅读次数:0
三维力控,关系数据库,执行sql语句,引用变量
在力控脚本中引用变量, 必须把变量转换成字符串形式; 格式如下: 1. 数值型变量: 字段名 = "+变量名+"; 2. 字符型变量: 字段名 = ' "+变量名+" '; 例如:向mysql数据库表名为data20210426的表中插入数据 Time.PV, DataLong.PV, Charge ...
分类:数据库   时间:2021-05-03 11:48:16    阅读次数:0
iview表单数字验证
minChargeMoney: [ { required: true, message: "此项必填", trigger: "blur", type:"number", transform(value) { return Number(value); } }, ], ...
分类:其他好文   时间:2021-04-26 13:19:44    阅读次数:0
Spring Boot 定时任务单线程和多线程
1、创建定时任务: @Component public class AutoNotifyController { /** * 获取RedisUtils注入的bean * * @return */ private ThreadUtil getThreadUtil() { ThreadUtil thre ...
分类:编程语言   时间:2020-07-30 16:53:27    阅读次数:71
Oracle Job的使用(定时执行)
oracle中的job能为你做的就是在你规定的时间格式里执行存储过程,定时执行一个任务 。下面是一个小案例,定时每15分钟向一张表插入一条数据 一 1.创建一张测试表 -- Create table create table A8 ( a1 VARCHAR2(500) ) tablespace DS ...
分类:数据库   时间:2020-07-07 19:55:48    阅读次数:92
/opt/nvidia/deepstream/deepstream/sources/libs/nvdsinfer_customparser/nvdsinfer_custombboxparser.cpp
/* * Copyright (c) 2018-2019, NVIDIA CORPORATION. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * c ...
分类:其他好文   时间:2020-07-04 15:15:10    阅读次数:69
P4 Runtime - Putting the Control Plane in Charge of the Forwarding Plane
A few weeks ago we introduced the first demonstration of “P4 Runtime”. We invite all members of the networking community to join with us, so that toge ...
分类:其他好文   时间:2020-06-30 13:01:44    阅读次数:51
时间序列预测线上充值数据
1.获取2019-2020年每个月份的充值总额 USE xchat; SELECT month(update_time) as month,sum(amount) FROM charge_record WHERE buss_type=0 and charge_status=2 and charge_ ...
分类:其他好文   时间:2020-06-12 20:35:33    阅读次数:119
基于MySQL分析线上充值留存率
1.数据清洗 步骤: 1.查询charge_record表业务类型为充值且订单状态为成功的数据 2.将上述数据转移到本地数据库 使用如下脚本: # coding=utf-8import pymysql# 原数据库链接db1 = pymysql.connect( host='***', port=33 ...
分类:数据库   时间:2020-06-12 19:54:51    阅读次数:89
MySQL建立RFM模型
1.数据来源 charge_record表数据 提取代码如下: # coding=utf-8import pymysql# 原数据库链接db1 = pymysql.connect( host='***', port=3306, user='***', passwd='***', db='***', ...
分类:数据库   时间:2020-06-12 18:39:28    阅读次数:134
202条   1 2 3 4 ... 21 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!