1.创建表 First, create a table with tab-delimited text file format: (1)CREATE TABLE u_data ( userid INT, movieid INT, rating INT, unixtime STRING) ROW FORMAT DELIMITED FIELDS TERMINATED BY '\t' STORED AS TEXTFILE; (2)//creates a table called invites wit…