Created
September 30, 2020 16:04
-
-
Save jimi008/aacbe4d364adbb77e7d3f40462fd9009 to your computer and use it in GitHub Desktop.
RPA Fraud Detection
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 * | |
FROM transaction_data | |
LIMIT 10; | |
--2 | |
SELECT full_name, email | |
FROM transaction_data | |
where zip = 20252; | |
--3 | |
SELECT full_name, email | |
FROM transaction_data | |
where full_name = 'Art Vandelay' or full_name LIKE '%der'; | |
--4 | |
SELECT ip_address, email | |
FROM transaction_data | |
where ip_address LIKE '10.%'; | |
--5 | |
SELECT email | |
FROM transaction_data | |
where email LIKE '%temp_email.com'; | |
--6 | |
SELECT * | |
FROM transaction_data | |
WHERE ip_address LIKE '120.%' and full_name LIKE 'John%'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment