Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Subquery in UPDATE SQL?
Message
From
15/07/2004 16:28:43
John Baird
Coatesville, Pennsylvania, United States
 
 
To
15/07/2004 16:19:46
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00924713
Message ID:
00924906
Views:
14
Nah .. she got the correct answer anyway.... At least I can admit when I'm wrong..




>Are you going to correct your post to Brenda?
>
>>Thanks... learn something new everyday...
>>
>>
>>
>>>Try this
>>>
>>>------------------------------------------------------------------
>>>* TestUpdateSubQuery.prg
>>>
>>>LOCAL i
>>>
>>>#DEFINE TEST_RECORD 10
>>>
>>>CREATE TABLE TestUpdate FREE ( ;
>>> pkey i( 4 ), ;
>>> datavalue i( 4 ) ;
>>> )
>>>
>>>FOR i = 1 to 10 STEP 1
>>> INSERT INTO TestUpdate ( pkey, datavalue ) ;
>>> VALUES ( i, i )
>>>ENDFOR
>>>
>>>SELECT * FROM TestUpdate
>>>
>>>SELECT * FROM TestUpdate WHERE pkey == TEST_RECORD INTO CURSOR rcurRefUpdate
>>>
>>>UPDATE TestUpdate ;
>>>SET datavalue = GetNewValue() ;
>>>WHERE pkey IN ( ;
>>> SELECT pkey FROM rcurRefUpdate ;
>>> )
>>>
>>>SELECT * FROM TestUpdate
>>>
>>>CLOSE ALL
>>>
>>>RETURN .T.
>>>
>>>
>>>FUNCTION GetNewValue()
>>>
>>>RETURN 25
>>>
>>>----------------------------------------------------------------------
>>>
>>>This is a simple example, but it illustrates that a column in a subset of rows can be updated (to a single value) in this fashion.
>>>
>>>Hope this helps,
>>>
>>>John
Previous
Reply
Map
View

Click here to load this message in the networking platform