| Server IP : 104.21.80.248 / Your IP : 172.71.28.156 Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30 System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586 User : SYSTEM ( 0) PHP Version : 5.6.30 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : E:/dataDB/BackupDB/ |
Upload File : |
-- phpMyAdmin SQL Dump
-- version 4.6.6
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Jun 19, 2025 at 07:00 PM
-- Server version: 5.7.17-log
-- PHP Version: 5.6.30
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!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 */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `insert`
--
CREATE DATABASE IF NOT EXISTS `insert` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
USE `insert`;
-- --------------------------------------------------------
--
-- Table structure for table `customer`
--
CREATE TABLE IF NOT EXISTS `customer` (
`CustomerID` varchar(4) NOT NULL,
`Name` varchar(50) NOT NULL,
`Email` varchar(50) NOT NULL,
`CountryCode` varchar(2) NOT NULL,
`Budget` double NOT NULL,
`Used` double NOT NULL,
PRIMARY KEY (`CustomerID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `customer`
--
INSERT INTO `customer` (`CustomerID`, `Name`, `Email`, `CountryCode`, `Budget`, `Used`) VALUES
('C001', 'Win Weerachai', '[email protected]', 'TH', 1000000, 600000),
('C002', 'John Smith', '[email protected]', 'UK', 2000000, 800000),
('C003', 'Jame Born', '[email protected]', 'US', 3000000, 600000),
('C004', 'Chalee Angel', '[email protected]', 'US', 4000000, 100000);
-- --------------------------------------------------------
--
-- Table structure for table `student`
--
CREATE TABLE IF NOT EXISTS `student` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`stu_name` text NOT NULL,
`stu_class` varchar(10) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8;
--
-- Dumping data for table `student`
--
INSERT INTO `student` (`id`, `stu_name`, `stu_class`) VALUES
(1, 'ชาคริต', ''),
(2, 'เปรมฤทัย', ''),
(3, 'มีบุญ', 'ม.6'),
(4, 'ต้อง', 'ม.6'),
(5, 'มีบุญ', 'ม.3'),
(6, 'มีบุญ', 'ม.6'),
(7, 'ชาคริต', 'ม.6'),
(8, 'มีบุญ', ''),
(9, 'ชาคริต', ''),
(10, 'ชาคริต', 'ม.6'),
(11, 'ชาคริต', 'ม.6'),
(12, 'มีบุญ', 'ม.3'),
(13, 'มีบุญ', 'ม.6'),
(14, 'ชาคริต', 'ม.3');
/*!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 */;