-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic_info.sql
More file actions
51 lines (41 loc) · 1.46 KB
/
basic_info.sql
File metadata and controls
51 lines (41 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
-- phpMyAdmin SQL Dump
-- version 5.1.1
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Jul 23, 2023 at 08:52 AM
-- Server version: 8.0.18-9
-- PHP Version: 8.1.16
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
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: `survey`
--
-- --------------------------------------------------------
--
-- Table structure for table `basic_info`
--
CREATE TABLE `basic_info` (
`name` text NOT NULL,
`id` text NOT NULL,
`gender` text NOT NULL,
`birth` date NOT NULL,
`timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
--
-- Dumping data for table `basic_info`
--
INSERT INTO `basic_info` (`name`, `id`, `gender`, `birth`, `timestamp`) VALUES
('test 07081056', '07081056', 'Male', '2013-06-12', '2023-07-08 13:57:12'),
('1057', '1057', 'Male', '2023-06-28', '2023-07-08 13:57:42'),
('UNSWEET', '11001', 'Male', '2023-06-27', '2023-07-13 02:01:09'),
('1106', '1106', 'Male', '2023-06-26', '2023-07-13 02:06:25');
COMMIT;
/*!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 */;