Microsoft
Software
Hardware
Network
Question : MS Access to do select statement with first three characters starting with ABC
HI
In MS Access how can I do a select statement that selects all fields that start with ABC? I want to select these fields then chop off the ABC bit, ie do an update.
Ideally I want to just write pure SQL and use the expression builder
Answer : MS Access to do select statement with first three characters starting with ABC
here is the select query
select [Fieldname] from Tablex
where [FieldName] Like "ABC*"
to do an update removing the ABC part
update tableX
set [FieldName]=mid([FieldName
],4)
where [FieldName] Like "ABC*"
Random Solutions
MsgBox firing twice during OnCurrent event ???
Applying Adobe patch with a .msp file using Group Policy
Video examples for Inner join with 2 databases
several users write to an xls sheet at the same time
help with an sql join query?
How to get local IP of Windows CE device.
Tif File Association in IE
Error Calling Stored Proc
Client laptops slow boot up, stuck on applying computer settings for a few minutes
Connecting an Exisitng Database to Sharepoint