Generally, when you create an index on a table, database will automatically use that index while searching for data in that table. You don't need to do anything about that.
However, in MSSQL, you can specify an index hint
which can specify that a particular index should be used to execute this query. More information about this can be found here.
Index hint
is also seems to be available for MySQL. Thanks to Tudor Constantine.