Matthew Hailwood b044fefc91 Difference between a single array call vs multiple calls to exclude
This table should best summarise the difference - 1 = row is visible, 0 = row is excluded

| Name | SELECT * FROM Player WHERE (FirstName != 'A' OR LastName != 'B') | SELECT * FROM Player WHERE FirstName != 'A' AND LastName != 'B' |
| A B | 0 | 0 |
| A C | 1 | 0 |
2017-10-03 16:28:08 +13:00
..
2016-04-26 00:17:09 +01:00
2016-10-13 09:39:46 -07:00
2016-04-26 00:17:09 +01:00
2016-10-27 16:16:04 +01:00
2017-05-31 09:05:05 -06:00
2017-06-13 05:37:07 +09:30