데이터 베이스 리포트
페이지 정보
작성일 24-04-13 01:29
본문
Download : 데이터 베이스 리포트.hwp
데이터베이스쿼리문작성리포트 , 데이터 베이스 리포트인문사회레포트 ,
Download : 데이터 베이스 리포트.hwp( 97 )
설명
데이터베이스쿼리문작성리포트
데이터 베이스 리포트에 대한 입니다.
데이터 베이스 리포트
다.






create database college; college라는 데이터 베이스 만듬.
use college ;
show tables ; table을 보여줌.
create table student <===학생 테이블
(snum int(10) not null,
sname char(15),
major char(20),
level char(2),
age int(2),
primary key(snum));
create table class <====반 테이블
(cname char(7) not null,
room char(5),
fid int(5),
primary key(cname));
create table enrolled <===enrolled 테이블
(snum int(10) not null,
cname char(7),
primary key(snum));
create table faculty <===faculty 테이블
(fid int(5) not null,
fname char(10),
deptid int(5),
primary key(fid));
LOAD DATA LOCAL INFILE `student_file.sql` INTO TABLE student; <=student.Sql 테이블 각각 엔티티로 저장
LOAD DATA LOCAL INFILE `class_file.sql` INTO TABLE class;<=class.Sql 테이블 각각 엔티티로 저장
LOAD DATA LOCAL INFILE `enrolled_file.sql` INTO TABLE en…(생략(省略))
레포트/인문사회
순서
,인문사회,레포트
데이터 베이스 리포트에 대한 자료입니다.