Created
August 19, 2012 18:22
-
-
Save kachok/3396898 to your computer and use it in GitHub Desktop.
Dictionaries dump
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
create table dictionary_dump_20120504 as | |
select l.prefix, v.id, v.word, vhr.translation, a.worker_id, p.quality, p.total | |
from voc_hits_results vhr, languages l, vocabulary v, assignments a, voc_hits_workers_performance p | |
where | |
a.id=vhr.assignment_id and | |
p.id=a.worker_id and p.language_id=l.id and | |
vhr.is_control=1 and vhr.quality=1 | |
and v.id=vhr.word_id | |
and v.language_id=l.id | |
order by prefix, v.id; | |
copy dictionary_dump_20120504 to '/users/dkachaev/repos/hcil/hitman/process/src/dictionary_dump_20120504.txt'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment