Wrox Programmer Forums
Go Back   Wrox Programmer Forums > PHP/MySQL > MySQL
|
MySQL General discussion about the MySQL database.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the MySQL section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 13th, 2003, 09:08 AM
Authorized User
 
Join Date: Jun 2003
Posts: 32
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to arshad mahmood
Default How to retreive record ...

Hello Sir
In SQL server is it possiable to retreive the record
where table.date=System date.
i have wrote the query like

SELECT * FROM Table1 WHERE Table1.Date=(SELECT

getdate());

But it returns the empty record.

Can any one Guide me .

Thanks.

arshad mahmood
__________________
arshad mahmood
 
Old August 13th, 2003, 09:21 AM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 839
Thanks: 0
Thanked 1 Time in 1 Post
Default

Your question really belongs in the SQL Server group, not in a group for the MySQL product.

Datetime datatypes store both the date andthe time, so your query will only select rows where the column in question is exactly equal to right now, which is quite unlikely...

Jeff Mason
Custom Apps, Inc.
www.custom-apps.com
 
Old August 14th, 2003, 02:18 AM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 2,480
Thanks: 0
Thanked 1 Time in 1 Post
Default

If you are looking to list the reocrds that match for today...then use the following.

Select * from <TABLE_NAME> where <DATE_COLUMN>=CURDATE()
                OR
Select * from <TABLE_NAME> where <DATE_COLUMN>=CURRENT_DATE()

If you are looking for records to be listed for current time...
then you can use

Select * from <TABLE_NAME> where <DATE_COLUMN>=NOW()

Hope this helps.

Regards,
Vijay G





Similar Threads
Thread Thread Starter Forum Replies Last Post
retreive data from database eugz Beginning PHP 2 February 15th, 2006 08:45 PM
Retreive latest and greatest record alexvgs Oracle 3 April 25th, 2005 09:57 PM
Is there a way to retreive the number or recrods.. kyootepuffy Classic ASP Databases 3 August 20th, 2003 01:47 AM
How to retreive record ... arshad mahmood SQL Server 2000 1 August 16th, 2003 01:38 AM
Retreive Record arshad mahmood VB Databases Basics 2 July 23rd, 2003 08:07 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.