Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Inserting data into a column

Status
Not open for further replies.

StacyStacy

Programmer
Apr 16, 2003
60
US
How do I insert data into a column of numereous records?

Thanks
 
I have already added a column to the table. I want to simple add the word, "WRIS" into a column named, "WRISID". How do I write that?

Thanks!
 
Here are some examples for 1 record, all records, and a subset of records. Just for future reference:

*... for one record
REPLACE wrisid WITH "WRIS"

*... for all records
REPLACE ALL wrisid WITH "WRIS"

*... for records that meet a certain criteria
REPLACE wrisid WITH "WRIS" FOR lastname = 'SMITH'


-Dave Summers-
[cheers]
Even more Fox stuff at:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top