SELECT * FROM TD_TextMorph(
ON words_input as inputtable
USING
WordColumn('word')
SingleOutput('True')
accumulate('id')
)as dt order by 1,2;
Result:
| id | word | TD_Morph | POS |
|---|---|---|---|
| 1 | regression | regression | NOUN |
| 2 | roger | Roger | NULL |
| 3 | better | better | NOUN |
| 4 | datum | datum | NOUN |
| 5 | quickly | quickly | ADV |
| 6 | proud | proud | ADJ |
| 7 | father | father | NOUN |
| 8 | juniors | junior | NOUN |
| 9 | doing | do | VERB |
| 10 | being | being | NOUN |
| 11 | negating | negate | VERB |
| 12 | yearly | yearly | NOUN |