INSERT INTO video_table
(vd_id, vd_theme_codes, vd_title, vd_subtitle, vd_description,
vd_timestamps, vd_published, vd_image)
VALUES('DN1qiXKs5Mw',
'recent;',
'Spontaneity (Using the Blues Scale) ',
' Stop Asking, Just Do! (Part 1/3)',
'There is knowledge behind spontaneity; that goes without saying. But once you start to use it however you wish, many ask too many questions: which octave? what fingering? can I do this or that? What chords? Is this ok? The answer is: just play you. This is the answer to such paralysing questions.',
'\\n00:00 - Intro\\n00:45 - Painter analogy\\n01:42 - Blues example\\n04:04 - Using major scales\\n04:45 - F# flowy example\\n05:01 - Other key examples\\n05:55: Melodic movement idea\\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-06',
'https://i.ytimg.com/vi/DN1qiXKs5Mw/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)
;