Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
377 views
in Technique[技术] by (71.8m points)

arrays - How to seed/insert specific value after a specific value changes SQL/Hive

My objective is to make a table in Hive wherein for every new value of a column, say name, it will seed a word.

any code sample that can do this?

expected result:

name transaction date transaction code
Karen 01012021 ABC
Karen 01022021 DEF
Karen 01032021 ABC
Karen 01042021 GHI
name transaction_date transaction_code
Gilbert 01012021 ABC
Gilbert 01022021 DEF
Gilbert 01032021 ABC
Gilbert 01042021 GHI
name transaction_date transaction_code
Sherwin 01012021 ABC
Sherwin 01022021 DEF
Sherwin 01032021 ABC
Sherwin 01042021 GHI
question from:https://stackoverflow.com/questions/65912433/how-to-seed-insert-specific-value-after-a-specific-value-changes-sql-hive

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
  1. You can find distinct name (create a view or table)
  2. Loop through each value 2a) As you are looping make a insert "name" | transation_Date | code

Not sure if you can do alone in Hive but with a combination of Python/Spark/Scala you can do this. Hope it helps in some ways.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...