Write SQL code to create a table named Song. The Song table…

Write SQL code to create a table named Song. The Song table should include the following columns: ID — integer Title — variable-length string with a maximum length of 50 characters Artist — variable-length string with a maximum length of 50 characters AlbumID — integer; the value must exist in the Album table or be NULL. Define a foreign key constraint so that when the referenced AlbumID is deleted or updated in the Album table, the corresponding Song.AlbumID is set to NULL.