Skip to content

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

Notifications You must be signed in to change notification settings

rushilsharma1/FinancialDataset_FraudDetection_Analysis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

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 );

About

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

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published