'
REMOTE_ADDR: 216.73.216.209


INSERT INTO video_table
            (vd_id, vd_theme_codes, vd_title, vd_subtitle, vd_description,
                vd_timestamps, vd_published, vd_image)
            VALUES('qgs3hiQq8qo',
                'recent;',
                'Beneficial Chord Resolution Exercise ',
                ' Reinforce \\u0026 Discover Chord Shapes',
                'I used to do this many years ago and was reminded of it recently. The idea is that you choose a master key (I use C major for demo purposes) and then arrive on any note of the major scale via that note\'s 5 chord - and later, its 2-5 chords. I show you how to embellish a 5 chord too. After this, always return to your chosen master key\'s 1 chord via its own 5 chord. When ready, aim for notes outside the major scale.',

                '',
                '2025-12-13',
                'https://i.ytimg.com/vi/qgs3hiQq8qo/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)
                    ;