We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/* { sql: `select {{foo}},{{bar}} from tb where address in {{addr}} and {{where}}`, data: map[string]interface{}{ "foo": "f1", "bar": "f2", "addr": []string{"beijing", "shanghai", "chengdu"}, "where": map[string]interface{}{ "name in": []string{"1", "2"}, "age": 10, }, }, cond: `select ?,? from tb where address in (?,?,?) and (age=? AND name IN (?,?))`,, vals: []interface{}{"f1", "f2", "beijing", "shanghai", "chengdu", 10, "1", "2"}, } */ where := map[string]interface{}{ "foo": "f1", "bar": "f2", "addr": []string{"beijing", "shanghai", "chengdu"}, "where": map[string]interface{}{ "name in": []string{"1", "2"}, "age": 10, }, }, where["where"] = builder.Omity(where["where"], []string{"age"}) // 使用此种方式来实现,复杂SQL, 部分条件需要过滤
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The text was updated successfully, but these errors were encountered: