create function [dbo].[GetSplitStr] ( @str nvarchar(500), --要分割的字符串 @split nvarchar(50), --分隔符号 @index int --取第几个元素 ) returns nvarchar(500) as begin d ...
分类:
数据库 时间:
2021-03-03 12:27:23
阅读次数:
0
create table customer row format SERDE 'org.apache.hadoop.hive.serde2.avro.AvroSerDe'stored as inputformat 'org.apache.hadoop.hive.ql.io.avro.AvroCont ...
分类:
其他好文 时间:
2021-03-03 12:21:19
阅读次数:
0
一、注意事项: 在zoo.cfg文件中设置的zkDir位置下创建zkDate目录,并且增加一个 myid 的文件,文件内容为当前节点的zookeeper的编号。 二、基本操作: 1. ls / 查看当前znode所包含的内容 2. ls2 / 查看当前znode节点的详细数据。 3.create / ...
分类:
其他好文 时间:
2021-03-03 12:06:04
阅读次数:
0
1 1 import pymysql 2 2 3 3 db = pymysql.connect(host='localhost', user='root', password='123456', database='jddj',port=3306) 4 4 cursor = db.cursor() ...
分类:
数据库 时间:
2021-03-02 12:38:55
阅读次数:
0
有两个数据库表,社团表和一个社团分类表,后来突然想加个 各个社团种类下的社团数 这样一个字段count,于是用到了存储过程 navicat中编写存储过程可以直接点上方的函数然后选择存储过程 1 CREATE DEFINER=`root`@`localhost` PROCEDURE `countcat ...
分类:
数据库 时间:
2021-03-02 12:30:20
阅读次数:
0
参考答案 assume cs:codeseg codeseg segment separator: db '/', '/', ' ', ':', ':' date_index: db 9, 8, 7, 4, 2, 0 ; 这几个位置没啥规律,耽误我写循环 start: mov ax, cs mov ...
分类:
编程语言 时间:
2021-03-01 14:15:42
阅读次数:
0
查看数据表的信息,只能算是优化用户体验 --用户表 if exists(select * from sysobjects where name = 'bi_user') drop table bi_user create table bi_user ( user_id int not null pr ...
分类:
其他好文 时间:
2021-03-01 13:44:56
阅读次数:
0
InfluxDB操作 1. 显示数据库 > show databases > create database test > drop database test 2. 显示说有表 > show measurements InfluxDB数据备份和恢复 备份元数据 1、influxd backup - ...
分类:
数据库 时间:
2021-03-01 13:29:57
阅读次数:
0
增强for循环 格式: for(声明语句:表达式){ //代码 } /** * @author Administrator * @create 2021/2/27 22:46 */ public class Demo05 { public static void main(String[] args ...
分类:
其他好文 时间:
2021-03-01 13:19:47
阅读次数:
0
# 生成命令对应的yaml文件(资源清单)kubectl create deployment xxxxxxxxxxx --image=nginx --dry-run -o yamlkubectl create deployment xxxxxxxxxxx --image=nginx --dry-ru ...
分类:
其他好文 时间:
2021-03-01 13:16:39
阅读次数:
0