'
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('960PitjaIU8',
                'recent;',
                'From Chaos to Refinement ',
                ' Improvisation for Beginners',
                'Still on the topic of improvisation, this time I take you on a step-by-step journey from playing anything to using a major scale and emphasising nice notes, using space and being melodic. Combine this with my previous, linked-to, videos.',

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