【发布时间】:2023-03-12 08:34:01
【问题描述】:
-- Some comments here
CREATE EXTERNAL TABLE IF NOT EXISTS IMPS
(
CLICKS INT COMMENT 'Number of raw clicks for this impression.',
VIEWS INT COMMENT 'Number of raw views for this impression'
)
我想将以上内容列表化为:
-- Some comments here
CREATE EXTERNAL TABLE IF NOT EXISTS IMPS
(
CLICKS INT COMMENT 'Number of raw clicks for this impression.',
VIEWS INT COMMENT 'Number of raw views for this impression'
)
我该怎么做?如果我使用:Tab \,它也会在字符串内部进行表格化。
【问题讨论】: