Can i move data from one hive partition to another partition of the same table
问题 My partition is based on year/month/date. Using SimpleDateFormat for week year created a wrong partition . The data for the date 2017-31-12 was moved to 2018-31-12 using YYYY in the date format. SimpleDateFormat sdf = new SimpleDateFormat("YYYY-MM-dd"); So what I want is to move my data from partition 2018/12/31 to 2017/12/31 of the same table. I did not find any relevant documentation to do the same. 回答1: From what I understood, you would like to move the data from 2018-12-31 partition to