Access question

  • Thread starter Thread starter MIchael
  • Start date Start date
M

MIchael

How can I run a query and delete all records that have
descriptions with the same letter, say if the letter
is 'G'?
I am new to access and trying to figure out how to
approach this one.
I would appreciate any help!
Thanks!
 
MIchael said:
How can I run a query and delete all records that have
descriptions with the same letter, say if the letter
is 'G'?
I am new to access and trying to figure out how to
approach this one.
I would appreciate any help!
Thanks!


DELETE MyTable
WHERE MyColumn LIKE "*G*";


Sincerely,

Chris O.
 
Back
Top