package main import ( "fmt" "gorm.io/driver/mysql" "gorm.io/gorm" "time" ) type User struct { ID int Name string CreatedTime time.Time } func main() { ...
分类:
其他好文 时间:
2021-06-04 19:06:12
阅读次数:
0
数据库 库 database 表 table 每个库中可以包含多张表, 必须在库中建表 每个表中,一行数据,称为 记录 每一列数据,称为字段, 每个字段都有自己的类型 数据库本质是一种文件, 有一种专门的工具软件帮助管理数据库, 这种软件被称为RDBMS(关系型数据库管理系统) 关系型数据库: MY ...
分类:
数据库 时间:
2021-06-04 18:56:34
阅读次数:
0
创建表:create table people( id int primary key auto_increment not null, name varchar(10) not null, age int default 18); 创建学生表: create table students(id i ...
分类:
数据库 时间:
2021-06-04 18:53:42
阅读次数:
0
列表 优点: list可以承载任意数据类型,并且可以存储大量数据 python常用的容器型数据类型。java:数组 列表是有序的,可索引,切片(步长)。 列表可以相加,相乘 缺点: 列表数据关联性不是很强 列表查询速度比较慢 ## 列表的创建 方式一: s1=[123,'qwe',[1,2,3]] ...
分类:
其他好文 时间:
2021-06-04 18:46:14
阅读次数:
0
1、sudo xbstream -x -C /data/data_10 < ~/test.xb 2、sudo xtrabackup --decompress --target-dir=/data/data_10 3、sudo xtrabackup --prepare --target-dir=/da ...
分类:
数据库 时间:
2021-06-04 18:45:14
阅读次数:
0
1、下载pdi-ce-9.0.0.0-423.zip并解压 2、windows下运行Spoon.bat 3、界面如下 4、转换上右键-新建-保存,另存为,然后关闭再打开就是打开的新建的文件 5、DB连接-新建 出现问题如下: Driver class 'org.gjt.mm.mysql.Driver ...
分类:
数据库 时间:
2021-06-03 18:16:41
阅读次数:
0
存储引擎决定了表的存储方式, 查看当前使用的存储引擎 1.show create table 表名 2.show engines 建表的时候可以指定存储引擎和字符集 存储引擎这个名字只在mysql中存在。(oracle中没有特殊的名字,就叫表的存储方式) MyISAM:采用三个文件来存储一张表(表结 ...
分类:
其他好文 时间:
2021-06-03 18:10:29
阅读次数:
0
一、连接数据库: dsn := "root:123456@tcp(127.0.0.1:3306)/more?charset=utf8mb4&parseTime=True&loc=Local" db, err := gorm.Open(mysql.Open(dsn), &gorm.Config{}) ...
分类:
数据库 时间:
2021-06-03 17:50:45
阅读次数:
0
相比Windows系统,Linux系统上安装MySQL比较简单,本文将详细介绍如何在Ubuntu系统安装MySQL。 PART 1 安装MySQL 1.更新软件源 sudo apt update 2.安装MySQL sudo apt-get install mysql-server sudo apt ...
分类:
数据库 时间:
2021-06-03 17:48:23
阅读次数:
0
#CentOS7的yum源中默认好像是没有mysql 1.1 下载mysql的repo源 cd /usr/local wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm 1.2 安装mysql-community-r ...
分类:
数据库 时间:
2021-06-03 17:43:34
阅读次数:
0