INSERT INTO video_table
(vd_id, vd_theme_codes, vd_title, vd_subtitle, vd_description,
vd_timestamps, vd_published, vd_image)
VALUES('jPTLe4W5ESY',
'recent;',
'My First 6 Months at the Piano ',
' Do What I Did in the Practice Rooms!',
'I started when I was around 14 at school and spent most lunchtimes in the practice rooms of the music department, often annoying the language teachers who had to endure rapid arpeggios and major scale exercises for 45 minutes a day - I did play songs too sometimes though! In this video, I wrote down about 11 things I used to do daily because I really want you, whatever your level, to do the same. Even if you only take 1 or 2 things from this longer-than-usual-for-a-reason video, it would have been worth it!',
'\\n00:00 - Major scale poking\\n03:37 - Chromatic scale precision/rapidity\\n06:22 - Chord stuff\\n09:23 - Cycle of fourths stuff\\n10:20 - Finger combinations\\n12:43 - Rapid arpegggios\\n15:19 - 251 chords and melodies\\n20:05 - Any chord, any key challenge\\n22:02 - Finger alternations\\n24:31 - Repertoire\\n26:30 - Ragtime stride stuff\\n29:10 - Final words\\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-11-16',
'https://i.ytimg.com/vi/jPTLe4W5ESY/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)
;