I want to update the 'status' column of the table with respective id , but it leads me to error code 1093. Below is my SQL Query
Update site_html Set status='Update Found'
Where id = (
select id
from site_html
where link='http://www.example.com');
How can i correct this error? I am new to SQL .