How do I make this a select statement?
This is for Microsoft access.
I want it to look everywhere and in any part of any cell in an entire table and find “Coal 104” and replace it with “Lava 104”
How do I make this a select statement? This is for Microsoft access. I
Share
You could do it with VBA code. You’d need to iterate through all the tables in your database, and for each table, iterate through all the fields.
With each field, create a sql statement to update the rows containing your search value and replace it with your target value. Then execute your dynamic sql statement.