티스토리 뷰
mysql 테이블 생성하기(create table)
명령어 create table 이름
실습예제
MariaDB [opentutorials]> create table topic(
-> id int(11) not null auto_increment,
-> title varchar(100) not null,
-> description text null,
-> created datetime not null,
-> author varchar(30) null,
-> profile varchar(100) null,
-> primary key(id));
Query OK, 0 rows affected (0.16 sec)
설명:
not null => 값이 없는 것을 허용하지 않는다.
null => 값이 없는것도 허용함.
auto_increment => 1씩 자동 증가.
varchar(100) => 여기서 100은 100글자까지 제한함.
primary key(id) => id는 중복 안됨.
'프로그래밍 > C#' 카테고리의 다른 글
mysql select문 실습 (0) | 2018.09.21 |
---|---|
mysql 테이블 insert 실습 (0) | 2018.09.21 |
mysql 데이터베이스 생성 기본명령어 (0) | 2018.09.21 |
라즈베리파이에서 mysql 접속하기 (0) | 2018.09.21 |
맥 터미널에서 MySQL 접속하기 (0) | 2018.09.21 |
댓글