'
REMOTE_ADDR: 216.73.216.209


INSERT INTO video_table
            (vd_id, vd_theme_codes, vd_title, vd_subtitle, vd_description,
                vd_timestamps, vd_published, vd_image)
            VALUES('8SuED0q6wA8',
                'recent;',
                'Get These Tasty Chords in Your Fingers! ',
                ' Embraceable You',
                'It\'s not about Embraceable You, it\'s about the chords in it and how nice they sound either alone or in a progression. So many songs use these chords and so many songs are written in Eb so do yourself a favour and get familiar with them today!',

                '',
                '2025-12-09',
                'https://i.ytimg.com/vi/8SuED0q6wA8/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)
                    ;