1.进入MySql数据库 mysql -uroot -p 2.查看数据库show databases; 3.创建数据库(GoTest)CREATE DATABASE GoTest 4.创建数据表()USE GO_TEST;CREATE TABLE `User`( `Id` BIGINT(20) NO ...
分类:
数据库 时间:
2021-07-01 17:27:15
阅读次数:
0
Dajngo查询数据,查询出来之后生成Excel保存本地 class ExportExcel(APIView): def post(self, request, *args, **kwargs): export_time = request.data.get('startEndTime') user ...
分类:
其他好文 时间:
2021-07-01 17:21:58
阅读次数:
0
1.安装python sudo yum install -y curl policycoreutils-pythonopenssh-server 2.将SSH服务设置成开机自启动,分别执行以下命令: sudo systemctl enable sshd sudo systemctl start ss ...
分类:
系统相关 时间:
2021-07-01 17:07:32
阅读次数:
0
vagrant构建linux虚拟机 1.下载软件 Vagrant: https://releases.hashicorp.com/vagrant/2.2.5/vagrant_2.2.5_x86_64.msi VirtualBox: https://download.virtualbox.org/vi ...
分类:
系统相关 时间:
2021-07-01 16:52:21
阅读次数:
0
Ubuntu设置用户自动登录 方式一 安装时勾选用户自动登录 方式二 系统设置内设置开启用户自动登录 方式三 vim /etc/lightdm/lightdm.conf autologin-user=username ...
分类:
系统相关 时间:
2021-07-01 16:46:23
阅读次数:
0
1.show databases 展示所有数据库 2.建表 column : 列名 PK:唯一主键 NN:不能为空 AI:自动增加 3.修改删除表 4.使用库 5.屏蔽 -- 加空格 切近加空格 6.插入指定的表数据 常用的增删改查 和 模糊搜索 排序 对应下面demo即可 -- show tabl ...
分类:
数据库 时间:
2021-07-01 16:40:54
阅读次数:
0
mysql多实例部署 通过开启多个不同的端口,将mysql部署多个进程 # 指定不同的datadir ,初始化 # 将配置文件的端口改成3307,3308,3309 # 使用mysqld --defaults-file=//// --user=mysql # 和你二进制安装的数据库一样的操作,只是配 ...
分类:
其他好文 时间:
2021-07-01 16:31:25
阅读次数:
0
1、当前集群状态 [kingbase@ECOLABAPP37 bin]$ ./repmgr cluster show ID | Name | Role | Status | Upstream | Location | Priority | Timeline | Connection string + ...
分类:
其他好文 时间:
2021-07-01 16:27:49
阅读次数:
0
1.先查看用的哪块网卡上的网,记录下Idx编号,我的是14 C:\Windows\system32>netsh i i show in Idx Met MTU 状态 名称 1 75 4294967295 connected Loopback Pseudo-Interface 1 10 1 65535 ...
一.通过Result类实现返回数据 //用户注册 @PostMapping("/registerUser") public Result registerUser(@RequestBody User user){ Result result = Results.successWithData( us ...
分类:
编程语言 时间:
2021-06-30 18:33:50
阅读次数:
0