All pages
Powered by GitBook
1 of 1

Loading...

USE INDEX

You can limit which indexes are considered with the USE INDEX option.

Syntax

Description

The default is 'FOR JOIN', which means that the hint only affects how the WHERE clause is optimized.

USE INDEX is used after the table name in the FROM clause.

USE INDEX cannot use an - it will be treated as if it doesn't exist.

Index Prefixes

When using index hints (USE, FORCE or IGNORE INDEX), the index name value can also be an unambiguous prefix of an index name.

Example

This produces:

If we had not used USE INDEX, the Name index would have been in possible keys.

See Also

  • for more details

This page is licensed: CC BY-SA / Gnu FDL

USE INDEX [{FOR {JOIN|ORDER BY|GROUP BY}] ([index_list])
ignored index
Index Hints: How to Force Query Plans
IGNORE INDEX
FORCE INDEX
Ignored Indexes
CREATE INDEX Name ON City (Name);
CREATE INDEX CountryCode ON City (Countrycode);
EXPLAIN SELECT Name FROM City USE INDEX (CountryCode)
WHERE name="Helsingborg" AND countrycode="SWE";
id	select_type	table	type	possible_keys	key	key_len	ref	rows	Extra
1	SIMPLE	City	ref	CountryCode	CountryCode	3	const	14	Using where