次のようなテーブルがあります。
+------+-----------------------------+---------+
| date | test | number |
+------+-----------------------------+---------+
| 12.1 | hello! | 10 |
| 12.1 | hello and welcome! | 15 |
| 12.2 | come here! | 20 |
| 12.2 | come here and do something! | 10 |
+------+-----------------------------+---------+
12.1
日付と日付の行が12.2
異なる時間に挿入されます。最新の挿入行を選択できますか? 結果として:
+------+-----------------------------+---------+
| date | test | number |
+------+-----------------------------+---------+
| 12.1 | hello and welcome! | 15 |
| 12.2 | come here and do something! | 10 |
+------+-----------------------------+---------+