vote up 0 vote down star

I want to display max time and min time for a day in grid control using visual basic from sql database. table column are:- UserID,UserName,Date,Time 1 Shanks 30/1/2009 10:11:22 1 Shanks 30/1/2009 10:15:22 1 Shanks 30/1/2009 12:15:22 1 Shanks 30/1/2009 13:15:22

output must be in grid 1 Shanks 30/1/2009 10:11:22 13:15:22

flag
what data type is the time field? – shahkalpesh Jul 24 at 18:13
what database? access/oracle/sqlserver/mysql? – shahkalpesh Jul 24 at 18:24
sql server 2005 – Shanks Jul 24 at 18:36

1 Answer

vote up 0 vote down check

I'm going to assume your table structure is something like this

CREATE TABLE mytable (UserID integer, UserName varchar(20), [Date] datetime, [Time] varchar(8))

your time is stored as a varchar field because there is no time type in sql2005. This will display the min and max time per each user and date. There are two options, the first if your times are HH:MM:SS then you can just use the convert function. The second shows you an example of parsing it and building the date yourself.

SELECT
   UserID,
   UserName,
   [Date],
   CONVERT(varchar, MIN(CONVERT(datetime, [Time], 108)), 108),
   CONVERT(varchar, MAX(CONVERT(datetime, [Time], 108)), 108)
FROM mytable
GROUP BY UserID, UserName, [Date]
ORDER BY UserID, [Date]


SELECT
   UserID,
   UserName,
   [Date],
   CONVERT(varchar, MIN(DATEADD(second, CAST(SUBSTRING(Time, 7, 2) AS integer), DATEADD(minute, CAST(SUBSTRING(Time, 4, 2) AS integer), DATEADD(hour, CAST(SUBSTRING(Time, 1, 2) AS integer), 0)))), 108),
   CONVERT(varchar, MAX(DATEADD(second, CAST(SUBSTRING(Time, 7, 2) AS integer), DATEADD(minute, CAST(SUBSTRING(Time, 4, 2) AS integer), DATEADD(hour, CAST(SUBSTRING(Time, 1, 2) AS integer), 0)))), 108)
FROM mytable
GROUP BY UserID, UserName, [Date]
ORDER BY UserID, [Date]
link|flag
Thanks Will Rickards – Shanks Jul 26 at 16:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.