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 |
|
aoriju
Posting Yak Master
156 Posts |
Posted - 2008-09-06 : 03:34:45
|
| How to get the time part from a datetime picker in SSRS 2005 |
|
|
ma.voice
Starting Member
12 Posts |
Posted - 2008-09-06 : 14:05:43
|
| You can use T-SQL query and use datename() ... try following codeselect datename(hh,getdate())+'-'+datename(mi,getdate())+'-'+datename(ss,getdate())Cheers.Silent VoiceBill Gates, MVP |
 |
|
|
jimf
Master Smack Fu Yak Hacker
2875 Posts |
Posted - 2008-09-06 : 15:48:23
|
| I'm not sure about the SSRS part, but you could doSELECT CONVERT(varchar(8),datename,108) in T-SQLJim |
 |
|
|
|
|
|