'
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('LytTpb64XnI',
                'recent;',
                'Do You Know the 4 Primary Chord Types? ',
                ' 5 Mins @ the Piano - Part 8',
                'You simply can\'t play anything if you don\'t know chords so begin with this video: learn that a chord is built up from the major scale using 1 3 5 7 and that the third and 7th can be lowered to create 4 variants. Get used to playing them with both hands and try moving around the circle of fourths as a way to practise them and see their shapes immediately in each new key.',

                '',
                '2025-06-22',
                'https://i.ytimg.com/vi/LytTpb64XnI/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)
                    ;