'
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('AWu_uj--C9M',
                'recent;',
                'My First Four Jazz Songs (Key of C Performances) ',
                ' Learn Some Very Common Chord Shapes',
                'As requested, a remake of an older video in which I played (probably) the very first jazz songs. I quickly play each one just so you know how they sound and then explain each one\'s chords - in brief - and show very common chord shapes that you really should get into your fingers since you\'ll see them in almost all jazz repertoire (in the key of C... by all means transpose them).',

                '\\n00:00 - Performances\\n04:50 - LH chord discussion\\n07:13 - At Last demo\\n09:15 - FMTTM\\n11:16 - Anything Goes (stride)\\n12:17 - Five Foot Two\\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-01',
                'https://i.ytimg.com/vi/AWu_uj--C9M/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)
                    ;