What would be the syntax in SQL Server 2012 for the following MySQL Sql query:
select title,description,tags,post_date
from myvids order by title desc
limit 0,20
Ref: Use LIMIT to paginate results in MySQL query
I want change the database to SQL Server.
TIA