티스토리 뷰

MySQL

190829_01 기본문

猫猫 2019. 8. 30. 17:24
반응형
USE studyDB;
create table test(id INT);
insert into test values(1);
insert into test values(110);
insert into test values(500);
select * from test;
create table test1(id int primary key not null, name char(10));

insert into test1 (40, 'test');
select * from test1;

반응형

'MySQL' 카테고리의 다른 글

mysql max_allowed_packet 에러  (0) 2019.09.03
190830 기본 명령문 예제  (0) 2019.08.30
190829 기본 명령문 예제  (0) 2019.08.30
190829 DB insert into 기본  (0) 2019.08.30
mysql 에서 sql파일 import 하는 법  (0) 2019.08.30