I have the following sql code:
sqlStatement := `INSERT INTO listings (listing_key,lat,long)
VALUES(?,?,?)`
However, long
is a reserved keyword in mysql so i need to escape the column
. As in:
sqlStatement := `INSERT INTO listings (listing_key,lat,`long`)
VALUES(?,?,?)`
but that breaks the sql statement.
not sure how to resolve. theres a ton more columns so i need to use the multi line tick.