'
REMOTE_ADDR: 216.73.216.3


INSERT INTO video_table
            (vd_id, vd_theme_codes, vd_title, vd_subtitle, vd_description,
                vd_timestamps, vd_published, vd_image)
            VALUES('xEpp622F82o',
                'recent;',
                'Modes and Diatonic Chords ',
                ' It\'s All Numbers!',
                'Understand where modes and diatonic chords come from once and for all! Of course major scale mastery is an absolute prerequisite but I have a special playlist to help you with that (linked below). At the end of the day, you simply play major scales (which have 7 notes) in the 6 other inversions, name them and then see which notes changed in the key of the note you happen to be on. It will all make sense in this full-of-examples study video!',

                '\\n00:00 - Intro with C major\\n03:52 - Note value awareness examples\\n07:15 - Diatonic chords\\n13:18 - Overlaps\\n15:20 - Locrian example\\n16:09 - Final words\\n\\n',
                '2025-08-11',
                'https://i.ytimg.com/vi/xEpp622F82o/hqdefault.jpg')
            ON DUPLICATE KEY UPDATE
                    vd_title = VALUES(vd_title),
                    vd_subtitle = VALUES(vd_subtitle),
                    vd_description = VALUES(vd_description),
                    vd_timestamps = VALUES(vd_timestamps)
                    ;