Skip to content

Commit ca7ca78

Browse files
author
Ronald Zuni Bachtiar
authored
Pertemuan 1
0 parents  commit ca7ca78

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed

raja_kosek.sql

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
-- phpMyAdmin SQL Dump
2+
-- version 5.2.1
3+
-- https://www.phpmyadmin.net/
4+
--
5+
-- Host: 127.0.0.1
6+
-- Generation Time: Feb 17, 2025 at 02:31 PM
7+
-- Server version: 10.4.32-MariaDB
8+
-- PHP Version: 8.2.12
9+
10+
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
11+
START TRANSACTION;
12+
SET time_zone = "+00:00";
13+
14+
15+
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
16+
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
17+
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
18+
/*!40101 SET NAMES utf8mb4 */;
19+
20+
--
21+
-- Database: `raja_kosek`
22+
--
23+
24+
-- --------------------------------------------------------
25+
26+
--
27+
-- Table structure for table `mahasiswa`
28+
--
29+
30+
CREATE TABLE `mahasiswa` (
31+
`NMP` char(5) NOT NULL,
32+
`nama` varchar(20) NOT NULL,
33+
`tempat_lahir` varchar(20) NOT NULL,
34+
`tanggal_lahir` date NOT NULL,
35+
`no_hp` varchar(25) DEFAULT NULL
36+
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
37+
38+
--
39+
-- Indexes for dumped tables
40+
--
41+
42+
--
43+
-- Indexes for table `mahasiswa`
44+
--
45+
ALTER TABLE `mahasiswa`
46+
ADD PRIMARY KEY (`NMP`);
47+
COMMIT;
48+
49+
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
50+
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
51+
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

0 commit comments

Comments
 (0)