Query only rows where column matches X criteria?

Query only rows where column matches X criteria?

I know this has to be simple.  I could write this query in my sleep in SQL, but I'm short on time and trying to figure this out in Deluge. 

Basically I'm trying create a report that will only list the values that I specify in my script. 

For example... say I have column called ComputerName that lists out roughly 400 computers.  I want to pull a specified list of computers.

In SQL I would write it like this...

select * from database where ComputerName in ('computer1','computer2','computer3',)