Is it possible to write a query just like this?
SELECT a FROM Action a WHERE a.name = "name" WHERE a.namesafe = "namesafe"
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Your SQL has some mistakes
SELECT a FROM Action a. May be you are missing a.*."instead of single'.May be What you are looking for is this,
But yes, you can use two WHERE. It’ll be tricky though.