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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SQL command to prepend in a field of Access database

Status
Not open for further replies.

ashw

MIS
Jun 10, 2002
61
CA
Hi,
I need a SQl command to prepend " before data already existing in a field of access database. Please help,
Thanks
 
UPDATE
tablename
SET
myfield = ' + myfield
WHERE
whatever = whatever

The WHERE clause is optional if you want to update every column in each row.

-Tek
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top