본문 바로가기

명사 美 비격식 (무리 중에서) 아주 뛰어난[눈에 띄는] 사람[것]

Database/MySQL

데이터베이스를 선택하고 CREATE하라: Error Code: 1046. No database selected Select the default DB to be used by double-clicking its name in the SCHEMAS list in the sidebar. 0.000 sec

0	25	15:04:11	CREATE table STUDENT(
  ID INT primary KEY auto_increment,
     NAME VARCHAR(20),
     SCORE INT
 )	Error Code: 1046. No database selected
 Select the default DB to be used by double-clicking its name in the SCHEMAS list in the sidebar.	0.000 sec

 

 

 

 

데이터베이스를 선택하고 CREATE하라

USE 데이터베이스

show databases;
USE MYSQL;
CREATE table STUDENT(
	ID INT primary KEY auto_increment,
    NAME VARCHAR(20),
    SCORE INT
);