This is probably basic, entry level stuff, but I've not learned it yet.
I'm using SQL Server Management Studio to try to find specific instances of people named Colby in a table containing customer info for my company. I can get a list of all customers for each store by entering the query:
select * from tb_customers where store_id in (1[or whatever the store id is])
There is a column named STORE_ID in the table, as well as a column named FIRST_NAME. However my ignorance is stopping me from finding all the Colbys. I followed the same sort of format and entered:
select * from tb_customers where first_name in (colby)
There was an error saying that there is no column named "colby." I'm sure this is a stupid question for people who know SQL, but what can I write to search for a specific name?
And can I search for something in FIRST_NAME and LAST_NAME at the same time?