INSERT INTO video_table
(vd_id, vd_theme_codes, vd_title, vd_subtitle, vd_description,
vd_timestamps, vd_published, vd_image)
VALUES('t1QQKWOcO_Q',
'recent;',
'Improvise Based off One Common Note ',
' All Chords Like It!',
'To help with learning how to improvise, a few guidelines are useful which you then rely on less and less as you improve. One is to choose a common note across all the chords of the song and to base improvised lines on it (as in, away from and towards it). Summertime, in Am, can use D since it\'s the 11 of A, b3 of Bm7b5 and b7 of E7b9... it works nicely. Herein are a few examples of using that note. Combine this with other improvisation videos I\'ve made and you\'ll start sounding very good indeed!',
'\\n00:00 - Intro\\n00:21 - LH shapes\\n01:30 - Choosing the note of interest\\n03:09 - Choosing a pool of notes\\n04:31 - Chord tones\\n05:00 - Blues scale and more\\n05:40 - Space also a note!\\n06:23 - Melody with other notes\\n07:39 - Review\\n',
'2025-11-10',
'https://i.ytimg.com/vi/t1QQKWOcO_Q/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)
;