'
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('J1pzv9XH9dg',
                'recent;',
                'Play-Along Left-Hand Accompaniment Exercise ',
                ' Blues 6251 Progression w/ Fancy Shapes',
                'This is all about the left hand, often neglected, which accompanies rhythmically your right hand. I focus on ascending and descending octaves, give some nice chord shapes and use the 12 bar blues with a 6251 progression to give you structure. Then I play it a few times for you to play along and see if you can keep up... but it\'s not too fast!',

                '\\n00:00 - Intro\\n00:51 - Chord shapes used\\n03:05 - Stride examples\\n03:43 - Move the top note\\n04:26 - 12 bar blues structure\\n05:27 - Play along!\\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-08',
                'https://i.ytimg.com/vi/J1pzv9XH9dg/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)
                    ;