INSERT INTO video_table
(vd_id, vd_theme_codes, vd_title, vd_subtitle, vd_description,
vd_timestamps, vd_published, vd_image)
VALUES('QHQo1Rxb_cQ',
'recent;',
'Chord Spontaneity ',
' Some Game Ideas for Fluency (2/3)',
'Continuing with my spontaneity videos, I now give some examples with chords. Personalise and acquire more knowledge (from my playlists) in order to have more things to be spontaneous with! The less you question, the more fluently you\'ll play.',
'\\n00:00 - Intro\\n01:01 - First example\\n02:16 - Second example\\n03:00 - Third example\\n05:06 - Fourth example\\n06:30 - Fifth example\\n08:38 Sixth example\\n\\nPodcast series: https://www.youtube.com/playlist?list=PL4cPpP-Ua6NXPDTwFAHao_IiTbdVzgEV9\\n\\nPersonalised Water Pianism Syllabus: https://piano-jazz.blogspot.com/2022/04/water-pianism-syllabus.html\\n\\n',
'2025-10-09',
'https://i.ytimg.com/vi/QHQo1Rxb_cQ/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)
;