Created
June 10, 2014 08:11
-
-
Save abarth500/1a96ec6d241826e20923 to your computer and use it in GitHub Desktop.
[CS実験I] SELECT文の試行2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --インデクスを強制的に使用しないで問い合わせをする方法 | |
| SELECT * FROM geotag IGNORE INDEX (PRIMARY) WHERE id = 7738073352; | |
| --PRIMARYは主キーに自動で付けられるインデクスの名前 | |
| --この場合は検索に時間がかかります。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment