20240409 Linux SQL SpringBoots
# abbs의 SQL문 SET SESSION FOREIGN_KEY_CHECKS=0; /* Drop Tables */ DROP TABLE IF EXISTS anniversary; DROP TABLE IF EXISTS likes; DROP TABLE IF EXISTS reply; DROP TABLE IF EXISTS board; DROP TABLE IF EXISTS schedule; DROP TABLE IF EXISTS users; /* Create Tables */ CREATE TABLE anniversary ( aid int NOT NULL AUTO_INCREMENT, uid varchar(12) NOT NULL, aname varchar(20) NOT NULL, adate char(8) NOT NULL..
2024.04.09