Gorm之数据删除

Gorm之数据删除,第1张

文章目录 Gorm之数据删除1.硬删除1.1第一种1.2第二种1.3注意事项1.4第三种 2.软删除2.1第一种2.2第二种

Gorm之数据删除

注:本文是基于Windos系统上 gorm.io/gorm@v1.23.4、gorm.io/driver/mysql@v1.3.3进行讲解

1.硬删除 1.1第一种
stu := Student{
		Id: 5,
	}
	conn.Delete(&stu) //删除id=5的数据
	fmt.Println(stu)

运行代码前:

运行代码后:

1.2第二种
    stu := Student{}
	conn.Where("name = ?", "jun").Delete(&stu)   

运行代码前:

运行代码后:

1.3注意事项

注意:不管数据库中有没有这条数据,都不会返回错误

package main

import (
	"fmt"
	"gorm.io/driver/mysql"
	"gorm.io/gorm"
)

//模型结构
type Student struct {
	Id   int
	Name string
	Age  int
}

func main() {
	//使用dsn连接到数据库,grom自带的数据库池
	//账号:密码@连接方式(ip地址:端口号)/数据库?语言方式,时区(未设置时区的话采用8小时制度)
	dsn := "root:414524@tcp(127.0.0.1:3306)/gotest?charset=utf8mb4&parseTime=True&loc=Local"
	conn, err := gorm.Open(mysql.Open(dsn), &gorm.Config{}) //使用mysq连接数据库,第二个参数可以增加更多的配置(可有可无)
	if err != nil {
		fmt.Println(err)
	}
	conn.AutoMigrate(&Student{}) //创建表?判断是否表结构存在

	stu := Student{
		Id: 100,
	}
	res := conn.Delete(&stu) //删除id=5的数据
	fmt.Println(stu)

	if res.Error != nil {
		fmt.Println(res.Error)
	}
}

运行代码前:

运行代码后:

1.4第三种
type User struct {
	gorm.Model
	Name string
	Age  int64
}
func main() {
	conn.AutoMigrate(&User{})
	var st []User
	conn.Unscoped().Where("name = ?", "").Delete(&st)
}

代码运行前

代码运行后

2.软删除 2.1第一种

运行代码前:

插入一条数据:

package main

import (
	"fmt"
	"gorm.io/driver/mysql"
	"gorm.io/gorm"
)

//模型结构
type Student struct {
	gorm.Model
	Name string
	Age  int
}

func main() {
	dsn := "root:414524@tcp(127.0.0.1:3306)/gotest?charset=utf8mb4&parseTime=True&loc=Local"
	conn, err := gorm.Open(mysql.Open(dsn), &gorm.Config{})
	if err != nil {
		fmt.Println(err)
	}
	conn.AutoMigrate(&Student{})

	stu := &Student{
		Name: "yang",
		Age:  22,
	}
	res := conn.Create(stu)
   fmt.Println(stu)
	if res.Error != nil {
		fmt.Println(res.Error)
	}
}

插入数据后样子:

删除一条数据:

package main

import (
	"fmt"
	"gorm.io/driver/mysql"
	"gorm.io/gorm"
)

//模型结构
type Student struct {
	gorm.Model
	Name string
	Age  int
}

func main() {
	dsn := "root:414524@tcp(127.0.0.1:3306)/gotest?charset=utf8mb4&parseTime=True&loc=Local"
	conn, err := gorm.Open(mysql.Open(dsn), &gorm.Config{})
	if err != nil {
		fmt.Println(err)
	}
	conn.AutoMigrate(&Student{})

	stu := Student{}
	res := conn.Where("name = ?", "yang").Delete(&stu)
	fmt.Println(stu)
	if res.Error != nil {
		fmt.Println(res.Error)
	}
}

删除数据后样子:

删除一条不是数据库里的数据

package main

import (
	"fmt"
	"gorm.io/driver/mysql"
	"gorm.io/gorm"
)

//模型结构
type Student struct {
	gorm.Model
	Name string
	Age  int
}

func main() {
	dsn := "root:414524@tcp(127.0.0.1:3306)/gotest?charset=utf8mb4&parseTime=True&loc=Local"
	conn, err := gorm.Open(mysql.Open(dsn), &gorm.Config{})
	if err != nil {
		fmt.Println(err)
	}
	conn.AutoMigrate(&Student{})

	stu := Student{}
	res := conn.Where("name = ?", "yanggshshs").Delete(&stu)
	fmt.Println(stu)
	if res.Error != nil {
		fmt.Println(res.Error)
	}
}

执行完第二次删除数据后样子:

2.2第二种
type User struct {
	gorm.Model
	Name string
	Age  int64
}

func main() {
	conn.AutoMigrate(&User{})
	var st []User
	conn.Where("name = ?", "").Delete(&st)//目的是将
    //但是发现并没有把所有name字符串为空字符""的都删掉,而且发现deleted_at里面有值了
    //注意:只要存在deleated_at,就是软删除,即不是真正的删除
}

代码运行前

代码运行后

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/995965.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存