s := SqlQueryInfo{} s.Select("user").Where("id=?", 1) fmt.Println(s.String())
s := SqlQueryInfo{} s.Insert("user", map[string]interface{} { "name": "John Doe", "age": 30, }) fmt.Println(s.String())
s := SqlQueryInfo{} s.Delete("user").Where("id=?", 1) fmt.Println(s.String())This example generates a SQL string that deletes a row from the 'user' table where the 'id' column equals 1. In conclusion, the github.com.qleelulu.goku.SqlQueryInfo package is a useful Go library for generating SQL queries with placeholders for dynamic arguments. The package offers many features for generating different types of queries and is easy to use with its simple and intuitive API.