DB 테이블 생성 > PHP 프로그래밍

본문 바로가기

PHP 프로그래밍

PHP 프로그래밍

1. DB 테이블 생성

페이지 정보

작성자 관리자 댓글 0건 조회 2,762회 작성일 22-01-13 19:01

본문

1. DB 테이블 생성

다음 SQL을 사용하여 테이블을 추가한다.


create table bbs (

    b_no int unsigned not null primary key auto_increment,

    b_subject varchar(100) not null,

    b_content text not null,

    b_date datetime not null,

    b_hit int unsigned not null default 0,

    b_id varchar(20) not null,

    b_pw varchar(50) not null

);



1.PNG





Copyright © LEELAB.CO.KR. All rights reserved.