Advertisement
Guest User

db_motor

a guest
Feb 14th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 3.5.2.2
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Inang: 127.0.0.1
  6. -- Waktu pembuatan: 14 Feb 2016 pada 17.50
  7. -- Versi Server: 5.5.27
  8. -- Versi PHP: 5.4.7
  9.  
  10. SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
  11. SET time_zone = "+00:00";
  12.  
  13.  
  14. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  15. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  16. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  17. /*!40101 SET NAMES utf8 */;
  18.  
  19. --
  20. -- Basis data: `belajar`
  21. --
  22.  
  23. -- --------------------------------------------------------
  24.  
  25. --
  26. -- Struktur dari tabel `motor`
  27. --
  28.  
  29. CREATE TABLE IF NOT EXISTS `motor` (
  30. `id` int(11) NOT NULL AUTO_INCREMENT,
  31. `id_motor` int(11) NOT NULL,
  32. `spek` varchar(225) NOT NULL,
  33. `ket` varchar(225) NOT NULL,
  34. PRIMARY KEY (`id`)
  35. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;
  36.  
  37. --
  38. -- Dumping data untuk tabel `motor`
  39. --
  40.  
  41. INSERT INTO `motor` (`id`, `id_motor`, `spek`, `ket`) VALUES
  42. (1, 1, 'jumlah cc', '150cc'),
  43. (2, 1, 'warna', 'hijau'),
  44. (3, 1, 'harga', '22000000'),
  45. (4, 2, 'jumlah cc', '110cc'),
  46. (5, 2, 'warna', 'merah'),
  47. (6, 2, 'harga', '14000000');
  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 */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement