Wrox Programmer Forums
|
VB Databases Basics Beginning-level VB coding questions specific to using VB with databases. Issues not specific to database use will be redirected to other forums.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the VB Databases Basics 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 July 23rd, 2003, 01:09 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 Retreive Record

Hello Sir
I want to retreive the record that is saved on one day before the current
date.i wrote the following query but it dose not retreive the record.

SELETC * FROM Readings WHERE Readings.Date=Date-1;

but it don't retreive record .
Have any body any idia to solve this problem.

Thanks

arshad mahmood
__________________
arshad mahmood
 
Old July 23rd, 2003, 03:35 AM
Authorized User
 
Join Date: May 2003
Posts: 62
Thanks: 0
Thanked 0 Times in 0 Posts
Default

You can not write like date = date-1. You will have to generate new date in the specified format.


Quote:
quote:Originally posted by arshad mahmood
 Hello Sir
I want to retreive the record that is saved on one day before the current
date.i wrote the following query but it dose not retreive the record.

SELETC * FROM Readings WHERE Readings.Date=Date-1;

but it don't retreive record .
Have any body any idia to solve this problem.

Thanks

arshad mahmood
Deepesh Jain
VB,VBA & .NET Specialist
Wiley Support Team
 
Old July 23rd, 2003, 08:07 AM
Authorized User
 
Join Date: Jun 2003
Posts: 91
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Give this a shot:

SELECT *
FROM Readings
WHERE Readings.Date=DateAdd("d", Date, -1);

Hope this helps......

Kenny Alligood





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
How to retreive record ... arshad mahmood MySQL 2 August 14th, 2003 02:18 AM





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