Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
sharathkatpally
Starting Member
4 Posts |
Posted - 2009-04-22 : 16:40:08
|
| Hello,I trying to do a select statement with a where clause on column name [INTGRT_TRX_DT]. The data is in this form. 2008-12-15 04:36:20.2232008-12-15 04:36:19.8872008-12-15 04:36:19.7272008-12-15 04:36:19.6872008-12-15 04:36:19.650select * from table1 where [INTGRT_TRX_DT] = '2008-12'.please helpthanks |
|
|
SwePeso
Patron Saint of Lost Yaks
30421 Posts |
Posted - 2009-04-22 : 16:42:19
|
SELECT * FROM Table1 WHERE [INTGRT_TRX_DT] >= '2008-12-01' AND [INTGRT_TRX_DT] < '2009-01-01' E 12°55'05.63"N 56°04'39.26" |
 |
|
|
|
|
|