Created
February 4, 2015 15:05
-
-
Save GreatPotato/987d389b2f2d18a7361b to your computer and use it in GitHub Desktop.
Get incorrect timezone payments from PayPal
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT DateTime, `Time Zone`, Name, Currency, Gross, `Transaction ID`, Type | |
| FROM transactions | |
| WHERE TIME(DateTime) BETWEEN '00:00:00' AND '00:59:59' | |
| AND (Type = 'Website Payments Pro API Solution' OR Type = 'Shopping Cart Payment Received') | |
| AND `Time Zone` = 'BST' | |
| AND DateTime > '2014-09-22 00:00:00' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment