Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 1.71 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.1.14
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: 127.0.0.1
  6. -- Generation Time: 24 Lis 2014, 22:05
  7. -- Server version: 5.6.17
  8. -- PHP Version: 5.5.12
  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. -- Database: `test`
  21. --
  22.  
  23. -- --------------------------------------------------------
  24.  
  25. --
  26. -- Struktura tabeli dla tabeli `wpisy`
  27. --
  28.  
  29. CREATE TABLE IF NOT EXISTS `wpisy` (
  30.   `ID` INT(11) NOT NULL AUTO_INCREMENT,
  31.   `TYTUL` text NOT NULL,
  32.   `TEXT` text NOT NULL,
  33.   `DODANO` DATE NOT NULL,
  34.   PRIMARY KEY (`ID`)
  35. ) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=12 ;
  36.  
  37. --
  38. -- Zrzut danych tabeli `wpisy`
  39. --
  40.  
  41. INSERT INTO `wpisy` (`ID`, `TYTUL`, `TEXT`, `DODANO`) VALUES
  42. (1, 'test', 'hfghfghfghfdh', '2014-11-24'),
  43. (2, 'tes6t', 'hfghfgh675657fghfdh', '2014-11-24'),
  44. (3, 'tes23t', 'hfghfg57hfghfdh', '2014-11-24'),
  45. (4, 'tes342t', 'hfgh567f567ghfghfdh', '2014-11-24'),
  46. (5, 'te435st', 'hfghfghfghfdh', '2014-11-24'),
  47. (6, 'te54st', 'hfghfgh656757fghfdh', '2014-11-24'),
  48. (7, 'te456st', 'hfghf67ghfghfdh', '2014-11-24'),
  49. (8, 'te657st', 'hfghfg657h567fghfdh', '2014-11-24'),
  50. (9, 't65765est', 'hfghf567ghfghfdh', '2014-11-24'),
  51. (10, 'te65st', 'hfghf5676756hfghfdh', '2014-11-24'),
  52. (11, 'te56756st', 'hfghfg5657hfghfdh', '2014-11-24');
  53.  
  54. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  55. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  56. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement