'
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('oPI8wjJMFQI',
                'recent;',
                'Probably Time to Starting Learning This Classic! ',
                ' Jazz Piano Tutorial w/ Sweet Chords',
                'I know, I know, it\'s that time of year again but this time you\'re going to be able to play a couple of Christmassy songs and astonish your unsuspecting listeners with tasty jazz chords and confident melody lines. This is the first of a few quick Xmas song tutorials which avoid the theory and just give you the shapes you need. Feel free to request a Xmas son too.\\nWhen learning any jazz song, the focus must be on the chord progression and chord types; the melody comes last (so you can pick it up passively as I play or find it by ear yourself).',

                '',
                '2025-11-18',
                'https://i.ytimg.com/vi/oPI8wjJMFQI/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)
                    ;