Skip to content

Instantly share code, notes, and snippets.

@efiku
Forked from efik/plik.sql
Created February 26, 2016 12:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save efiku/77c57bad5576a93335c5 to your computer and use it in GitHub Desktop.
Save efiku/77c57bad5576a93335c5 to your computer and use it in GitHub Desktop.
Plik z dumpem
-- phpMyAdmin SQL Dump
-- version 4.0.10deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Czas wygenerowania: 04 Maj 2015, 16:02
-- Wersja serwera: 5.5.43-0ubuntu0.14.04.1
-- Wersja PHP: 5.6.8-1+deb.sury.org~trusty+1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
/*!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 */;
--
-- Struktura tabeli dla tabeli `GAS_COUNTER_READS`
--
CREATE TABLE IF NOT EXISTS `GAS_COUNTER_READS` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`READ` decimal(10,2) NOT NULL,
`DATE` date NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=15 ;
--
-- Zrzut danych tabeli `GAS_COUNTER_READS`
--
INSERT INTO `GAS_COUNTER_READS` (`ID`, `READ`, `DATE`) VALUES
(1, 0.00, '2014-01-01'),
(2, 120.30, '2014-01-28'),
(3, 220.00, '2014-02-20'),
(4, 380.20, '2014-03-10'),
(5, 588.09, '2014-04-16'),
(6, 670.04, '2014-05-13'),
(7, 920.24, '2014-06-01'),
(8, 1200.01, '2014-07-10'),
(9, 1290.40, '2014-08-11'),
(10, 1429.50, '2014-09-11'),
(11, 1590.87, '2014-10-01'),
(12, 1960.16, '2014-11-05'),
(13, 2626.44, '2014-11-15'),
(14, 4818.18, '2014-12-31');
/*!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 */;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment