Aug 2, 2002 #1 athos07 Programmer Aug 1, 2002 19 AU I have this database, where i have a field called BIDdate that has format "mm/dd/yyyy". i have a record of 100 of dates. How can i get the first date record and the last date record, using SQL and with out any input of date range.
I have this database, where i have a field called BIDdate that has format "mm/dd/yyyy". i have a record of 100 of dates. How can i get the first date record and the last date record, using SQL and with out any input of date range.
Aug 2, 2002 #2 BlackKnight Programmer Oct 18, 2000 348 US Hi, If I understand you correctly, you want a query that can find the earliest date and the latest date in your table. SELECT Min(table1.BIDdate) AS Startdate, Max(table1.BIDdate) AS Enddate FROM table1; Have a good one! BK Upvote 0 Downvote
Hi, If I understand you correctly, you want a query that can find the earliest date and the latest date in your table. SELECT Min(table1.BIDdate) AS Startdate, Max(table1.BIDdate) AS Enddate FROM table1; Have a good one! BK
Aug 2, 2002 Thread starter #3 athos07 Programmer Aug 1, 2002 19 AU BlackKnight thank you very much it worked both solution worked i hope i can return the favor if your going to have ur problem thank you again athos Upvote 0 Downvote
BlackKnight thank you very much it worked both solution worked i hope i can return the favor if your going to have ur problem thank you again athos