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
How many servers would I need for 100 concurrent users for terminal services?
All mailboxes in mailbox store in exchange have disapeared
How do I check for a duplicate record?
Strange recycling of ASP.NET worker process without hitting any pre-defined limits!
Access Database Will Not Open - Error "Not a Valid Bookmark"
Inventory Allocation and FIFO
ASP.NET Gridview with linkbutton
Checking Value of Import Text File
CertSelectCertificate hook Callback Function does not get called
Formatting columns in SSRS Report Builder