gpt4 book ai didi

sql - 在 Golang 中使用可变数量的命名参数执行 SQL 查询

转载 作者:IT王子 更新时间:2023-10-29 01:09:05 24 4
gpt4 key购买 nike

所以我有这个 PostgreSQL 函数,它接受可变数量的命名参数并返回相应项目的列表:

CREATE OR REPLACE FUNCTION read_user(
_id BIGINT DEFAULT NULL,
_phone VARCHAR(30) DEFAULT NULL,
_type VARCHAR(15) DEFAULT NULL,
_last VARCHAR(50) DEFAULT NULL,
_first VARCHAR(50) DEFAULT NULL
)
RETURNS setof T_USERS
AS $$
BEGIN
RETURN QUERY
SELECT * FROM T_USERS
WHERE ( id = _id OR _id IS NULL )
AND ( phone = _phone OR _phone IS NULL )
AND ( type = _type OR _type IS NULL )
AND ( last = _last OR _last IS NULL )
AND ( first = _first OR _first IS NULL );
EXCEPTION WHEN others THEN
RAISE WARNING 'Transaction failed and was rolled back';
RAISE NOTICE '% %', SQLERRM, SQLSTATE;
END
$$ LANGUAGE plpgsql;

所以我可以像这样运行多态查询:

SELECT read_user(_id := 2);
SELECT read_user(_first := 'John', _last := 'Doe');

在 Golang 中我可以做这样的事情:

stmt, err := db.Prepare("SELECT read_user(_id = ?)")

但是我怎样才能做同样的事情,但使用可变数量的 read_user 参数?我正在使用 pq 驱动程序 https://github.com/lib/pq .

最佳答案

您可以通过枚举所有参数及其占位符来构造您的一个语句,然后您可以在没有参数值的地方显式传递nil

stmt, err := db.Prepare("SELECT read_user(_id := $1, _phone := $2, _type := $3, _last := $4, _first := $5)")
if err != nil {
// ...
}
stmt.Query(2, nil, nil, nil, nil) // result should be equivalent to `SELECT read_user(_id := 2)`
stmt.Query(nil, nil, nil, "Doe", "John") // result should be equivalent to `SELECT read_user(_first := 'John', _last := 'Doe')`

如果你也想在 Go 中命名参数,你可以创建一个结构类型来表示参数和一个包装器函数,它将那个参数类型的字段映射到查询中:

type readUserParams struct {
Id interface{}
Phone interface{}
Type interface{}
Last interface{}
First interface{}
}

func readUser(p *readUserParams) {
stmt.Query(p.Id, p.Phone, p.Type, p.Last, p.First)
// ...
}

readUser(&readUserParams{Id: 2})
readUser(&readUserParams{First: "John", Last:"Doe"})

关于sql - 在 Golang 中使用可变数量的命名参数执行 SQL 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43700597/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com