: mysql> create table my_test_table (
: -> id tinytext not null,
: -> name tinytext,
: -> email tinytext
: -> primary key(id)
: -> );
: ERROR 1046: No Database Selected
: mysql> create table my_test_table (
: -> id int(11) not null,
: -> name tinytext,
: -> email tinytext,
: -> primary key(id)
: -> );
: ERROR 1046: No Database Selected
:
: 또 이런 에러가 나오네요.음 데체 뭐가 잘못인지 모르겠습니다.
: 초보를 도와주십시요..^^ 그리고 프라이머리 키에다가는 뭘 넣어야 하나요.
: 그럼,좋은 하루 되세요.
사용하려고 하는 db를 선택하세요
use 사용하려는db;