0
我試圖創建一個蜂巢表,它會創建只有2列,而不是3.我使用的語法如下:蜂巢只創建2列
CREATE TABLE table_name (col1 int, col2 string, col3 int)
另外,如果我做的第一列(在我的輸入中)一個字符串,我收到以下錯誤:
Cannot convert column 1 to integerjava.lang.NumberFormatException: For input string
我正在使用配置單元默認數據庫 – user3782579