You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sq.StatementBuilder.PlaceholderFormat(sq.Colon).Select("c.userID, c.name, o.orderID").From("users AS c").
Join("orders AS o ON c.orderID = o.orderID").
Where(sq.Eq{"orderID": []string{"a", "b"}})
I'm trying to recreate this query with squirrel:
The closest I can come up with is this and it's wrong:
The text was updated successfully, but these errors were encountered: