You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
informatics/mysql/members.sql

63 lines
2.1 KiB

-- phpMyAdmin SQL Dump
-- version 4.9.7
-- https://www.phpmyadmin.net/
-- --------------------------------------------------------
--
-- Table structure for table `members`
--
-- Creation: Jun 14, 2022 at 04:25 AM
-- Last update: Jul 15, 2022 at 10:08 PM
--
DROP TABLE IF EXISTS `members`;
CREATE TABLE `members` (
`id` int(5) NOT NULL,
`name_team_coach` varchar(100) NOT NULL,
`coach_telefon_number` varchar(100) NOT NULL,
`trainer_mail` varchar(100) NOT NULL,
`city_team` varchar(100) NOT NULL,
`training_institution_team` varchar(100) NOT NULL,
`team_name` varchar(100) NOT NULL,
`name_first_participant` varchar(100) NOT NULL,
`first_partial_class` int(2) NOT NULL,
`name_second_participant` varchar(100) NOT NULL,
`second_class` int(2) NOT NULL,
`name_third_party` varchar(100) NOT NULL,
`third_part_class` int(2) NOT NULL,
`reg_time_add` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`status` int(1) NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `members`
--
INSERT INTO `members` (`id`, `name_team_coach`, `coach_telefon_number`, `trainer_mail`, `city_team`, `training_institution_team`, `team_name`, `name_first_participant`, `first_partial_class`, `name_second_participant`, `second_class`, `name_third_party`, `third_part_class`, `reg_time_add`, `status`) VALUES
(36, 'Красников Павел Геннадьевич', '79189458044', 'crapsh@gmail.com', 'Краснодар', 'МАОУ СОШ 103', 'Фиксики', 'Иван Филлипов', 8, 'Владислав Дельнов', 8, 'нет', 0, '2022-07-02 18:34:33', 1);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `members`
--
ALTER TABLE `members`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `members`
--
ALTER TABLE `members`
MODIFY `id` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=98;
COMMIT;
/*!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 */;