INSERT INTO video_table
(vd_id, vd_theme_codes, vd_title, vd_subtitle, vd_description,
vd_timestamps, vd_published, vd_image)
VALUES('9pOGGn_ju-0',
'recent;',
'LH Stride Piano + RH Blues Piano ',
' Playing Sweet Stuff Quickly',
'If you\'re not sure of what to play but want to sound good quickly, get the C blues scale down and practise a simple left hand stride pattern over the 12 bar blues. I provide a few variations on that. Mess around and see what happens!',
'\\n00:00 - Intro\\n00:28 - Inverting the blues scale\\n01:17 - LH discussion\\n02:22 - Fancy chord options\\n03:52 - 12 bar structure\\n04:55 - variation\\n\\n',
'2025-06-19',
'https://i.ytimg.com/vi/9pOGGn_ju-0/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)
;