Below is an example of the original CSV to SQL and the result.
Original CSV to SQL Examplealbum, year, US_peak_chart_post yttags, 2022, - pakainfo, 2018, - infogreeper, 20.01, 61 infinity, 2003, 6 guest-posting-sites, 2005, 3 webix-infoway, 2007, 2 healthkeet, 2010, 11 seokeet, 2011, -
And an example of how the online CSV to SQL works.
CSV to SQL Result/* CREATE TABLE */ CREATE TABLE IF NOT EXISTS TABLE_NAME( album VARCHAR( 100 ), year DECIMAL( 10 , 2 ), US_peak_chart_post VARCHAR( 100 ) ); /* INSERT QUERY */ INSERT INTO TABLE_NAME( album,year,US_peak_chart_post ) VALUES ( 'yttags', 2022,' -' ); /* INSERT QUERY */ INSERT INTO TABLE_NAME( album,year,US_peak_chart_post ) VALUES ( 'pakainfo', 2018,' -' ); /* INSERT QUERY */ INSERT INTO TABLE_NAME( album,year,US_peak_chart_post ) VALUES ( 'infogreeper', 20.01,' 61' ); /* INSERT QUERY */ INSERT INTO TABLE_NAME( album,year,US_peak_chart_post ) VALUES ( 'infinity', 2003,' 6' ); /* INSERT QUERY */ INSERT INTO TABLE_NAME( album,year,US_peak_chart_post ) VALUES ( 'guest-posting-sites', 2005,' 3' ); /* INSERT QUERY */ INSERT INTO TABLE_NAME( album,year,US_peak_chart_post ) VALUES ( 'webix-infoway', 2007,' 2' ); /* INSERT QUERY */ INSERT INTO TABLE_NAME( album,year,US_peak_chart_post ) VALUES ( 'healthkeet', 2010,' 11' ); /* INSERT QUERY */ INSERT INTO TABLE_NAME( album,year,US_peak_chart_post ) VALUES ( 'seokeet', 2011,' -' );