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
Formatting a 60gb hard drive fails in Disk Management
Microsoft Access was unable to initialize the Windows Registry
Select Statement with Function
Message Box in access to display table cell value
Slow ODBC connection from PHP through IIS to Sql Sever 2005
SQL syntax producing duplicate results
Union All Query for Sub Report Order By
Macro not available to button properties
SelectedValue which is invalid because it does not exist in the list of items
How to set value member in listbox using Silverlight 3.0