Click here to Skip to main content
16,014,748 members
Home / Discussions / Database
   

Database

 
AnswerRe: please help me to hw the output of the belw statement is 1200? Pin
Dave Herren24-May-07 2:49
Dave Herren24-May-07 2:49 
Question[Message Deleted] Pin
samfromcn23-May-07 22:38
samfromcn23-May-07 22:38 
AnswerRe: Which dlls do my setup package need to implement ADO compnnet? Pin
Shiv Singh Sisodiya24-May-07 1:45
Shiv Singh Sisodiya24-May-07 1:45 
AnswerRe: Which dlls do my setup package need to implement ADO compnnet? Pin
Mike Dimmick24-May-07 13:32
Mike Dimmick24-May-07 13:32 
QuestionRe: [Message Deleted] Pin
Hamid_RT24-May-07 22:04
Hamid_RT24-May-07 22:04 
AnswerRe: [Message Deleted] Pin
Colin Angus Mackay24-May-07 22:24
Colin Angus Mackay24-May-07 22:24 
Questionquery about counting records entered in same date... Pin
nareshss23-May-07 22:16
nareshss23-May-07 22:16 
AnswerRe: query about counting records entered in same date... Pin
Harini N K23-May-07 22:28
Harini N K23-May-07 22:28 
Hi

You can convert the datetime column to specific format ('mm/dd/yyyy'). Check different formats in SQL Help online. Use the converted column in group by clause. Here is the example for you. Here I have converted to mm/dd/yyyy that is format parameter is 103. You can change it to your requirement

select convert(nvarchar(12),DTimeStamp,103) as Dsb_Time, count(*) from Table1 <br />
where DTimeStamp is not null <br />
Group by convert(nvarchar(12),DTimeStamp,103)


Hope you got it

Harini

GeneralRe: query about counting records entered in same date... Pin
nareshss23-May-07 23:07
nareshss23-May-07 23:07 
AnswerRe: query about counting records entered in same date... Pin
Shiv Singh Sisodiya24-May-07 1:33
Shiv Singh Sisodiya24-May-07 1:33 
Questionfind the level of a node having not more than two nodes under him in a tree like SQL SERVER 2005 database hierarchey Pin
singhal's23-May-07 20:45
singhal's23-May-07 20:45 
QuestionDisplay latest record in sqlserver(Its urgent need)..., [modified] Pin
Member 387988123-May-07 19:54
Member 387988123-May-07 19:54 
AnswerRe: Display latest record in sqlserver(Its urgent need)..., Pin
Navneet Hegde23-May-07 21:12
Navneet Hegde23-May-07 21:12 
GeneralRe: Display latest record in sqlserver(Its urgent need)..., Pin
Member 387988123-May-07 22:59
Member 387988123-May-07 22:59 
AnswerRe: Display latest record in sqlserver(Its urgent need)..., Pin
NewWhere23-May-07 23:49
NewWhere23-May-07 23:49 
Questionclustering Pin
82.san23-May-07 19:41
82.san23-May-07 19:41 
AnswerRe: clustering Pin
Navneet Hegde23-May-07 21:23
Navneet Hegde23-May-07 21:23 
GeneralRe: clustering Pin
82.san23-May-07 21:34
82.san23-May-07 21:34 
GeneralRe: clustering Pin
Expert Coming24-May-07 21:03
Expert Coming24-May-07 21:03 
Questionquery to count orders for particular date disp by datewise Pin
nareshss23-May-07 19:16
nareshss23-May-07 19:16 
AnswerRe: query to count orders for particular date disp by datewise Pin
_Damian S_23-May-07 19:23
professional_Damian S_23-May-07 19:23 
GeneralRe: query to count orders for particular date disp by datewise Pin
nareshss23-May-07 19:37
nareshss23-May-07 19:37 
GeneralRe: query to count orders for particular date disp by datewise Pin
shally_7924-May-07 1:58
shally_7924-May-07 1:58 
Questionhow to find the 10th highest paid employee in an employee table Pin
saravanan0523-May-07 19:00
saravanan0523-May-07 19:00 
AnswerRe: how to find the 10th highest paid employee in an employee table Pin
Blumen23-May-07 19:17
Blumen23-May-07 19:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.