Cross-database prepared statement binding (like and where in) in Golang
问题 After reading many tutorials, I found that there are many ways to bind arguments on prepared statement in Go, some of them SELECT * FROM bla WHERE x = ?col1 AND y = ?col2 SELECT * FROM bla WHERE x = ? AND y = ? SELECT * FROM bla WHERE x = :col1 AND y = :col2 SELECT * FROM bla WHERE x = $1 AND y = $2 First question , what is the cross-database way to bind arguments? (that works on any database) Second question , none of the tutorial I've read mention about LIKE statement, how to bind arguments