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 do I STOP a network drive from automatically mapping when I logon?
Free .NET tool to convert RTF to HTML
SBS 2008 default website conflicting with SBS Web applications
Using Range in DoCmd.TransferSpreadsheet acImport
Print Word 2003 document from Access 2003 form with contents of current record.
Create PDF in black and white, using Ghostscript
Formula for Previous Friday to Thursday
Need help getting started with n-tier design in asp.net 3.5
Using Godaddy Certificates in Windows Essential Business Server 2008
SQL select problem, if and only if using SQL 2005