i'm having a problem with malformed html syntax in my database (eg. & instead of &) - is there a way to run a sql query which will search in all textfields?
thanks
i'm having a problem with malformed html syntax in my database (eg. & instead of &) - is there a way to run a sql query which will search in all textfields?
thanks
There's no query syntax more sophisticated than the obvious: searching one column at a time with LIKE.
If your db is not yet very large you could try dumping it out. Then use a text editor to search the resulting dump file. You may also be able to correct the mistakes with your text editor, and then reload the dumped tables.
But be careful! It may be desirable to store entitized chararacters ( ≤ > & etc ) instead of their raw text counterparts in your tables.