Question: CREATE TABLE ` census ` ( ` usid ` int NOT NULL, ` age ` int NOT NULL, ` workclass ` varchar ( 6 4

CREATE TABLE `census`(
`usid` int NOT NULL,
`age` int NOT NULL,
`workclass` varchar(64) DEFAULT NULL,
`fnlwgt` int NOT NULL,
`education` varchar(64) NOT NULL,
`education_num` int NOT NULL,
`marital_status` varchar(64) NOT NULL,
`occupation` varchar(64) NOT NULL,
`relationship` varchar(64) NOT NULL,
`race` varchar(64) NOT NULL,
`sex` varchar(16) NOT NULL,
`capital_gain` int NOT NULL,
`capital_loss` int NOT NULL,
`hours_per_week` int NOT NULL,
`native_country` varchar(64) NOT NULL,
`label` char(5) NOT NULL,
PRIMARY KEY (`usid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!