'
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('e__oBGOkncQ',
                'recent;',
                'The Whole-tone 251 Pattern ',
                ' A Beneficial Mastery Exercise',
                'I always encourage learning of scale and chord stuff to be anything but mindless muscle-memory shapes since this isn\'t true learning; jumping around random keys and all over the piano is so much more beneficial. However, this idea can still be used everywhere but follows an interesting idea: you play a 251 but the 1, which is M7, becomes m7 and thus the 2 of the next 251. I you continue in this way, you actually descend the whole-tone scale, of which there are two patterns: one starts from C and one from C#. This exercise descends the scale. Enjoy!',

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