[Node.js] mysql FOREIGN KEY
·
개발/node.js
1. mysql FOREIGN KEY 데이터베이스 테이블의 컬럼값끼리 관계를 정할수 있다. const dot = require("dotenv").config(); const config = { dev: { user: "root", password: process.env.DB_PASSWORD, database: "text9", multipleStatements: true, } } module.exports = config; 테이블에 컬럼값 넣어서 만들기 const sql = "CREATE TABLE users (id INT AUTO_INCREMENT, username varchar(255), PRIMARY KEY (id));"; const sql2 = "CREATE TABLE items (id INT AU..