An open API service indexing awesome lists of open source software.

https://github.com/rushilsharma1/financialdataset_frauddetection_analysis

Analysis of the fraud detection from the financial dataset using sql workbench and command line
https://github.com/rushilsharma1/financialdataset_frauddetection_analysis

command-line dataanalysis datascience insights sql sqlquery sqlworkbench

Last synced: 4 months ago
JSON representation

Analysis of the fraud detection from the financial dataset using sql workbench and command line

Awesome Lists containing this project

README

          

# FinancialDataset_FraudDetection_Analysis

IN MQL 8.0 COMMAND LINE

LOAD DATA INFILE "D:/MYSQL/Bank data set/PS_20174392719_1491204439457_log.csv" INTO TABLE transactions FIELDS TERMINATED BY ',' ENCLOSED BY '"' LINES TERMINATED BY '\n' IGNORE 1 ROWS;

use bank;

CREATE TABLE transactions ( step INT, type VARCHAR(20), amount DECIMAL(15,2), nameOrig VARCHAR(20), oldbalanceOrg DECIMAL(15,2), newbalanceOrig DECIMAL(15,2), nameDest VARCHAR(20), oldbalanceDest DECIMAL(15,2), newbalanceDest DECIMAL(15,2), isFraud TINYINT, isFlaggedFraud TINYINT );