테이블 간 관계고객 정보를 가진 users 테이블create table users( id bigint not null auto_increment, name varchar(255), primary key (id));음식 정보를 가진 food 테이블create table food( id bigint not null auto_increment, name varchar(255), price float(53) not null, primary key (id));둘을 이어주는 주문 정보를 가진 orders 테이블create table orders( id bigint not null auto_increment, user_id bigint, ..