'
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('vo1DtBSgEGY',
                'recent;',
                'Do You Literally Have a Minute or Two? ',
                ' Six Daily Ideas for When You Have \'No Time\'',
                'I don\'t believe you can\'t find 5 minutes a day to improve your piano skills (major scale shapes, precision, hand coordination, triads, octaves, etc). I just don\'t! So I have made this little video to give you six very easy things to do; things that even if you don\'t yet know them, you can learn them very very quickly and then start doing them. You don\'t even need to do them all in one session and you don\'t even need to sit down! Just choose 2 or 3 and do them for 2-3 minutes twice a day or whenever you walk past your keyboard/piano. These things are behind any repertoire you wish to play so it\'s not about jazz or classical and depending on your level, you can personalise them even further and make them even more difficult. Just do them for 3-5 minutes a day!',

                '',
                '2025-11-23',
                'https://i.ytimg.com/vi/vo1DtBSgEGY/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)
                    ;