Skip to content

Instantly share code, notes, and snippets.

@jimi008
Created September 30, 2020 16:04
Show Gist options
  • Save jimi008/aacbe4d364adbb77e7d3f40462fd9009 to your computer and use it in GitHub Desktop.
Save jimi008/aacbe4d364adbb77e7d3f40462fd9009 to your computer and use it in GitHub Desktop.
RPA Fraud Detection
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