0

次のようなテーブルがあります。

+------+-----------------------------+---------+
| 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      |
+------+-----------------------------+---------+
4

4 に答える 4

0

新しいフィールドを作成したい場合、created_at with datatype (timestamp) and ORDER BY created_at DESC または を使用していた場合は作成できfield idますORDER BY id DESC

于 2013-04-11T02:47:43.803 に答える