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
package main import ( "github.com/k0kubun/pp" "github.com/araddon/qlbridge/rel" ) func main() { qstr := `SELECT authors.author_name, authors.author_email, author_submissions.article_title FROM authors LEFT JOIN author_submissions ON authors.author_email=author_submissions.author_email` stmt, err := rel.ParseSqlSelect(qstr) handlerErr(err) pp.Println(stmt) } func handlerErr(err error) { if err != nil { panic(err) } }
this gives error unexpected token Got Token{ LEFT Type:"identity" Line:2 Col:5 Q: Pos:101} near: T JOIN author_submi
unexpected token Got Token{ LEFT Type:"identity" Line:2 Col:5 Q: Pos:101} near: T JOIN author_submi
The text was updated successfully, but these errors were encountered:
No branches or pull requests
this gives error
unexpected token Got Token{ LEFT Type:"identity" Line:2 Col:5 Q: Pos:101} near: T JOIN author_submi
The text was updated successfully, but these errors were encountered: