xwb1989 / sqlparser

SQL Parser implemented in Go
Apache License 2.0
1.47k stars 238 forks source link

support for := assignment operator #50

Open noelruiz opened 5 years ago

noelruiz commented 5 years ago
SELECT @variable := id
FROM   randomtable;

I'm currently using sqlparse and I'm currently facing the issue that := doesn't seem supported when assigning values within a select. is there plans to support this in future releases?

Thank you!