'
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('tjUuJOd2PvM',
                'recent;',
                'Who Needs a Melody? ',
                ' It\'s All About (Jazz) Harmony!',
                'I get a bit concerned thinking how you\'re all doing technical exercises and/or playing stuff you already know. You don\'t need to learn melodies first when it comes to jazz; just get the chord progression down and drill it in a few different keys. Herein, I play a classic by chords alone. Isn\'t it interesting how you can kind of recognise the song (if you knew it already) without the melody? It\'s always a good way to practise the chords and performance styles, without worrying about a melody... after all, you\'ll be improvising anyway, right?',

                '',
                '2025-06-15',
                'https://i.ytimg.com/vi/tjUuJOd2PvM/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)
                    ;