Say I have a query:
SELECT * FROM my_table WHERE my_name = 'borris'
What is the difference between enclosing borris in single quotes like this: 'borris' and enclosing with backticks: `borris`
Because sometimes queries work only if certain terms are enclosed with backticks but the same query doesn't work if those terms are enclosed with single quotes.



Reply With Quote

Bookmarks