|
Posted by Erland Sommarskog on 08/14/07 21:24
--CELKO-- (jcelko212@earthlink.net) writes:
>>> 1. To find the data for today, <<
>
> CREATE VIEW CurrentUserLogs (user_id, login_date, ..)
> AS
> SELECT user_id, login_date, ..
> FROM UserLogs
> WHERE login_date = CURRENT_TIMESTAMP;
>
> This VIEW will always be correct when you invoke it.
No. You need to change it to:
CREATE VIEW CurrentUserLogs (user_id, login_date, ..)
AS
SELECT user_id, login_date, ..
FROM UserLogs
WHERE login_date = convert(char(8), CURRENT_TIMESTAMP, 112)
(Or some other way to strip the time portion from CURRENT_TIMESTAMP)
--
Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se
Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodinfo/previousversions/books.mspx
[Back to original message]
|