If you are using Microsoft SQL Server, this is a good way to check how efficient the query to start SQL Server Profiler (from tools) is. Then when you start the request, you should see that your request is called with information about how effective it is. You can also export your log from the profiler as an XML file to the Database Engine Tuning Advisor, which can help you create indexes in your table.
Another method is to include the SET of your STOTISTICS IO ON query in your query, then in the messages you will get a list of tables (1 in your case) and the number of reads, etc., executed on request
Another is to include an execution plan in the results by clicking the βInclude Current Execution Planβ button in SQL Server Management Studio. It can be a bit complicated, but you should tell if your index is used or not.
samwa source share