Translation of "Chapter 3. Wrong data in database or what to do with problem DML query." of "Methods for searching errors in SQL application" just published.
This is short chapter which discuss single method of
dealing with mysterious DML query.
Chapter 3. Wrong data in database or what to do with problem DML
query.
Problems with wrong data happens not only with SELECT queries
like
cases we discussed in chapter 2, but in cases of querires which
modify
data: DML queries.
Lets discuss example below
mysql> create table t1(f1 int);
Query OK, 0 rows affected (0.01 sec)
…