搜索结果
查询Tags标签: 625,共有 4条记录-
influxdb 导入导出数据
导入导出命令# 导出,两个dir目录在influxdb.conf中有配置 influx_inspect export -datadir "/var/lib/influxdb/data" -waldir "/var/lib/influxdb/wal" -out "/data/test123456" -database lcx# 导入 influx -import -path=/data/lcx123…
2022/9/7 23:26:26 人评论 次浏览 -
微信小程序:求对数
function getBaseLog(x, y) {return Math.log(y) / Math.log(x); }// 2 x 2 x 2 = 8 console.log(getBaseLog(2, 8)); // expected output: 3// 5 x 5 x 5 x 5 = 625 console.log(getBaseLog(5, 625)); // expected output: 4js这个坑货,在Math里多封装一步能死吗,还得自…
2021/11/6 22:13:01 人评论 次浏览 -
微信小程序:求对数
function getBaseLog(x, y) {return Math.log(y) / Math.log(x); }// 2 x 2 x 2 = 8 console.log(getBaseLog(2, 8)); // expected output: 3// 5 x 5 x 5 x 5 = 625 console.log(getBaseLog(5, 625)); // expected output: 4js这个坑货,在Math里多封装一步能死吗,还得自…
2021/11/6 22:13:01 人评论 次浏览 -
【DB笔试面试625】在Oracle中,如何获取timestamp类型的精度到纳秒级?
♣ 题目 部分在Oracle中,如何获取timestamp类型的精度到纳秒级? ♣ 答案部分 秒(s)的单位都有毫秒(ms,millisecond),微秒(μs,microsecond),纳秒(ns,nanosecond),它们之间的换算单位为千进制,1s(秒)=10^3ms(毫秒)=10^6μs(微秒)=10^9ns(纳秒)…
2021/4/15 19:59:49 人评论 次浏览