How To Select First Row Of Database Sql

[Solved] How To Select First Row Of Database Sql | Excel - Code Explorer | yomemimo.com
Question : how to select first row of database sql

Answered by : adnan-malik

-- select the first row of database table
select * from company limit 1
----For DB2
SELECT * FROM table_name FETCH FIRST 20 ROWS ONLY

Source : | Last Update : Tue, 21 Sep 21

Answers related to how to select first row of database sql

Code Explorer Popular Question For Excel