I have tried this which did not work.
select top 5 * from [Table_Name]
I have tried this which did not work.
select top 5 * from [Table_Name]
An equivalent statement would be
select * from [TableName] limit 5
TOP and square brackets are specific to Transact-SQL. In ANSI SQL one uses LIMIT and backticks (`).
select * from `Table_Name` LIMIT 5;