-
Notifications
You must be signed in to change notification settings - Fork 51
Closed
Description
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;
데이터베이스 강의 내용에 따라 프로토콜에서
데이터 베이스를 만들었는데요 데이터베이스를 삭제할려면 어떻게 해야 하나요?