Advertisement
darmariduan

tabel sql resi

Jul 31st, 2019
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 1.57 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.8.5
  3. -- https://www.phpmyadmin.net/
  4. --
  5. -- Host: localhost:3306
  6. -- Generation Time: Jul 31, 2019 at 07:35 AM
  7. -- Server version: 5.7.24
  8. -- PHP Version: 7.2.19
  9.  
  10. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  11. SET AUTOCOMMIT = 0;
  12. START TRANSACTION;
  13. SET time_zone = "+00:00";
  14.  
  15.  
  16. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  17. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  18. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  19. /*!40101 SET NAMES utf8mb4 */;
  20.  
  21. --
  22. -- Database: `olshop-api`
  23. --
  24.  
  25. -- --------------------------------------------------------
  26.  
  27. --
  28. -- Table structure for table `t_resis`
  29. --
  30.  
  31. CREATE TABLE `t_resis` (
  32.   `id_resi` INT(7) NOT NULL,
  33.   `nama` VARCHAR(255) NOT NULL,
  34.   `no_resi` VARCHAR(255) NOT NULL,
  35.   `pengiriman` VARCHAR(255) NOT NULL
  36. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  37.  
  38. --
  39. -- Dumping data for table `t_resis`
  40. --
  41.  
  42. INSERT INTO `t_resis` (`id_resi`, `nama`, `no_resi`, `pengiriman`) VALUES
  43. (1, 'Darma Riduan', '12321213122', 'JNE');
  44.  
  45. --
  46. -- Indexes for dumped tables
  47. --
  48.  
  49. --
  50. -- Indexes for table `t_resis`
  51. --
  52. ALTER TABLE `t_resis`
  53.   ADD PRIMARY KEY (`id_resi`);
  54.  
  55. --
  56. -- AUTO_INCREMENT for dumped tables
  57. --
  58.  
  59. --
  60. -- AUTO_INCREMENT for table `t_resis`
  61. --
  62. ALTER TABLE `t_resis`
  63.   MODIFY `id_resi` INT(7) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
  64. COMMIT;
  65.  
  66. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  67. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  68. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement