EDIT
Now that you've posted your explain output, a couple of things:
- Looks like you don't have an index on anything that your DBMS is using. If I were you, I would add an index on the "References" field and "Residential" field and re-run your profiling.
- For the second query, you could add a multi-column index on both fields which is probably your best bet as far as performance.
- Your "Clustered Index Scan" should change to tell you it's using your new index.
Here's a pretty good explanation about indexes in detail, but you could just cheat and add the recommended ones and you should be good.
How does database indexing work?
Original Answer
Which of these two queries is better in terms of performance in my case?
Sort answer, there's no way to tell with the information you've provided. You need to look at the plan that your RDBMS is going to use to execute the query. You didn't say which database, so here are the MySQL docs:
http://dev.mysql.com/doc/refman/5.7/en/explain.html
It mainly depends on indexes and statistics and the DB vendor, but you can generate all that information by explaining your query. Post the results of the explain for both queries and you'll get answers.
As of now the answer is it depends