Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は1列の名前を持っています:PersonIDそれは名前ex john doeを含んでいます
PersonID
Table name: Person Column name: PersonID line1: John Doe line2: Doe john
今、最後の行を抽出しますか?
このコードは合計行数を返しますが、行のテキストは返しません
SELECT "PersonID", COUNT(*) FROM "Person";
降順で並べてから、制限を使用して最後の行を返します。これで最初の位置になりました。
SELECT * FROM Person ORDER BY PersonId DESC LIMIT 1
select * from Person order by PERSONID DESC Limit 0,1