Hi,
My table has int Field1 and DateTime dtModificationT ime. I maintain a
history of changes to the table by inserting a new record with a new
dtModificationT ime. I need to be able to find the last inserted
record. It's easy to do Select * from table where field1=x ORDER BY
dtModificationT ime. That works, but it hits all the records that
match the field. I need to come back with an exact hit. Can someone
point me in the right direction?
Thanks.
Comment