Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
i have 14 states in one column how to select data on the basis of different 14 states
Posted

1 solution

Assuming the table name is statetable and the column name is statename
SELECT * FROM statetable WHERE statename IN ('California', 'New York')

Read more: SQL Tutorials[^]
 
Share this answer
 
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900