7

我的一个 hive 表有一个名为“location”的列,它现在是一个保留关键字。我想在开发中创建表的副本,有没有办法在创建表语句期间绕过名称?如果我做类似的事情

CREATE TABLE users (id int, location string);

我懂了:

FAILED: Parse Error: line 1:0 mismatched input ''location'' expecting Identifier near ',' in column specification
4

1 回答 1

13

弄清楚了:

CREATE TABLE users (`id` int, `location` string);
于 2013-03-27T20:18:47.653 回答