Я пытаюсь этой командой создать таблицу твитов:
CREATE TABLE tweetwords as select id as id,
split(text,` `) as words from sampletweets;
Но я получаю эту ошибку:
FAILED: SemanticException [Error 10004]: Line 2:11 Invalid table alias or column reference ' ': (possible column names are: id, created_at, source, favorited, retweeted_status, entities, text, user, in_reply_to_screen_name)