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
Conversion failed when converting date and/or time from character string.
VMWare ESXi and Windows 2003
Concatenate ntext field with text field in SQL view
One of my Excel file always gives me a "File already open" messge.
Caluculate if met SLA for completetion of task
Terminal Server port configuration
Prompt user to verify data message when user hits add record button in access
Antivirus solution for Windows Server 2008 R2 Core.
How to zip/unzip with VB.NET?
Export Worksheets with Values and additional Code for Cell Protection