[MySQL] Titanic 예제
create database kaggle; use kaggle; CREATE TABLE `org_test_import` ( `PassengerId` int NULL, `Pclass` int NULL, `Name` text, `Sex` text, `Age` text, `SibSp` int NULL, `Parch` int NULL, `Ticket` text, `Fare` text, `Cabin` text, `Embarked` text ) ENGINE=InnoDB ; SELECT @@sql_mode; set @@sql_mode = ""; CREATE TABLE `test` ( `PassengerId` int NULL, `Pclass` int NULL, `Name` text, `Sex` text, `Age` d..
2021. 1. 11.