如何取SQL結果集的第一條記錄

        在SQL Server數據庫中,使用top關鍵字:         SELECT TOP number|percent column_name(s) FROM table_name         在MySQL數據庫中,使用LIMIT關鍵字:         SELECT column_name(s) FROM table_name LIMIT number         例子:
相關文章
相關標籤/搜索