Last active
August 29, 2015 14:02
-
-
Save abarth500/817cd2719e68d2b721d0 to your computer and use it in GitHub Desktop.
[CS実験I] SELECT文の試行
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 WHERE id = 7738073352; | |
| -- 0secで結果が返ってきます | |
| --インデクスを作成していないフィールドで検索 | |
| SELECT * FROM geotag WHERE latitude = 38.9466; | |
| -- 14sec程度かかります |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment