Hello I am trying to do a request in node.js with MySQL that is similar to
SELECT * FROM table_name WHERE tag="some_word" AND username="some_username"
I have not been able to figure out how to make a request work when wanting to use more than one variable at once. I can get my requests to work when doing something like
SELECT * FROM table_name WHERE username="some_username"
but I can't seem to find any answers on how to do this when adding the AND to the query. Any suggestions? Thank you in advance!