BoBJo23 / BOBJO

0 stars 0 forks source link

Constructing database #3

Open inji-yeon opened 8 months ago

inji-yeon commented 8 months ago
inji-yeon commented 8 months ago

The code describes how I made the table 'tbl_category'

select * from tbl_category;

insert into tbl_category values (null, '한식'); insert into tbl_category values (null, '일식'); insert into tbl_category values (null, '양식'); insert into tbl_category values (null, '중식');

inji-yeon commented 8 months ago

The code describes how I made the table 'tbl_menu'

CREATE TABLE tbl_menu ( menuNum INTEGER auto_increment COMMENT '메뉴번호', menuName VARCHAR(30) NOT NULL COMMENT '메뉴명', categoryNum INTEGER NOT NULL COMMENT '카테고리번호', countingChoices INTEGER COMMENT '선택된횟수', PRIMARY KEY ( menuNum ) ) COMMENT = '메뉴';

CREATE UNIQUE INDEX tbl_menu_PK ON tbl_menu ( menuNum );

ALTER TABLE tbl_menu ADD CONSTRAINT tbl_menu_PK PRIMARY KEY ( menuNum );

inji-yeon commented 8 months ago

The example of the inserting data (한식 category)

insert into tbl_menu values (null, '비빔밥', 1, null); insert into tbl_menu values (null, '김밥', 1, null); insert into tbl_menu values (null, '육회', 1, null); insert into tbl_menu values (null, '불고기', 1, null); insert into tbl_menu values (null, '김치찌개', 1, null); insert into tbl_menu values (null, '된장찌개', 1, null); insert into tbl_menu values (null, '순두부찌개', 1, null); insert into tbl_menu values (null, '떡볶이', 1, null); insert into tbl_menu values (null, '닭갈비', 1, null); insert into tbl_menu values (null, '치킨', 1, null); insert into tbl_menu values (null, '육개장', 1, null); insert into tbl_menu values (null, '돌솥비빔밥', 1, null); insert into tbl_menu values (null, '돈까스', 1, null); insert into tbl_menu values (null, '삼겹살', 1, null); insert into tbl_menu values (null, '갈비', 1, null); insert into tbl_menu values (null, '쭈꾸미 볶음', 1, null); insert into tbl_menu values (null, '순대국밥', 1, null); insert into tbl_menu values (null, '설렁탕', 1, null); insert into tbl_menu values (null, '고기국밥', 1, null); insert into tbl_menu values (null, '뼈해장국', 1, null); insert into tbl_menu values (null, '해물철판볶음밥', 1, null); insert into tbl_menu values (null, '보쌈', 1, null); insert into tbl_menu values (null, '낙지볶음밥', 1, null); insert into tbl_menu values (null, '오므라이스', 1, null); insert into tbl_menu values (null, '잔치국수', 1, null);

@22JunHee @logwindy4 @CHUWENCHING You can update the database utilizing this code :)

CHUWENCHING commented 8 months ago

I inserted data (일식 category) INSERT INTO tbl_menu VALUES (null, '스시', 2,null); INSERT INTO tbl_menu VALUES (null, '라멘', 2,null); INSERT INTO tbl_menu VALUES (null, '돈카츠', 2,null); INSERT INTO tbl_menu VALUES (null, '우동', 2,null); INSERT INTO tbl_menu VALUES (null, '회', 2,null); INSERT INTO tbl_menu VALUES (null, '알밥', 2,null); INSERT INTO tbl_menu VALUES (null, '야키토리(닭꼬치구이)', 2,null); INSERT INTO tbl_menu VALUES (null, '오코노미야끼', 2,null); INSERT INTO tbl_menu VALUES (null, '타코야끼', 2,null); INSERT INTO tbl_menu VALUES (null, '야키니쿠', 2,null); INSERT INTO tbl_menu VALUES (null, '샤브샤브', 2,null); INSERT INTO tbl_menu VALUES (null, '밀푀유나베', 2,null); INSERT INTO tbl_menu VALUES (null, '오니기리', 2,null); INSERT INTO tbl_menu VALUES (null, '돈부리', 2,null); INSERT INTO tbl_menu VALUES (null, '텐동', 2,null);

logwindy4 commented 8 months ago

데이터베이스 food 중식 카테고리 데이터 삽입 INSERT INTO food.tbl_menu(menuNum,menuName, categoryNum, countingChoices) VALUES (NULL, '짜장면', 3, NULL), (NULL, '짬뽕', 3, NULL), (NULL, '탕수육', 3, NULL), (NULL, '우육면', 3, NULL), (NULL, '양장피', 3, NULL), (NULL, '마파두부', 3, NULL), (NULL, '중식볶음밥', 3, NULL), (NULL, '마라탕', 3, NULL), (NULL, '마라샹궈', 3, NULL), (NULL, '꿔바로우', 3, NULL), (NULL, '지삼선', 3, NULL), (NULL, '꽁바오지띵', 3, NULL), (NULL, '훠궈', 3, NULL), (NULL, '만두', 3, NULL), (NULL, '차오미엔', 3, NULL)

22JunHee commented 6 months ago

데이터 베이스 양식 카테고리 데이터 삽입 INSERT INTO tbl_menu VALUES (null, '치킨 키에프', 3,null); INSERT INTO tbl_menu VALUES (null, '피자', 3,null); INSERT INTO tbl_menu VALUES (null, '소고기 스테이크', 3,null); INSERT INTO tbl_menu VALUES (null, '토마토 파스타', 3,null); INSERT INTO tbl_menu VALUES (null, '알리오 올리오', 3,null); INSERT INTO tbl_menu VALUES (null, '크림 파스타', 3,null); INSERT INTO tbl_menu VALUES (null, '해물 파스타', 3,null); INSERT INTO tbl_menu VALUES (null, '햄버거', 3,null); INSERT INTO tbl_menu VALUES (null, '봉골레 스파게티', 3,null); INSERT INTO tbl_menu VALUES (null, '랍스터', 3,null); INSERT INTO tbl_menu VALUES (null, '비스크', 3,null); INSERT INTO tbl_menu VALUES (null, '피쉬 앤 칩스', 3,null); INSERT INTO tbl_menu VALUES (null, '비프 타코', 3,null); INSERT INTO tbl_menu VALUES (null, '에그 베네딕트', 3,null); INSERT INTO tbl_menu VALUES (null, '치킨 마살라', 3,null);