R
rokjock
The following is a query that I developed to pull interviews per state.
When I run the query a pop up box appears asking for the state. My problem
is no matter what state I type in, the same data is pulled. For example:
if I type in "IN" I get 25............if I type in "TX" I get 25. Any
thoughts on how I can make this query more specific so that is recognizes
the different states? I am new to SQL so any help would be most
appreciated! Thanks in advance.
Select TableName.State, Count(TableName.State) as NumberOfIntviewsPerState
From TableName
Group By TableName.State
When I run the query a pop up box appears asking for the state. My problem
is no matter what state I type in, the same data is pulled. For example:
if I type in "IN" I get 25............if I type in "TX" I get 25. Any
thoughts on how I can make this query more specific so that is recognizes
the different states? I am new to SQL so any help would be most
appreciated! Thanks in advance.
Select TableName.State, Count(TableName.State) as NumberOfIntviewsPerState
From TableName
Group By TableName.State