INSERT INTO video_table
(vd_id, vd_theme_codes, vd_title, vd_subtitle, vd_description,
vd_timestamps, vd_published, vd_image)
VALUES('G_AzCp9fiaw',
'recent;',
'So You\'d Like to Become a Virtuoso Pianist? ',
' 7 Endurance \\u0026 Precision Exercises to Help',
'Virtuosity doesn\'t only mean playing fast; it implies endurance, fluidity, precision, total keyboard orientation, chromatic, scale and chord ease and hand independence... all without conscious interference. Herein, I provide 7 exercises for you to do daily, eyes closed as often as possible, starting them first at your natural limit (identified with a metronome) and then pushing up the BPM by 10-15 each time. Within a dew hours to weeks, you\'ll be amazed at your improvements!',
'\\n00:00 - Tendon warm-ups\\n01:06 - Chromatic pattern\\n03:15 - Glistening arpeggios\\n06:33 - Accompanied chromatics\\n08:01 - Stepped octaves\\n10:32 - Chromatic to chord\\n12:18 - Black note combinations\\n13:48 - The Butterfly!\\n18:08 - Final words\\n\\n',
'2025-09-07',
'https://i.ytimg.com/vi/G_AzCp9fiaw/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)
;