表更新/修改语法:
update 表名
set 列名=新值,列名=新值...
where 筛选条件

UPDATE titles_test 
SET to_date=NULL, from_date='2001-01-01'
WHERE to_date='9999-01-01';