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.
SQLite を使用してテーブルから最も古いレコードを削除したいので、条件 (最小の id ) を使用するか、別の解決策があります
delete from table1 as a where a.id = (select min(id) from table1)
または、日付が保存されている場合は、次のことができます
delete from table1 as a where a.[date]= (select min([date]) from table1)