|
|
|
|
|
by Justsignedup
1902 days ago
|
|
some of these are inaccurate. "a = 'foo'" is exactly the same performance as "a like 'foo'" and very close to the performance as "a like 'foo%'" and is fully indexed. When you put a wildcard in the front, the entire index is avoided, so you gotta switch to full text search. |
|