I'm using MySQL in particular, but I'm hoping for a cross-vendor solution. I'm using the NOW() function to add a timestamp as a column for each record.
INSERT INTO messages
(typeId, messageTime, stationId, message)
VALUES
(?, NOW(), ?, ?)
|
|
I'm using MySQL in particular, but I'm hoping for a cross-vendor solution. I'm using the NOW() function to add a timestamp as a column for each record.
|
||
|
|
|
|
|
||||||
|
|
|
If you are accessing this from an API based client (I'm guessing that is the case because of the '?'s in the query) you can do this from your program rather than through SQL. Note: The rest is for JDBC syntax, other APIs/languages will be different syntax, but should be conceptually the same. On the insert side do
On the query side do:
That should work in a portable manner. |
||
|
|
|
|
For Oracle
(The psuedo variable SYSDATE includes the time, so sysdate -1 will give you the last 24 hrs) |
||
|
|
|
|
For Sybase SQL Anywhere:
|
||
|
|
|
|
There is no cross database solution, as most of them have their own date handling (and mainly interval representation) syntax and semantics, sorry. In PostgreSQL it would be SELECT * FROM messages WHERE messagetime >= messagetime - interval '1 day' |
||
|
|
|
|
The SQL Server query is:
As far as I can tell the (untested!) MySQL equivalent is
|
||
|
|