失败:ParseException行3:0无法识别附近的输入'格式' '脱墨'在表行格式规范中(状态= 42000,代码= 40000)

发布于 2025-02-08 18:05:13 字数 310 浏览 0 评论 0原文

CREATE EXTERNAL TABLE CLIENTES (
   'idcliente int,
    cnh string,
    cpf string,
    validacnh date,
    nome string,
    datacadastro date,
    datanascimento date, 
    telefone string,
    status string'
 )  
 row format demilited
 fields terminated by ', ' 
 STORED AS TEXTFILE;
CREATE EXTERNAL TABLE CLIENTES (
   'idcliente int,
    cnh string,
    cpf string,
    validacnh date,
    nome string,
    datacadastro date,
    datanascimento date, 
    telefone string,
    status string'
 )  
 row format demilited
 fields terminated by ', ' 
 STORED AS TEXTFILE;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无可置疑 2025-02-15 18:05:13

由于某种原因,您将这些列作为字符串文字。取出引号

CREATE EXTERNAL TABLE CLIENTES (
    idcliente int,
    cnh string,
    cpf string,
    validacnh date,
    nome string,
    datacadastro date,
    datanascimento date, 
    telefone string,
    status string
 )  
 row format demilited
 fields terminated by ', ' 
 STORED AS TEXTFILE;

For some reason you have the columns as a string literal. Take out the quotes

CREATE EXTERNAL TABLE CLIENTES (
    idcliente int,
    cnh string,
    cpf string,
    validacnh date,
    nome string,
    datacadastro date,
    datanascimento date, 
    telefone string,
    status string
 )  
 row format demilited
 fields terminated by ', ' 
 STORED AS TEXTFILE;

https://www.tutorialspoint.com/hive/hive_create_table.htm

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文