You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
REATE DATABASE opentutorials CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE TABLE topic ( id int(11) NOT NULL AUTO_INCREMENT, title varchar(100) NOT NULL, description text NOT NULL, author varchar(30) NOT NULL, created datetime NOT NULL,
PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
데이터베이스 강의 내용에 따라 프로토콜에서
데이터 베이스를 만들었는데요 데이터베이스를 삭제할려면 어떻게 해야 하나요?
The text was updated successfully, but these errors were encountered:
REATE DATABASE opentutorials CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE TABLE
topic
(id
int(11) NOT NULL AUTO_INCREMENT,title
varchar(100) NOT NULL,description
text NOT NULL,author
varchar(30) NOT NULL,created
datetime NOT NULL,PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
데이터베이스 강의 내용에 따라 프로토콜에서
데이터 베이스를 만들었는데요 데이터베이스를 삭제할려면 어떻게 해야 하나요?
The text was updated successfully, but these errors were encountered: