I have a basic question: how to query a mysql that queries all tables, but line 8 and row Except 13?
Select * from the table where // is not in line 8 and line 13. Id (id = 8 and id = 13) id | Name 1 | A 2 B3 | C4 | D5 | E6 | F 7 G8 Except for H // line 8. I 10 J11 | A 12 L13 |
Try no in addition to M / Select col1, col2, ..., yourtable WHERE id from coltable is not (8, 13)
Comments
Post a Comment