donglong9745 2018-07-03 13:49
浏览 80
已采纳

将数组传递给go-pg查询

I'm using Go-pg and when I use the following way to execute sql query:

db.Query(&result, sqlQuery, params)

where params is a structure like the following:

type MyParams struct {
    Codes []int
}

and sqlQuery is

SELECT id FROM bar WHERE code_id IN (?codes)

in the actual SQL query I get query like this:

SELECT id FROM bar WHERE code_id IN ('[7,45]')

Is it possible to have int array placeholder passed properly to have a query:

SELECT id FROM bar WHERE code_id IN (7,45)
  • 写回答

3条回答 默认 最新

  • dotelauv682684 2018-07-03 20:12
    关注

    There are a couple things you can do:

    1. Keep using in (...) and use pg.In.
    2. Use = any(array) in your SQL instead of in (list) and pg.Array in Go to send a proper array to PostgreSQL.

    The first looks like:

    db.Query(&result, `SELECT id FROM bar WHERE code_id IN (?)`, pg.In(params.Codes))
    

    the second looks like:

    db.Query(&result, `SELECT id FROM bar WHERE code_id = ANY (?)`, pg.Array(params.Codes))
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥60 pb数据库修改或者求完整pb库存系统,需为pb自带数据库
  • ¥15 spss统计中二分类变量和有序变量的相关性分析可以用kendall相关分析吗?
  • ¥15 拟通过pc下指令到安卓系统,如果追求响应速度,尽可能无延迟,是不是用安卓模拟器会优于实体的安卓手机?如果是,可以快多少毫秒?
  • ¥20 神经网络Sequential name=sequential, built=False
  • ¥16 Qphython 用xlrd读取excel报错
  • ¥15 单片机学习顺序问题!!
  • ¥15 ikuai客户端多拨vpn,重启总是有个别重拨不上
  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)
  • ¥15 相敏解调 matlab
  • ¥15 求lingo代码和思路