-- phpMyAdmin SQL Dump -- version 5.0.4 -- https://www.phpmyadmin.net/ -- -- Počítač: localhost -- Vytvořeno: Ned 27. bře 2022, 22:19 -- Verze serveru: 8.0.25 -- Verze PHP: 7.4.15 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+01:00"; -- -- Databáze: `skola` -- -- -------------------------------------------------------- -- -- Struktura tabulky `demo` -- CREATE TABLE `demo` ( `id` int NOT NULL, `number` int NOT NULL, `text` text COLLATE utf8_czech_ci NOT NULL, `date` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8_czech_ci; -- -- Klíče pro exportované tabulky -- -- -- Klíče pro tabulku `demo` -- ALTER TABLE `demo` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT pro tabulky -- -- -- AUTO_INCREMENT pro tabulku `demo` -- ALTER TABLE `demo` MODIFY `id` int NOT NULL AUTO_INCREMENT; COMMIT;