403Webshell
Server IP : 112.175.184.31  /  Your IP : 216.73.217.60
Web Server : Apache
System : Linux dot-k1-031.dothome.co.kr 4.18.0-553.156.1.el8_10.x86_64 #1 SMP Mon Aug 17 17:52:57 UTC 2026 x86_64
User : lovelove8926 ( 1226)
PHP Version : 7.4.33
Disable Function : proc_open, passthru, show_source, socket_create, socket_accept
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /backup/mysqldump/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /backup/mysqldump/kangdot02-20260825-030001.sql
-- MySQL dump 10.13  Distrib 8.0.46, for Linux (x86_64)
--
-- Host: localhost    Database: kangdot02
-- ------------------------------------------------------
-- Server version	8.0.46

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `board`
--

DROP TABLE IF EXISTS `board`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `board` (
  `num` int NOT NULL AUTO_INCREMENT,
  `id` varchar(15) NOT NULL,
  `name` varchar(10) NOT NULL,
  `subject` varchar(100) NOT NULL,
  `content` text NOT NULL,
  `to_day` varchar(20) DEFAULT NULL,
  `hit` int DEFAULT NULL,
  `is_html` varchar(1) DEFAULT NULL,
  PRIMARY KEY (`num`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `board`
--

LOCK TABLES `board` WRITE;
/*!40000 ALTER TABLE `board` DISABLE KEYS */;
INSERT INTO `board` VALUES (1,'','aaa','test','test','2023-11-22 (14:53)',0,'');
/*!40000 ALTER TABLE `board` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `board_smart`
--

DROP TABLE IF EXISTS `board_smart`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `board_smart` (
  `id` int NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `title` varchar(100) NOT NULL,
  `content` text NOT NULL,
  `created_at` datetime DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `board_smart`
--

LOCK TABLES `board_smart` WRITE;
/*!40000 ALTER TABLE `board_smart` DISABLE KEYS */;
INSERT INTO `board_smart` VALUES (17,'이소희','test','test','2026-04-17 15:18:07'),(18,'하민서','테스트','테스트내용','2026-04-17 15:18:36'),(19,'이정현','샘플','샘플테스트','2026-04-17 15:20:11'),(30,'kang','sample','test','2026-04-17 15:47:23');
/*!40000 ALTER TABLE `board_smart` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `boardlist`
--

DROP TABLE IF EXISTS `boardlist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `boardlist` (
  `num` int NOT NULL AUTO_INCREMENT,
  `id` varchar(15) NOT NULL,
  `name` varchar(10) NOT NULL,
  `subject` varchar(100) NOT NULL,
  `content` text NOT NULL,
  `regist_day` varchar(20) DEFAULT NULL,
  `hit` int DEFAULT NULL,
  `is_html` varchar(1) DEFAULT NULL,
  PRIMARY KEY (`num`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `boardlist`
--

LOCK TABLES `boardlist` WRITE;
/*!40000 ALTER TABLE `boardlist` DISABLE KEYS */;
INSERT INTO `boardlist` VALUES (1,'aaa111!','kim','test123','test','2024-12-26 (10:25)',5,''),(2,'aaa111!','kim','samp1226','sample','2024-12-26 (10:31)',4,'');
/*!40000 ALTER TABLE `boardlist` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cart`
--

DROP TABLE IF EXISTS `cart`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cart` (
  `no` int NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `comment` varchar(200) NOT NULL,
  `price` int NOT NULL,
  `img` varchar(30) DEFAULT NULL,
  PRIMARY KEY (`no`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cart`
--

LOCK TABLES `cart` WRITE;
/*!40000 ALTER TABLE `cart` DISABLE KEYS */;
/*!40000 ALTER TABLE `cart` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `course`
--

DROP TABLE IF EXISTS `course`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `course` (
  `course_id` varchar(5) NOT NULL,
  `course_name` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`course_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `course`
--

LOCK TABLES `course` WRITE;
/*!40000 ALTER TABLE `course` DISABLE KEYS */;
INSERT INTO `course` VALUES ('c001','DB'),('c002','JAVA');
/*!40000 ALTER TABLE `course` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `data`
--

DROP TABLE IF EXISTS `data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `data` (
  `학번` varchar(4) NOT NULL,
  `이름` varchar(10) NOT NULL,
  `학과` varchar(15) DEFAULT NULL,
  `주소` varchar(20) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `data`
--

LOCK TABLES `data` WRITE;
/*!40000 ALTER TABLE `data` DISABLE KEYS */;
INSERT INTO `data` VALUES ('a001','홍길동','경영학과','제주도'),('a002','이민아','유아교육과','서울'),('a003','김지석','전자공학과','인천'),('a004','이민정','국문학과','부산'),('a005','신유진','유아교육과','전주'),('a010','박희연','수학과','경기');
/*!40000 ALTER TABLE `data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `datajum`
--

DROP TABLE IF EXISTS `datajum`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `datajum` (
  `hbun` varchar(5) NOT NULL,
  `name` varchar(10) NOT NULL,
  `kor` int NOT NULL,
  `eng` int NOT NULL,
  `tot` int NOT NULL,
  `ave` float NOT NULL,
  `result` varchar(8) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `datajum`
--

LOCK TABLES `datajum` WRITE;
/*!40000 ALTER TABLE `datajum` DISABLE KEYS */;
INSERT INTO `datajum` VALUES ('10001','kang',90,85,175,87.5,'불합격'),('10002','park',100,90,190,95,'합격'),('10003','kim',100,100,200,100,'합격'),('10004','song',60,65,125,62.5,'불합격'),('10005','min',70,89,159,79.5,'불합격'),('10006','lee',100,100,200,100,'합격');
/*!40000 ALTER TABLE `datajum` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `datatest`
--

DROP TABLE IF EXISTS `datatest`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `datatest` (
  `학번` varchar(4) NOT NULL,
  `학과` varchar(15) NOT NULL,
  `이름` varchar(10) NOT NULL,
  `주소` varchar(20) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `datatest`
--

LOCK TABLES `datatest` WRITE;
/*!40000 ALTER TABLE `datatest` DISABLE KEYS */;
INSERT INTO `datatest` VALUES ('a001','컴푸터공학과','홍길동','서울'),('a003','전자공학과','이지석','부산'),('a004','유아교육과','이지희','서울'),('a005','유아교육과','김미진','부산'),('a010','수학과','김혜지','서울');
/*!40000 ALTER TABLE `datatest` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `enroll`
--

DROP TABLE IF EXISTS `enroll`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `enroll` (
  `student_id` varchar(5) NOT NULL,
  `course_id` varchar(5) NOT NULL,
  PRIMARY KEY (`student_id`,`course_id`),
  KEY `course_id` (`course_id`),
  CONSTRAINT `enroll_ibfk_1` FOREIGN KEY (`student_id`) REFERENCES `student` (`student_id`),
  CONSTRAINT `enroll_ibfk_2` FOREIGN KEY (`course_id`) REFERENCES `course` (`course_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `enroll`
--

LOCK TABLES `enroll` WRITE;
/*!40000 ALTER TABLE `enroll` DISABLE KEYS */;
INSERT INTO `enroll` VALUES ('s001','c001'),('s002','c001'),('s001','c002');
/*!40000 ALTER TABLE `enroll` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jsungjuk`
--

DROP TABLE IF EXISTS `jsungjuk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jsungjuk` (
  `hbun` varchar(5) NOT NULL,
  `ban` varchar(2) NOT NULL,
  `name` varchar(10) NOT NULL,
  `addr` varchar(10) NOT NULL,
  `jum1` int NOT NULL,
  `jum2` int NOT NULL,
  `jum3` int NOT NULL,
  `tot` int NOT NULL,
  `ave` float NOT NULL,
  `hakjum` varchar(2) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jsungjuk`
--

LOCK TABLES `jsungjuk` WRITE;
/*!40000 ALTER TABLE `jsungjuk` DISABLE KEYS */;
/*!40000 ALTER TABLE `jsungjuk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jum`
--

DROP TABLE IF EXISTS `jum`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jum` (
  `hbun` varchar(4) NOT NULL,
  `name` varchar(10) NOT NULL,
  `kor` int NOT NULL,
  `eng` int NOT NULL,
  `mat` int NOT NULL,
  `tot` int NOT NULL,
  `ave` float NOT NULL,
  `result` varchar(1) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jum`
--

LOCK TABLES `jum` WRITE;
/*!40000 ALTER TABLE `jum` DISABLE KEYS */;
INSERT INTO `jum` VALUES ('a001','홍길동',100,90,80,270,90,'A'),('a002','김민수',85,75,60,220,73.3,'C'),('a003','이지아',60,60,65,185,62,'D'),('a004','임지연',100,90,95,285,95,'A'),('a005','박수영',85,64,77,226,75.3,'C'),('a006','이진',90,100,50,240,80,'B');
/*!40000 ALTER TABLE `jum` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `orosy`
--

DROP TABLE IF EXISTS `orosy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `orosy` (
  `id` varchar(15) NOT NULL,
  `pw` varchar(20) NOT NULL,
  `name` varchar(12) NOT NULL,
  `email` varchar(80) NOT NULL,
  `phone` int DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `orosy`
--

LOCK TABLES `orosy` WRITE;
/*!40000 ALTER TABLE `orosy` DISABLE KEYS */;
INSERT INTO `orosy` VALUES ('abc1231!','1234','aaa','safa@naver.com',1011112222);
/*!40000 ALTER TABLE `orosy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `phpapiex`
--

DROP TABLE IF EXISTS `phpapiex`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `phpapiex` (
  `id` varchar(15) NOT NULL,
  `pass` varchar(15) NOT NULL,
  `name` varchar(10) NOT NULL,
  `hp` varchar(20) NOT NULL,
  `email` varchar(80) DEFAULT NULL,
  `zipcode` varchar(10) NOT NULL,
  `address` varchar(50) NOT NULL,
  `detail` varchar(30) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `phpapiex`
--

LOCK TABLES `phpapiex` WRITE;
/*!40000 ALTER TABLE `phpapiex` DISABLE KEYS */;
INSERT INTO `phpapiex` VALUES ('aaa111!','1234','kim','01000005555','aaa@naver.com','04101','서울특별시 마포구 신촌로 104, 5F (노고산동)','5F'),('bbb222@','2222','kang','01011112222','jjj@naver.com','04533','서울특별시 중구 남대문로 81, 34 (소공동)','34'),('test1226!','1111','test','01044447777','test@naver.com','04533','서울특별시 중구 남대문로 81, 11 (소공동)','11');
/*!40000 ALTER TABLE `phpapiex` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `product`
--

DROP TABLE IF EXISTS `product`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `product` (
  `code` varchar(5) NOT NULL,
  `proname` varchar(12) DEFAULT NULL,
  `gu` varchar(1) DEFAULT NULL,
  `su` int DEFAULT NULL,
  `dan` int DEFAULT NULL,
  `price` int DEFAULT NULL,
  PRIMARY KEY (`code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product`
--

LOCK TABLES `product` WRITE;
/*!40000 ALTER TABLE `product` DISABLE KEYS */;
INSERT INTO `product` VALUES ('c005','yyy','2',2,500,900),('b004','키보드','1',3,10000,30000),('A002','연필','1',2,500,1000),('n1234','book','1',2,25000,50000);
/*!40000 ALTER TABLE `product` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `s_score`
--

DROP TABLE IF EXISTS `s_score`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `s_score` (
  `num` int NOT NULL AUTO_INCREMENT,
  `name` varchar(12) DEFAULT NULL,
  `sub1` int DEFAULT NULL,
  `sub2` int DEFAULT NULL,
  `sub3` int DEFAULT NULL,
  PRIMARY KEY (`num`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `s_score`
--

LOCK TABLES `s_score` WRITE;
/*!40000 ALTER TABLE `s_score` DISABLE KEYS */;
INSERT INTO `s_score` VALUES (11,'kkk',89,90,100),(6,'min',80,80,80);
/*!40000 ALTER TABLE `s_score` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `s_score1`
--

DROP TABLE IF EXISTS `s_score1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `s_score1` (
  `num` int NOT NULL AUTO_INCREMENT,
  `name` varchar(12) DEFAULT NULL,
  `sub1` int DEFAULT NULL,
  `sub2` int DEFAULT NULL,
  `sub3` int DEFAULT NULL,
  PRIMARY KEY (`num`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `s_score1`
--

LOCK TABLES `s_score1` WRITE;
/*!40000 ALTER TABLE `s_score1` DISABLE KEYS */;
INSERT INTO `s_score1` VALUES (1,'kim',90,90,90),(2,'kang',90,85,95),(5,'park',100,100,97);
/*!40000 ALTER TABLE `s_score1` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sales`
--

DROP TABLE IF EXISTS `sales`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sales` (
  `문구코드` varchar(3) NOT NULL,
  `소매점` varchar(10) NOT NULL,
  `문구명` varchar(10) NOT NULL,
  `구매수량` int NOT NULL,
  `반품수량` int NOT NULL,
  `단가` int NOT NULL,
  `구매금액` int NOT NULL,
  `반품금액` int NOT NULL,
  `포인트적립액` int NOT NULL,
  `비고` varchar(8) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sales`
--

LOCK TABLES `sales` WRITE;
/*!40000 ALTER TABLE `sales` DISABLE KEYS */;
INSERT INTO `sales` VALUES ('101','서울문구','노트',99,26,700,69300,18200,511,''),('101','대전문구','노트',9,0,700,6300,0,63,'관리요'),('201','제주문구','볼펜',17,9,500,8500,4500,40,'관리요'),('201','서울문구','볼펜',20,3,500,10000,1500,85,''),('301','제주문구','스케치북',50,20,1000,50000,20000,300,''),('301','서울문구','스케치북',10,5,1000,10000,5000,50,'관리요'),('401','서울문구','지우개',66,25,300,19800,7500,123,''),('401','대전문구','지우개',35,13,300,10500,3900,66,'관리요');
/*!40000 ALTER TABLE `sales` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `saletest`
--

DROP TABLE IF EXISTS `saletest`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `saletest` (
  `문구코드` varchar(3) NOT NULL,
  `소매점` varchar(10) NOT NULL,
  `문구명` varchar(10) NOT NULL,
  `구매수량` int NOT NULL,
  `반품수량` int NOT NULL,
  `단가` int NOT NULL,
  `구매금액` int DEFAULT '0',
  `반품금액` int DEFAULT '0',
  `포인트적립액` int DEFAULT '0',
  `비고` varchar(8) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `saletest`
--

LOCK TABLES `saletest` WRITE;
/*!40000 ALTER TABLE `saletest` DISABLE KEYS */;
INSERT INTO `saletest` VALUES ('101','서울문구','노트',99,26,700,0,0,0,NULL),('101','대전문구','노트',9,0,700,0,0,0,NULL),('201','제주문구','볼펜',17,9,500,0,0,0,NULL),('201','서울문구','볼펜',20,3,500,0,0,0,NULL),('301','제주문구','스케치북',50,20,1000,0,0,0,NULL),('301','서울문구','스케치북',10,5,1000,0,0,0,NULL),('401','서울문구','지우개',66,25,300,0,0,0,NULL),('401','대전문구','지우개',35,13,300,0,0,0,NULL);
/*!40000 ALTER TABLE `saletest` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sample`
--

DROP TABLE IF EXISTS `sample`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sample` (
  `id` varchar(5) NOT NULL,
  `name` varchar(10) NOT NULL,
  `addr` varchar(80) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `hp` varchar(15) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sample`
--

LOCK TABLES `sample` WRITE;
/*!40000 ALTER TABLE `sample` DISABLE KEYS */;
INSERT INTO `sample` VALUES ('a1234','송진아','경기','kkk@naver.com','01022223333'),('c0003','강민지','서울','hhh@naver.com','01022223333');
/*!40000 ALTER TABLE `sample` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sample02`
--

DROP TABLE IF EXISTS `sample02`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sample02` (
  `코드` varchar(5) NOT NULL,
  `이름` varchar(10) NOT NULL,
  `부서` varchar(8) NOT NULL,
  `직위` varchar(6) NOT NULL,
  `기본급` int NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sample02`
--

LOCK TABLES `sample02` WRITE;
/*!40000 ALTER TABLE `sample02` DISABLE KEYS */;
INSERT INTO `sample02` VALUES ('j0002','송민지','기획부','사원',2000000),('h0003','박지현','홍보부','주임',2200000),('k0006','kim','영업부','사원',2000000);
/*!40000 ALTER TABLE `sample02` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `score`
--

DROP TABLE IF EXISTS `score`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `score` (
  `score_id` int NOT NULL,
  `student_id` varchar(5) DEFAULT NULL,
  `subject` varchar(20) DEFAULT NULL,
  `score` int DEFAULT NULL,
  `grade` varchar(10) DEFAULT NULL,
  `result` varchar(10) DEFAULT NULL,
  PRIMARY KEY (`score_id`),
  KEY `student_id` (`student_id`),
  CONSTRAINT `score_ibfk_1` FOREIGN KEY (`student_id`) REFERENCES `student` (`student_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `score`
--

LOCK TABLES `score` WRITE;
/*!40000 ALTER TABLE `score` DISABLE KEYS */;
INSERT INTO `score` VALUES (1,'s001','DB',90,'A','최우수'),(2,'s001','JAVA',85,'B','우수'),(3,'s002','DB',80,'B','우수'),(4,'s002','JAVA',75,'C','노력'),(5,'s004','DB',100,'A','최우수'),(6,'s004','JAVA',90,'A','최우수');
/*!40000 ALTER TABLE `score` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sdata`
--

DROP TABLE IF EXISTS `sdata`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sdata` (
  `bun` varchar(3) NOT NULL,
  `name` varchar(10) NOT NULL,
  `code` varchar(2) NOT NULL,
  `hel` varchar(8) NOT NULL,
  `t` int DEFAULT NULL,
  `basic` int DEFAULT NULL,
  PRIMARY KEY (`bun`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sdata`
--

LOCK TABLES `sdata` WRITE;
/*!40000 ALTER TABLE `sdata` DISABLE KEYS */;
INSERT INTO `sdata` VALUES ('M1','이민아','AA','수영',89,1500),('M6','송지희','BB','스쿼시',79,2500),('MB','김지아','AA','테니스',59,1500);
/*!40000 ALTER TABLE `sdata` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sport`
--

DROP TABLE IF EXISTS `sport`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sport` (
  `회원번호` varchar(3) NOT NULL,
  `회원등급코드` varchar(2) NOT NULL,
  `운동종류` varchar(8) NOT NULL,
  `사용시간` int NOT NULL,
  `기본요금` int NOT NULL,
  `사용요금` int NOT NULL,
  `보너스점수` int NOT NULL,
  `비고` varchar(5) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sport`
--

LOCK TABLES `sport` WRITE;
/*!40000 ALTER TABLE `sport` DISABLE KEYS */;
INSERT INTO `sport` VALUES ('M6','BB','스쿼시',20,2500,50000,3500,'보통'),('M1','AA','수영',20,1500,30000,2100,'보통'),('M8','AA','테니스',20,1500,30000,2100,'보통'),('M2','CC','헬스',20,3500,70000,4900,'보통'),('M3','DD','테니스',20,4500,90000,6300,'우수'),('M5','AA','스쿼시',20,1500,30000,2100,'보통'),('M4','BB','수영',20,2500,50000,3500,'보통'),('M7','CC','헬스',20,3500,70000,4900,'보통'),('M11','DD','스쿼시',20,4500,90000,6300,'우수');
/*!40000 ALTER TABLE `sport` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sporttest`
--

DROP TABLE IF EXISTS `sporttest`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sporttest` (
  `회원번호` varchar(3) NOT NULL,
  `회원등급코드` varchar(2) NOT NULL,
  `운동종류` varchar(8) NOT NULL,
  `사용시간` int NOT NULL,
  `기본요금` int NOT NULL,
  `사용요금` int NOT NULL,
  `보너스점수` int NOT NULL,
  `비고` varchar(5) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sporttest`
--

LOCK TABLES `sporttest` WRITE;
/*!40000 ALTER TABLE `sporttest` DISABLE KEYS */;
INSERT INTO `sporttest` VALUES ('M1','AA','수영',20,1500,30000,2100,'보통'),('M8','AA','테니스',20,1500,30000,2100,'보통'),('M2','CC','헬스',20,3500,70000,4900,'보통'),('M3','DD','테니스',20,4500,90000,6300,'우수'),('M5','AA','스쿼시',20,1500,30000,2100,'보통'),('M4','BB','수영',20,2500,50000,3500,'보통'),('M7','CC','헬스',20,3500,70000,4900,'보통'),('M11','DD','스쿼시',20,4500,90000,6300,'우수');
/*!40000 ALTER TABLE `sporttest` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `stud_score`
--

DROP TABLE IF EXISTS `stud_score`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `stud_score` (
  `num` int NOT NULL AUTO_INCREMENT,
  `name` varchar(12) DEFAULT NULL,
  `sub1` int DEFAULT NULL,
  `sub2` int DEFAULT NULL,
  `sub3` int DEFAULT NULL,
  PRIMARY KEY (`num`)
) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `stud_score`
--

LOCK TABLES `stud_score` WRITE;
/*!40000 ALTER TABLE `stud_score` DISABLE KEYS */;
INSERT INTO `stud_score` VALUES (13,'홍길동',90,88,100),(14,'kang',90,100,90);
/*!40000 ALTER TABLE `stud_score` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `student`
--

DROP TABLE IF EXISTS `student`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `student` (
  `student_id` varchar(5) NOT NULL,
  `name` varchar(10) DEFAULT NULL,
  `hp` varchar(15) DEFAULT NULL,
  `addr` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`student_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `student`
--

LOCK TABLES `student` WRITE;
/*!40000 ALTER TABLE `student` DISABLE KEYS */;
INSERT INTO `student` VALUES ('s001','홍길동','01012341234','부산'),('s002','김지나','01033334444','부산'),('s004','이지연','01012123434','서울'),('s005','김지훈','01000001111','경기');
/*!40000 ALTER TABLE `student` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sungj`
--

DROP TABLE IF EXISTS `sungj`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sungj` (
  `id` varchar(8) NOT NULL,
  `name` varchar(12) DEFAULT NULL,
  `kor` int DEFAULT NULL,
  `eng` int DEFAULT NULL,
  `mat` int DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sungj`
--

LOCK TABLES `sungj` WRITE;
/*!40000 ALTER TABLE `sungj` DISABLE KEYS */;
INSERT INTO `sungj` VALUES ('bbb','jang',70,90,100),('ban111','kim',80,90,80),('ggg','yyy',90,45,30);
/*!40000 ALTER TABLE `sungj` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sungj1`
--

DROP TABLE IF EXISTS `sungj1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sungj1` (
  `id` varchar(8) NOT NULL,
  `name` varchar(12) DEFAULT NULL,
  `kor` int DEFAULT NULL,
  `eng` int DEFAULT NULL,
  `mat` int DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sungj1`
--

LOCK TABLES `sungj1` WRITE;
/*!40000 ALTER TABLE `sungj1` DISABLE KEYS */;
INSERT INTO `sungj1` VALUES ('vvv','kim',90,85,100),('a001','min',95,85,70),('aaa111!','kim',90,80,90),('as012','김민수',80,90,100);
/*!40000 ALTER TABLE `sungj1` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sungjuk`
--

DROP TABLE IF EXISTS `sungjuk`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sungjuk` (
  `hbun` varchar(5) NOT NULL,
  `ban` varchar(2) NOT NULL,
  `name` varchar(10) NOT NULL,
  `addr` varchar(20) NOT NULL,
  `jum1` int NOT NULL,
  `jum2` int NOT NULL,
  `jum3` int NOT NULL,
  `tot` int NOT NULL,
  `ave` float NOT NULL,
  `hakjum` varchar(2) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sungjuk`
--

LOCK TABLES `sungjuk` WRITE;
/*!40000 ALTER TABLE `sungjuk` DISABLE KEYS */;
INSERT INTO `sungjuk` VALUES ('ha001','A','hong','서울',100,95,80,275,91.7,'A'),('ha002','B','kang','부산',80,85,80,245,81.7,'B'),('ha003','A','jin','서울',70,75,80,225,75,'C'),('ha004','C','kim','경기',65,60,65,190,63.3,'D'),('ha005','B','lee','대전',70,55,50,175,58.3,'F');
/*!40000 ALTER TABLE `sungjuk` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sungjukex`
--

DROP TABLE IF EXISTS `sungjukex`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sungjukex` (
  `hbun` varchar(5) NOT NULL,
  `ban` varchar(2) NOT NULL,
  `name` varchar(10) NOT NULL,
  `addr` varchar(20) NOT NULL,
  `jum1` int NOT NULL,
  `jum2` int NOT NULL,
  `jum3` int NOT NULL,
  `tot` int DEFAULT '0',
  `ave` float DEFAULT '0',
  `hakjum` varchar(2) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sungjukex`
--

LOCK TABLES `sungjukex` WRITE;
/*!40000 ALTER TABLE `sungjukex` DISABLE KEYS */;
INSERT INTO `sungjukex` VALUES ('ha001','A','hong','서울',100,95,80,275,91.7,'A'),('ha002','B','kang','부산',80,85,80,245,81.7,'B'),('ha003','A','jin','서울',70,75,80,225,75,'C'),('ha004','C','kim','경기',65,60,65,190,63.3,'D'),('ha005','B','lee','대전',70,55,50,175,58.3,'F');
/*!40000 ALTER TABLE `sungjukex` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sungnew1`
--

DROP TABLE IF EXISTS `sungnew1`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `sungnew1` (
  `id` varchar(8) NOT NULL,
  `name` varchar(12) DEFAULT NULL,
  `kor` int DEFAULT NULL,
  `eng` int DEFAULT NULL,
  `mat` int DEFAULT NULL,
  `sum` int DEFAULT NULL,
  `avg` float DEFAULT NULL,
  `rt` varchar(8) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sungnew1`
--

LOCK TABLES `sungnew1` WRITE;
/*!40000 ALTER TABLE `sungnew1` DISABLE KEYS */;
INSERT INTO `sungnew1` VALUES ('aaa111!','aaa',90,85,90,265,88.3,'불합격'),('you2345!','kang',90,88,100,278,92.7,'합격'),('test123','im',85,90,75,250,83.3,'불합격'),('ccc','kim',90,90,97,277,92.3,'합격');
/*!40000 ALTER TABLE `sungnew1` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `testdb`
--

DROP TABLE IF EXISTS `testdb`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `testdb` (
  `id` varchar(5) NOT NULL,
  `name` varchar(10) NOT NULL,
  `email` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `testdb`
--

LOCK TABLES `testdb` WRITE;
/*!40000 ALTER TABLE `testdb` DISABLE KEYS */;
INSERT INTO `testdb` VALUES ('a0001','테스트','test@example.com'),('b0001','이민주','aaa@naver.com'),('c0003','홍진아','hhh@naver.com');
/*!40000 ALTER TABLE `testdb` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2026-08-25  3:06:52

Youez - 2016 - github.com/yon3zu
LinuXploit