in MySQL
select * from record where register_date like \'2009-10-10%\'
What is the syntax in SQL Server?
Try this
SELECT top 10 * from record WHERE IsActive = 1 and CONVERT(VARCHAR, register_date, 120) LIKE '2020-01%'