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
..
2014-12-15 09:12:47 +13:00
2014-12-15 09:12:47 +13:00
2016-02-29 17:03:22 +13:00
2015-03-23 10:15:33 +00:00
2014-12-15 09:12:47 +13:00