小伙伴们有没有觉得学习Golang很有意思?有意思就对了!今天就给大家带来《mysql 的语法数组》,以下内容将会涉及到,若是在学习中对其中部分知识点有疑问,或许看了本文就能帮到你!
问题内容将数据数组添加到数据库的语法是什么, 我发现 postgresql 是:pg.array
// "ins" is the SQL insert statement
ins := "INSERT INTO posts (title, tags) VALUES ($1, $2)"
// "tags" is the list of tags, as a string slice
tags := []string{"go", "goroutines", "queues"}
// the pq.Array function is the secret sauce
_, err = db.Exec(ins, "Job Queues in Go", pq.Array(tags))
解决方案
这里我要讲几点,这主要是因为你的问题不够清晰:
第一
pq.array
用于将数组值转换为postgresql中的安全列表,例如以下语句:
db.query(`select * from t where id = any($1)`, pq.array([]int{235, 401}))
结果查询是:
select * from t where id = any(235, 401)
这旨在帮助您从列表中安全地制作与类型无关的查询值,这不是您在问题中使用它的方式。
第二个
如果您只是尝试将值编组到数据库列中的逗号分隔列表中,即:
| title | tags |
|---------|----------------------|
| my post | go,goroutines,queues |
您不需要 sql 驱动程序中的特殊函数。您只需创建值,然后让准备好的语句完成其任务:
tags := []string{"go, goroutines, queues"}
q := "insert into posts (title, tags) values ($1, $2)"
_, _ = db.exec(q, "mypost", strings.join(tags, ","))
第三
使用 mysql 中的关系来完成您正在做的事情,您可能会得到更好的服务:
帖子| id | title |
|----|---------|
| 1 | my post |
标签
| id | tag |
|----|------------|
| 1 | go |
| 2 | goroutines |
| 3 | queues |
帖子标签
| posts_id | tags_id |
|----------|---------|
| 1 | 1 |
| 1 | 2 |
| 1 | 3 |
这将帮助您通过不保存重复数据来节省空间,并且无需了解数据库内的序列化方法(另外,这就是关系数据库所做的)。然后,当您选择表时,您可以制作 join
语句来根据需要检索数据。我强烈建议阅读 mysql 中的多对多关系。
理论要掌握,实操不能落!以上关于《mysql 的语法数组》的详细介绍,大家都掌握了吧!如果想要继续提升自己的能力,那么就来关注编程网公众号吧!