I have an json file in local disk and I want to write the data to columns.

I have an json file in local disk and I want to write the data to columns.

KulaDeepu_KDKulaDeepu_KD Posts: 1Questions: 1Answers: 0
edited February 2019 in Free community support

data format:

[
    {
        "ID": "id",
        "INFO": {
            "NAME": "name",
            "COURSE": "course",
            "BRANCH": "branch",
            "SEMESTER": "semester",
            "ON": "on"
        },
        "DATA": {
            "TABLE": {
                "code1": [
                    "subject",
                    "credits",
                    "grade"
                ],
                "code2": [
                    "subject",
                    "credits",
                    "grade"
                ]                       
            },
            "GPA": "gpa",
            "CGPA": "cgpa"
        }
    }
]

needed cloumns are id,name,course,branch,semester,on,code1(subject),code2(subject),gpa,cgpa

Answers

This discussion has been closed.