'
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('NKtDlwSwKfA',
                'recent;',
                'Upper Chord Structures Based on Extensions (9, 11, 13) ',
                ' The REAL Jazz Sounds!',
                'In addition to this video on upper chord structures (triads), I created a now one-page obviously free PDF providing you with the ones which work, based on all extensions (using major and minor triads). Link below. In this video, I demonstrate the philosophy, provide some examples and encourage you to explore and find your favourites. The document provides a few more chords and encourages you to experiment with even 4-note UCSs.',

                '',
                '2025-09-01',
                'https://i.ytimg.com/vi/NKtDlwSwKfA/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)
                    ;