Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to do
Message
De
23/04/2008 01:56:47
Lutz Scheffler
Lutz Scheffler Software Ingenieurbüro
Dresden, Allemagne
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Titre:
How to do
Versions des environnements
Visual FoxPro:
VFP 9 SP2
OS:
Windows XP SP2
Database:
Visual FoxPro
Divers
Thread ID:
01312556
Message ID:
01312556
Vues:
62
Hi All,

today I have little problem. I need an idea for an SQL SELECT.

Given is a table like

dDate, nValue
2008-1-1,1
2008-1-13,2
2008-1-11,5
2008-1-10,4
2008-1-2,3


the result should be
dDate, nValue(formula)
2008-1-1,1-nValue from 2008-1-2
2008-1-2,3-nValue from 2008-1-10
2008-1-10,4-nValue from 2008-1-11
2008-1-11,5-nValue from 2008-1-13
2008-1-13,2-0

so the result should hold the date and the value of this day minus the value of the next ordered day.
Till now I do something like
SELECT;
 dDate,;
 nValue,;
 CAST(0 AS i) AS iId;
 FROM curSource AS Cur1;
 INTO CURSOR curOrdered READWRITE;
 ORDER BY 1

REPLACE;
 iId WITH RECNO()

SELECT;
 Cur1.dDate,;
 Cur1.nValue-NVL(cur2.nValue,0);
 FROM curOrdered AS Cur1;
 LEFT OUTER JOIN curOrdered AS cur2;
 ON Cur1.iId+1=cur2.iId
How can I do this without the replace, oossibly in one SELECT?

Agnes
Words are given to man to enable him to conceal his true feelings.
Charles Maurice de Talleyrand-Périgord

Weeks of programming can save you hours of planning.

Off

There is no place like [::1]
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform