Author: shankshank
Date: Sep 20, 2008 15:23
I need someone versed in VFP 6.0 SQL synatx.
This query works fine and does as expected...
UPDATE CT ;
SET CT.SID = "JS" ;
WHERE CT.SID = "JA"
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
This query updates cells with "JP" but also cells with "JPS"...
UPDATE CT ;
SET CT.SID = "JS" ;
WHERE CT.SID = "JP"
...is there a wildcard in this I'm not seeing?
How do I only update "JP" and leave "JPS" as is?
thanks
|