You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This query took almost 11 seconds to execute on the OSPS42.db lexicon database.
SELECT word, alphagram FROM (
SELECT alphagrams.alphagram
FROM alphagrams
WHERE alphagrams.length = 9 AND alphagrams.contains_update_to_lex = 1
ORDER BY alphagrams.probability
) q
INNER JOIN words w using (alphagram)
If I execute this query directly in sqlite3, it is almost instantaneous! What is happening?
The text was updated successfully, but these errors were encountered:
This query took almost 11 seconds to execute on the OSPS42.db lexicon database.
If I execute this query directly in sqlite3, it is almost instantaneous! What is happening?
The text was updated successfully, but these errors were encountered: