Anyone know how to extract the date from a datetime stamp as part of the where clause?
eg.
select *
from tableA
where date between '01/08/2009' and '31/08/2009'
(Date is a timestamp!)
Many thanks, Fiona
|
|
Anyone know how to extract the date from a datetime stamp as part of the where clause? eg.
(Date is a timestamp!) Many thanks, Fiona |
|||
|
|
If a real datetime value, not TIMESTAMP/ROWVERSION which is binary(8)...
|
||
|
|
|
|
If this is sql server, it's not possible. The timestamp data type's name is misleading, as it does not store any date information of any kind. All it holds is a sequential value that allows you to establish record order (eg, item A was created before item B), and therefore you don't have enough information in that column alone to know on what day the row was created. Since the link I provided is Sql Server 2000 specific, also check this link for information on SQL Server 2008:
To build a real timestamp column in Sql Server, use a DateTime (or DateTime2) data type and set it's default value to |
|||
|
|
DATEin SQL Server 2008 which represents just the date portion - no time. – marc_s Sep 7 at 17:05TIMESTAMPthen it's really not a date/time stamp but an arbitrary binary value – marc_s Sep 7 at 17:05