-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcrud_angular.sql
More file actions
50 lines (40 loc) · 1.5 KB
/
crud_angular.sql
File metadata and controls
50 lines (40 loc) · 1.5 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
-- phpMyAdmin SQL Dump
-- version 4.0.10deb1
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Nov 13, 2015 at 02:09 PM
-- Server version: 5.5.46-0ubuntu0.14.04.2
-- PHP Version: 5.5.9-1ubuntu4.14
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 utf8 */;
--
-- Database: `crud_angular`
--
-- --------------------------------------------------------
--
-- Table structure for table `member`
--
CREATE TABLE IF NOT EXISTS `member` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nama` text,
`alamat` text,
`telp` text,
`email` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ;
--
-- Dumping data for table `member`
--
INSERT INTO `member` (`id`, `nama`, `alamat`, `telp`, `email`) VALUES
(1, 'Muhammad Khoirul Umam', 'Cikarang Baru, Bekasi', '085741118205', 'www.umam@gmail.com'),
(2, 'Muhammad Al-Umam', 'Buaran, Pekalongan', '085741118205', 'www.umam@gmail.com'),
(3, 'Al-Umam Scarlet', 'Buaran, Pekalongan', '085741118205', 'ngeposta@gmail.com'),
(4, 'Finafie Rizki Septia', 'Banjarnegara', '085741176542', 'finafie.rizki@gmail.com');
/*!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 */;