问题 i'm trying to extract two key from every json in an arry of jsons(using sql legacy) currently i am using json extract function : json_extract(json_column , '$[1].X') AS X, json_extract(json_column , '$[1].Y') AS Y, how can i make it run on every json at the 'json arry column', and not just [1] (for example)? An example json: [ {"blabla":000,"X":1,"blabla":000,"blabla":000,"blabla":000,,"Y":"2"}, {"blabla":000,"X":3,"blabla":000,"blabla":000,"blabla":000,,"Y":"4"}, ] thanks in advance! 回答1: