1.在mysql数据库创建mybatis数据库,之后的操作围绕该数据库进行 CREATE DATABASE `mybatis`; USE `mybatis`; CREATE TABLE `user`( `id` INT(20) NOT NULL PRIMARY KEY, `name` VARCHAR ...
分类:
数据库 时间:
2021-03-06 15:07:51
阅读次数:
0
构建过程 安装 VueCli npm install -g @vue/cli 安装 electron npm install electron -g 创建项目 vue create antd-demo 切换至项目目录 cd antd-demo 使用组件 ant-design-vue npm i -- ...
分类:
其他好文 时间:
2021-03-04 13:29:39
阅读次数:
0
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
有两个数据库表,社团表和一个社团分类表,后来突然想加个 各个社团种类下的社团数 这样一个字段count,于是用到了存储过程 navicat中编写存储过程可以直接点上方的函数然后选择存储过程 1 CREATE DEFINER=`root`@`localhost` PROCEDURE `countcat ...
分类:
数据库 时间:
2021-03-02 12:30:20
阅读次数:
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