> irgendwie komme ich mit diesen stored procedures nicht so klar.
> 
> 
> ich will folgendes machen - ich bekomme zwei daten �bergeben 
> und drei integer-zahlen.
> 
> jetzt will ich in einer tabelle mit dieser struktur:
> ID Datum IntWert1 IntWert2 IntWert3
> 
> folgendes machen:
> (In Prosa):
> Verringere IntWert1 um @IntWert1, IntWert2  um @IntWert2, IntWert3 um
> @IntWert3 �berall, wo datum >= @datum und datum <= @Datum
> 

Setbased denken, ich versuche das mal zu �bersetzen:

UPDATE DeineTabelle SET [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED] WHERE datum >=
@datum uAND datum <= @Datum

_______________________________________________
Database.asp mailing list
[EMAIL PROTECTED]
http://www.glengamoi.com/mailman/listinfo/database.asp

Antwort per Email an