관리 메뉴

moozi

조인연습 테이블 본문

TIS_2016/안드로이드_1기

조인연습 테이블

moozi 2016. 4. 27. 13:30



-- 도서대출 테이블 생성

create table bookRent(

no int primary key not null, -- 대출번호

      id char(7) not null, -- 학번

      title varchar(20) not null, -- 책제목

      rdate varchar(20) not null, -- 대출일

foreign key (id) references student(id)  -- 참조키설정

);


-- 대출자료 입력

insert into bookRent 

values(2014100,'0792012','자바기초',substring(now(),1,10));


insert into bookRent 

values(2014101,'0494013','안드로이드',substring(now(),1,10));

'TIS_2016 > 안드로이드_1기' 카테고리의 다른 글

sql연습문제  (0) 2016.04.28
join연습  (0) 2016.04.27
4/26 JDBC 프로그래밍 예제  (0) 2016.04.26
자바쓰레드 동기화 관련예제  (0) 2016.04.25
자바기본문법  (0) 2016.04.25
Comments