text
stringlengths
6
9.38M
SELECT s.local_student_id, s.last_name, s.first_name, u.last_name AS teacher, split_part(sec.local_section_id, '-', 1) AS homeroom, CASE WHEN grade_level_id = 1 THEN 'K' ELSE to_char(grade_level_id - 1, '1') END AS grade FROM matviews.ss_cube cube INNER JOIN public.students s ON s.student_id = cube.student_id INNER JOIN public.users u ON u.user_id = cube.user_id INNER JOIN public.sections sec ON sec.section_id = cube.section_id WHERE cube.leave_date >= current_date AND cube.site_id = 306 ORDER BY s.local_student_id
-- -- Table structure for table `devices` -- DROP TABLE IF EXISTS `devices`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `devices` ( `id` int(7) NOT NULL auto_increment, `mac` varchar(32) NOT NULL, `name` varchar(64) default NULL, `firstseen` varchar(16) default NULL, `lastseen` varchar(16) default NULL, `present` int(1) NOT NULL, `state_change` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client;
SELECT t.Name as TrackName, a.Name as ArtistName, i.* FROM InvoiceLine i JOIN track t ON t.trackId = i.TrackId JOIN Album on Album.AlbumId = t.AlbumId JOIN Artist a ON a.ArtistId = album.ArtistId ORDER BY TrackName
-- phpMyAdmin SQL Dump -- version 4.7.4 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Apr 24, 2019 at 02:15 PM -- Server version: 10.1.30-MariaDB -- PHP Version: 7.2.1 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!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 utf8mb4 */; -- -- Database: `newwork` -- -- -------------------------------------------------------- -- -- Table structure for table `activations` -- CREATE TABLE `activations` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `completed` tinyint(1) NOT NULL DEFAULT '0', `completed_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `activations` -- INSERT INTO `activations` (`id`, `user_id`, `code`, `completed`, `completed_at`, `created_at`, `updated_at`) VALUES (1, 7, 'VwPLBmSk7KT64yTSXjVzfcB4ieXlArro', 1, NULL, '2019-04-17 11:58:31', '2019-04-17 11:58:31'), (2, 8, 'HE7Ln5xD6VvTFW8FXJQbDNI8n2Grjtqp', 1, '2019-04-20 19:52:09', '2019-04-20 19:01:17', '2019-04-20 19:52:09'), (4, 10, 'aQqh0JqlVREFNUsgsuvaSBsnrzUNmqVb', 1, '2019-04-20 20:28:00', '2019-04-20 20:27:21', '2019-04-20 20:28:00'); -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_07_02_230147_migration_cartalyst_sentinel', 1); -- -------------------------------------------------------- -- -- Table structure for table `persistences` -- CREATE TABLE `persistences` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `persistences` -- INSERT INTO `persistences` (`id`, `user_id`, `code`, `created_at`, `updated_at`) VALUES (24, 10, 'ghfT76vbRXKliHG4WXlrEtvKxs19x7k6', '2019-04-20 20:30:41', '2019-04-20 20:30:41'); -- -------------------------------------------------------- -- -- Table structure for table `reminders` -- CREATE TABLE `reminders` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `completed` tinyint(1) NOT NULL DEFAULT '0', `completed_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `roles` -- CREATE TABLE `roles` ( `id` int(10) UNSIGNED NOT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `permissions` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `roles` -- INSERT INTO `roles` (`id`, `slug`, `name`, `permissions`, `created_at`, `updated_at`) VALUES (1, 'admin', 'Administrator', '{\"admin.create\":true,\"admin.show\":true,\"admin.edit\":true,\"admin.approve\":true,\"admin.delete\":true}', '2019-04-18 10:13:29', '2019-04-18 10:13:29'), (2, 'moderator', 'Moderator', '{\"moderator.create\":true,\"moderator.show\":true,\"moderator.edit\":true,\"moderator.approve\":false,\"moderator.delete\":false}', '2019-04-18 11:07:28', '2019-04-18 11:07:28'), (3, 'user', 'Normal User', '{\"user.create\":false,\"user.show\":true,\"user.edit\":false,\"user.approve\":false,\"user.delete\":false}', '2019-04-18 11:09:03', '2019-04-18 11:09:03'); -- -------------------------------------------------------- -- -- Table structure for table `role_users` -- CREATE TABLE `role_users` ( `user_id` int(10) UNSIGNED NOT NULL, `role_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `role_users` -- INSERT INTO `role_users` (`user_id`, `role_id`, `created_at`, `updated_at`) VALUES (7, 1, NULL, NULL), (8, 1, NULL, NULL), (10, 3, '2019-04-20 20:27:30', '2019-04-20 20:27:30'); -- -------------------------------------------------------- -- -- Table structure for table `throttle` -- CREATE TABLE `throttle` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED DEFAULT NULL, `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ip` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `throttle` -- INSERT INTO `throttle` (`id`, `user_id`, `type`, `ip`, `created_at`, `updated_at`) VALUES (1, NULL, 'global', NULL, '2019-04-17 13:21:57', '2019-04-17 13:21:57'), (2, NULL, 'ip', '127.0.0.1', '2019-04-17 13:21:57', '2019-04-17 13:21:57'), (3, NULL, 'global', NULL, '2019-04-17 13:22:08', '2019-04-17 13:22:08'), (4, NULL, 'ip', '127.0.0.1', '2019-04-17 13:22:08', '2019-04-17 13:22:08'), (5, NULL, 'global', NULL, '2019-04-17 13:23:34', '2019-04-17 13:23:34'), (6, NULL, 'ip', '127.0.0.1', '2019-04-17 13:23:34', '2019-04-17 13:23:34'), (7, 7, 'user', NULL, '2019-04-17 13:23:34', '2019-04-17 13:23:34'), (8, NULL, 'global', NULL, '2019-04-20 18:39:13', '2019-04-20 18:39:13'), (9, NULL, 'ip', '127.0.0.1', '2019-04-20 18:39:14', '2019-04-20 18:39:14'), (10, NULL, 'global', NULL, '2019-04-20 18:39:33', '2019-04-20 18:39:33'), (11, NULL, 'ip', '127.0.0.1', '2019-04-20 18:39:33', '2019-04-20 18:39:33'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(10) UNSIGNED NOT NULL, `username` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `permissions` text COLLATE utf8mb4_unicode_ci, `last_login` timestamp NULL DEFAULT NULL, `first_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `gender` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'female', `dob` date NOT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `profile_picture` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default.png', `salary` int(10) UNSIGNED DEFAULT NULL, `biography` text COLLATE utf8mb4_unicode_ci, `secuirty_question` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secuirty_answer` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `provider` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `provider_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `username`, `email`, `password`, `permissions`, `last_login`, `first_name`, `last_name`, `phone`, `gender`, `dob`, `location`, `profile_picture`, `salary`, `biography`, `secuirty_question`, `secuirty_answer`, `provider`, `provider_id`, `created_at`, `updated_at`) VALUES (7, 'mohamed', 'moh123@gmail.com', '$2y$10$c/KVRac0knNp.D9jUL3.Kuu9jIa2DoBGYnbcvVT21IVjAj2/hZJja', NULL, '2019-04-17 13:23:42', 'mohamed', 'ahmed', '01058547469', 'male', '1999-02-02', 'egypt', 'default.png', NULL, NULL, 'where_are_you_from', 'egypt', NULL, NULL, '2019-04-17 11:58:30', '2019-04-17 13:23:42'), (8, 'captain', 'cap123@gmail.com', '$2y$10$DgWm5zxUm0Vzo46pDMzUSuzohS7pKCOjU9U2C6FRw1PZ2dEarq6km', NULL, '2019-04-20 19:52:09', 'captain', 'modo', '0105251412', 'male', '1998-02-02', 'egypt', 'default.png', NULL, NULL, 'where_are_you_from', 'egypt', NULL, NULL, '2019-04-17 12:01:16', '2019-04-20 19:52:09'), (10, 'elmasry', 'nunetew@mail-list.top', '$2y$10$0HyOFaZ.me039RHPY0QFVuSfIqPKCFflFLkIue7hZ8MfvgCQ3fu5q', NULL, '2019-04-20 20:30:41', 'hady', 'mohaned', '01025236344', 'male', '1987-11-29', 'egypt', 'default.png', NULL, NULL, 'where_are_you_from', 'masr', NULL, NULL, '2019-04-20 20:27:21', '2019-04-20 20:30:41'); -- -- Indexes for dumped tables -- -- -- Indexes for table `activations` -- ALTER TABLE `activations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `persistences` -- ALTER TABLE `persistences` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `persistences_code_unique` (`code`); -- -- Indexes for table `reminders` -- ALTER TABLE `reminders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `roles` -- ALTER TABLE `roles` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `roles_slug_unique` (`slug`); -- -- Indexes for table `role_users` -- ALTER TABLE `role_users` ADD PRIMARY KEY (`user_id`,`role_id`); -- -- Indexes for table `throttle` -- ALTER TABLE `throttle` ADD PRIMARY KEY (`id`), ADD KEY `throttle_user_id_index` (`user_id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`), ADD UNIQUE KEY `users_username_unique` (`username`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `activations` -- ALTER TABLE `activations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `persistences` -- ALTER TABLE `persistences` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25; -- -- AUTO_INCREMENT for table `reminders` -- ALTER TABLE `reminders` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `roles` -- ALTER TABLE `roles` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `throttle` -- ALTER TABLE `throttle` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; 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 */;
********************************集群 ****目的: 1.高可用性:坏了一个,还有backup 2.负载均衡:分担负载 ****难点 1.会话复制,也就是应用是有状态的。 ****会话复制 1.客户端cookies方式 2.自己写脚本或者守护进程。session数据就会写到A服务器里,那么就可以自己写脚本或者守护进程来自动把session数据同步到其他Web服务器 3.利用NFS共享Session数据的方式。 4.利用Mysql数据库共享Session数据的方式。redies,mysql 5.使用硬件设备 这个算是比较成熟的解决方案了,使用类似BIG-IP的负载设备来实现资源共享,那么就能够又稳定又合理的的共享Session了 tomcat实现 1.节点之间 直接两两复制。tomcat的<Manager className="org.apache.catalina.ha.session.DeltaManager"/> 2.主节点和backup节点之间复制。tomcat的<Manager className="org.apache.catalina.ha.session.BackupManager"/> ********************************负载均衡 1.手动,用户自己选择。下载软件 2.DNS轮询方式,域名//多个ip。 DNS服务器去随机选择ip。也就是真实的服务器。 不可靠。如果ip x失败,则所有发往ip x的请求都失效 不均衡。域名解析的层次性。导致 缓冲一段时间的 映射。一段时间内,所有交易都发往一台机器。 3.硬件 4/7层负载均衡设备 4.软件 4层负载均衡 LVS 5.软件 7层负载均衡 nginx ********************************双机高可用 虚拟ip ip 漂移实现。 1.一个虚拟ip。两个实际ip 2.两个公网ip。两个实际ip(Nginx)。通过DNS轮询方式 nginx。 同时可以负载均衡。而且可以高可用
-- AlterTable ALTER TABLE "Investment" ADD COLUMN "deleted" BOOLEAN NOT NULL DEFAULT false; -- AlterTable ALTER TABLE "Portfolio" ADD COLUMN "deleted" BOOLEAN NOT NULL DEFAULT false; -- AlterTable ALTER TABLE "User" ADD COLUMN "deleted" BOOLEAN NOT NULL DEFAULT false;
CREATE TYPE "ROOM" as ENUM('ROOM1','ROOM2','ROOM3','ROOM4','ROOM5','ROOM6'); CREATE TABLE "Users"( "user_id" VARCHAR NOT NULL PRIMARY KEY, "user_name" VARCHAR NOT NULL, "created_at" TIMESTAMP NOT NULL DEFAULT(CURRENT_TIMESTAMP), "updated_at" TIMESTAMP NOT NULL DEFAULT(CURRENT_TIMESTAMP) ); CREATE TABLE "Meetings"( "id" SERIAL NOT NULL PRIMARY KEY, "title" VARCHAR, "room_id" ROOM NOT NULL, "begin_at" TIMESTAMP NOT NULL, "finish_at" TIMESTAMP NOT NULL, "information" VARCHAR ); /* Relation */ CREATE TABLE "_MeetingsToUsers"( "A" BIGINT NOT NULL, "B" VARCHAR NOT NULL, "created_at" TIMESTAMP NOT NULL DEFAULT(CURRENT_TIMESTAMP) ); CREATE UNIQUE INDEX "_MeetingsToUsers_Pair" ON "_MeetingsToUsers"("A" ,"B"); CREATE INDEX "_MeetingsToUsers_Meeting" ON "_MeetingsToUsers"("A");
INSERT INTO magazine(magazine_id, name, number, publisher, issue_date, update_time) VALUES( 1, 'テスト雑誌3-1', 'テスト号数3-1', 'テスト出版社3-1', DATE '2020-01-01', CURRENT_TIMESTAMP);
ALTER TABLE progressAccount ADD column workID varchar(5); UPDATE progressAccount SET workid = 2 WHERE userPosition like '%Support%' SELECT * FROM huddleupdates ALTER Table huddleupdates UPDATE progressAccount SET workid = 3, userposition = 'Consultant' WHERE username like '%Jamie%' INSERT INTO huddleupdates(huddledate, accomplishyesterday, accomplishtoday, obstacles, userid) VALUES ( 'Now()', 'aaaaaaaaaaaa', 'bbbbbbbbbbbbbb', 'cccccccccccccc', '68') INSERT INTO huddleupdates(huddledate, accomplishyesterday, accomplishtoday, obstacles, userid) VALUES ( 'Now()', 'aaaaaaaa', 'bbbbbbbbbbb', 'ccccccccccc', '68')
SELECT COUNT(`bookid`) FROM `issuedbookdetails` WHERE `studentid`='STU0005' AND `returnstatus`=0
create database user_service DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; use user_service; CREATE TABLE users (id INT AUTO_INCREMENT PRIMARY KEY, user_name VARCHAR(50) UNIQUE, first_name VARCHAR(128), last_name VARCHAR(128), email_address VARCHAR(128) UNIQUE, country_code VARCHAR(3) NOT NULL DEFAULT '91', mobile_number VARCHAR(10) UNIQUE, password VARCHAR(128) DEFAULT NULL, salt VARCHAR(32) DEFAULT NULL, address VARCHAR(255) DEFAULT NULL, country VARCHAR(100) DEFAULT NULL, city VARCHAR(100) DEFAULT NULL, created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, is_active BOOLEAN DEFAULT TRUE NOT NULL, is_deleted BOOLEAN DEFAULT FALSE NOT NULL);
-- phpMyAdmin SQL Dump -- version 4.7.4 -- https://www.phpmyadmin.net/ -- -- Хост: 127.0.0.1:3306 -- Время создания: Фев 22 2018 г., 12:54 -- Версия сервера: 5.7.19 -- Версия PHP: 7.1.9 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!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 utf8mb4 */; -- -- База данных: `lab3_3` -- -- -------------------------------------------------------- -- -- Структура таблицы `computer` -- DROP TABLE IF EXISTS `computer`; CREATE TABLE IF NOT EXISTS `computer` ( `id_computer` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `id_computer_type` tinyint(3) UNSIGNED NOT NULL, `price` float UNSIGNED NOT NULL, PRIMARY KEY (`id_computer`), KEY `id_computer_type` (`id_computer_type`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; -- -- Дамп данных таблицы `computer` -- INSERT INTO `computer` (`id_computer`, `name`, `id_computer_type`, `price`) VALUES (1, 'ASUS ROG GL553VD-DM306T', 1, 65990), (2, 'HP 14-bs000ur 1PA09EA', 1, 16990), (3, 'Apple MacBook Pro 13 Touch Bar i5 3.1/8/256 (MPXV2RU/A)', 1, 119990), (4, 'Lenovo 310-20IAP (F0CL007MRK)', 2, 20990), (5, 'ASUS ZN242IFGK-CA061T', 2, 79990); -- -------------------------------------------------------- -- -- Структура таблицы `computer_type` -- DROP TABLE IF EXISTS `computer_type`; CREATE TABLE IF NOT EXISTS `computer_type` ( `id_computer_type` tinyint(3) UNSIGNED NOT NULL AUTO_INCREMENT, `type` varchar(255) NOT NULL, PRIMARY KEY (`id_computer_type`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; -- -- Дамп данных таблицы `computer_type` -- INSERT INTO `computer_type` (`id_computer_type`, `type`) VALUES (1, 'laptop'), (2, 'candlestick'); -- -------------------------------------------------------- -- -- Структура таблицы `equipment` -- DROP TABLE IF EXISTS `equipment`; CREATE TABLE IF NOT EXISTS `equipment` ( `id_equipment` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, `id_computer` int(11) UNSIGNED NOT NULL, `id_hardware` int(11) UNSIGNED NOT NULL, PRIMARY KEY (`id_equipment`), KEY `id_computer` (`id_computer`), KEY `id_hardware` (`id_hardware`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; -- -- Дамп данных таблицы `equipment` -- INSERT INTO `equipment` (`id_equipment`, `id_computer`, `id_hardware`) VALUES (1, 1, 1), (2, 1, 2), (3, 1, 3), (4, 2, 3), (5, 2, 4), (6, 2, 5); -- -------------------------------------------------------- -- -- Структура таблицы `hardware` -- DROP TABLE IF EXISTS `hardware`; CREATE TABLE IF NOT EXISTS `hardware` ( `id_hardware` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, `type` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `manufacturer` tinyint(3) UNSIGNED NOT NULL, `quantity` int(11) UNSIGNED NOT NULL, PRIMARY KEY (`id_hardware`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; -- -- Дамп данных таблицы `hardware` -- INSERT INTO `hardware` (`id_hardware`, `type`, `name`, `manufacturer`, `quantity`) VALUES (1, 'CPU', 'Core i5-7300HQ 2.5GHz', 1, 55), (2, 'video card', 'GeForce GTX1050 2GB', 2, 400), (3, 'storage_device', 'HDD', 3, 232), (4, 'CPU', 'Celeron N3060 1.6ГГц\r\n', 1, 432), (5, 'CPU', 'Intel HD Graphics 400', 1, 3); -- -- Ограничения внешнего ключа сохраненных таблиц -- -- -- Ограничения внешнего ключа таблицы `computer` -- ALTER TABLE `computer` ADD CONSTRAINT `computer_ibfk_1` FOREIGN KEY (`id_computer_type`) REFERENCES `computer_type` (`id_computer_type`); -- -- Ограничения внешнего ключа таблицы `equipment` -- ALTER TABLE `equipment` ADD CONSTRAINT `equipment_ibfk_1` FOREIGN KEY (`id_hardware`) REFERENCES `hardware` (`id_hardware`) ON DELETE CASCADE, ADD CONSTRAINT `equipment_ibfk_2` FOREIGN KEY (`id_computer`) REFERENCES `computer` (`id_computer`) ON DELETE CASCADE ON UPDATE CASCADE; 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 */;
create or replace function GetDistance (lonA string,latA string,lonB string,latB string) return number is MLonA numeric(38,16); MLatA numeric(38,16); MLonB numeric(38,16); MLatB numeric(38,16); R numeric(38,16); C numeric(38,16); begin if nvl(lonA,0)=0 or nvl(latA,0)=0 or nvl(lonB,0)=0 or nvl(latB,0)=0 then return (-1); end if; dbms_output.put_line(nvl(lonA,0)); MLonA := cast(LonA as numeric); MLatA := cast(LatA as numeric); MLonB := cast(LonB as numeric); MLatB := cast(LatB as numeric); R := 6371000.004; C := Sin(GetRad(LatA)) * Sin(GetRad(LatB)) + Cos(GetRad(LatA)) * Cos(GetRad(LatB)) * Cos(GetRad(MLonA - MLonB)); if C > 1 then C:=1; end if; if C < -1 then C:=-1; end if; dbms_output.put_line(R); dbms_output.put_line(C); return (R * Acos(C)); end GetDistance;
CREATE TABLE IF NOT EXISTS team_totals ( id_team_total bigint, id_game bigint, team_name varchar(3), points smallint, points_quarter_one smallint, points_quarter_two smallint, points_quarter_three smallint, points_quarter_four smallint, first_downs_rushing smallint, first_downs_passing smallint, first_downs_penalty smallint, rushing_attempts smallint, rushing_yardage integer, passing_attempts smallint, passing_completions smallint, passing_yardage integer, sacks_against smallint, interceptions smallint, fumbles_against smallint, punts smallint, gross_punt_yardage integer, punt_returns smallint, punt_return_yardage integer, kickoff_returns smallint, kickoff_return_yardage integer, interception_returns smallint, interception_return_yardage integer, penalty_yardage_against integer, time_of_possession numeric, touchdowns smallint, rushing_touchdowns smallint, passing_touchdowns smallint, turnover_touchdowns smallint, field_goals_made smallint, field_goal_attempts smallint, field_goal_yardage integer, redzone_drives smallint, redzone_touchdowns smallint, big_rush_yardage integer, big_pass_yardage integer, successful_rush_plays smallint, successful_rush_firstdown smallint, successful_rush_seconddown smallint, successful_rush_thirddown smallint, successful_pass_plays smallint, successful_pass_firstdown smallint, successful_pass_seconddown smallint, successful_pass_thirddown smallint, rushing_attempts_leftend smallint, rushing_yardage_leftend integer, rushing_attempts_lefttackle smallint, rushing_yardage_lefttackle integer, rushing_attempts_leftguard smallint, rushing_yardage_leftguard integer, rushing_attempts_middle smallint, rushing_yardage_middle integer, rushing_attempts_rightguard smallint, rushing_yardage_rightguard integer, rushing_attempts_righttackle smallint, rushing_yardage_righttackle integer, rushing_attempts_rightend smallint, rushing_yardage_rightend integer, rushing_attempts_firstdown smallint, rushing_yardage_firstdown integer, rushing_attempts_seconddown smallint, rushing_yardage_seconddown integer, rushing_attempts_thirddown smallint, rushing_yardage_thirddown integer, rushing_attempts_quarterback smallint, rushing_yardage_quarterback integer, passing_attempts_shortleft smallint, passing_yardage_shortleft integer, passing_attempts_shortmiddle smallint, passing_yardage_shortmiddle integer, passing_attempts_shortright smallint, passing_yardage_shortright integer, passing_attempts_deepleft smallint, passing_yardage_deepleft integer, passing_attempts_deepmedium smallint, passing_yardage_deepmedium integer, passing_attempts_deepright smallint, passing_yardage_deepright integer, passing_attempts_wr1_2 smallint, passing_yardage_wr1_2 integer, passing_attempts_wr3_4_5 smallint, passing_yardage_wr3_4_5 integer, passing_attempts_tightend smallint, passing_yardage_tightend integer, passing_attempts_runningback smallint, passing_yardage_runningback integer, passing_shotgun_attempts smallint, passing_shotgun_yardage integer, passing_attempts_firstdown smallint, passing_yardage_firstdown integer, passing_attempts_seconddown smallint, passing_yardage_seconddown integer, passing_attempts_thirddown smallint, passing_yardage_thirddown integer, passing_completions_short smallint, passing_completions_medium smallint, passing_completions_long smallint, rushing_attempts_quarter_one smallint, rushing_yardage_quarter_one integer, passing_attempts_quarter_one smallint, passing_yardage_quarter_one integer, rushing_attempts_lateclose smallint, rushing_yardage_lateclose integer, passing_attempts_lateclose smallint, passing_yardage_lateclose integer, rushing_attempts_redzone smallint, rushing_yardage_redzone integer, passing_attempts_redzone smallint, passing_yardage_redzone integer, yardage_lost_to_sacks integer, sacks_by_lbs numeric, sacks_by_dbs numeric, starting_field_position integer, drives_on_offense smallint, net_punt_yardage integer, touchbacks smallint, punts_inside_20 smallint, return_touchdowns smallint, rushing_tackles_defensiveline numeric, passing_tackles_defensiveline numeric, rushing_tackles_linebackers numeric, passing_tackles_linebackers numeric, rushing_tackles_defensivebacks numeric, passing_tackles_defensivebacks numeric, no_huddle_attempts smallint, third_and_short_attempts smallint, third_and_short_conversions smallint, third_and_long_attempts smallint, third_and_long_conversions smallint, stuffed_runs smallint, points_by_defense smallint, false_starts smallint, penalty_offensive_holds smallint, penalty_playbook_execution smallint, penalty_defensive_line smallint, penalty_defensive_secondary smallint, penalty_dumb smallint, poor_fundamental smallint, snaps_on_offense smallint, snaps_on_defense smallint );
-- Nov 26, 2009 11:22:12 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53023 ; -- Nov 26, 2009 11:22:12 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53025 ; -- Nov 26, 2009 11:22:12 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53026 ; -- Nov 26, 2009 11:22:12 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53027 ; -- Nov 26, 2009 11:22:12 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=426 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=167 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=357 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=229 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=412 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=256 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=197 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=477 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=7, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=181 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=8, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=179 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=9, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=503 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=10, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=196 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=11, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=228 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=12, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=479 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=13, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=482 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=14, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=481 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=15, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=426 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=16, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53028 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=17, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=411 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=18, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=537 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=19, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=311 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=20, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=292 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=21, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=504 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=22, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=515 ; -- Nov 26, 2009 11:22:36 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=183, SeqNo=23, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=545 ; -- Nov 26, 2009 11:22:45 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53015 ; -- Nov 26, 2009 11:22:45 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53016 ; -- Nov 26, 2009 11:22:45 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53028 ; -- Nov 26, 2009 11:22:45 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53029 ; -- Nov 26, 2009 11:22:45 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53052 ; -- Nov 26, 2009 11:22:45 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53066 ; -- Nov 26, 2009 11:22:45 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53071 ; -- Nov 26, 2009 11:22:45 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=7, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53074 ; -- Nov 26, 2009 11:23:23 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53015 ; -- Nov 26, 2009 11:23:23 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53016 ; -- Nov 26, 2009 11:23:23 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53028 ; -- Nov 26, 2009 11:23:23 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53028 ; -- Nov 26, 2009 11:23:23 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53029 ; -- Nov 26, 2009 11:23:23 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53052 ; -- Nov 26, 2009 11:23:23 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53066 ; -- Nov 26, 2009 11:23:23 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=7, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53071 ; -- Nov 26, 2009 11:23:23 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=8, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53074 ; -- Nov 26, 2009 11:23:27 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53015 ; -- Nov 26, 2009 11:23:27 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53016 ; -- Nov 26, 2009 11:23:27 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53028 ; -- Nov 26, 2009 11:23:27 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53028 ; -- Nov 26, 2009 11:23:27 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53029 ; -- Nov 26, 2009 11:23:27 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53052 ; -- Nov 26, 2009 11:23:27 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53066 ; -- Nov 26, 2009 11:23:27 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=7, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53071 ; -- Nov 26, 2009 11:23:27 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53014, SeqNo=8, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53074 ; -- Nov 26, 2009 11:23:32 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53028 ; -- Nov 26, 2009 11:23:32 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53023 ; -- Nov 26, 2009 11:23:32 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53025 ; -- Nov 26, 2009 11:23:32 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53026 ; -- Nov 26, 2009 11:23:32 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53027 ; -- Nov 26, 2009 11:23:38 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53028 ; -- Nov 26, 2009 11:23:38 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53023 ; -- Nov 26, 2009 11:23:38 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53025 ; -- Nov 26, 2009 11:23:38 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53026 ; -- Nov 26, 2009 11:23:38 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53028 ; -- Nov 26, 2009 11:23:38 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53027 ; -- Nov 26, 2009 11:23:40 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53023 ; -- Nov 26, 2009 11:23:40 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=2, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53025 ; -- Nov 26, 2009 11:23:40 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53026 ; -- Nov 26, 2009 11:23:40 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53027 ; -- Nov 26, 2009 11:23:40 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53028 ; -- Nov 26, 2009 11:23:40 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53027 ; -- Nov 26, 2009 11:24:07 AM CST -- Libero Manufacturing UPDATE AD_Menu SET IsActive='Y',Updated=TO_TIMESTAMP('2009-11-26 11:24:07','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Menu_ID=426 ; -- Nov 26, 2009 11:27:16 AM CST -- Libero Manufacturing INSERT INTO AD_Tab (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,Created,CreatedBy,Description,EntityType,HasTree,Help,ImportFields,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,Name,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53286,53018,140,TO_TIMESTAMP('2009-11-26 11:27:15','YYYY-MM-DD HH24:MI:SS'),0,'Bill of Material product lines','EE01','N','The Bill of Materials tab defines those products that are generated from other products. A Bill of Material (BOM) is one or more Products or BOMs. Available Quantity: - Stored BOMs have to be created via "Production" - The available quantity of a non-stored BOMs is dynamically calculated - The attribute "Stored" is defined in the "Product" tab Price: - BOMs must be listed in Pricelists - If the price is 0.00, the price is dynamically calculated Printing: - Usually, only the BOM information is printed - For invoices, delivery slips and pick lists, you have the option to print the details - In the details, the quantity is listed - and the price, if this is dynamically calculated','N','Y','N','N','Y','N','N','N','N','BOM','N',150,0,TO_TIMESTAMP('2009-11-26 11:27:15','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:27:16 AM CST -- Libero Manufacturing INSERT INTO AD_Tab_Trl (AD_Language,AD_Tab_ID, CommitWarning,Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Tab t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53286 AND NOT EXISTS (SELECT * FROM AD_Tab_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Tab_ID=t.AD_Tab_ID) ; -- Nov 26, 2009 11:28:26 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53335,58082,0,53286,TO_TIMESTAMP('2009-11-26 11:28:25','YYYY-MM-DD HH24:MI:SS'),0,1,'EE01','Y','Y','N','N','N','N','N','N','Process Now',0,0,TO_TIMESTAMP('2009-11-26 11:28:25','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:28:26 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58082 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:28:27 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53331,58083,0,53286,TO_TIMESTAMP('2009-11-26 11:28:26','YYYY-MM-DD HH24:MI:SS'),0,'Client/Tenant for this installation.',22,'EE01','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','Y','N','N','N','N','N','Client',10,0,TO_TIMESTAMP('2009-11-26 11:28:26','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:28:27 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58083 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:28:28 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53341,58084,0,53286,TO_TIMESTAMP('2009-11-26 11:28:27','YYYY-MM-DD HH24:MI:SS'),0,'Organizational entity within client',22,'EE01','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','Y','N','N','N','N','Y','Organization',20,0,TO_TIMESTAMP('2009-11-26 11:28:27','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:28:28 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58084 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:28:28 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53333,58085,0,53286,TO_TIMESTAMP('2009-11-26 11:28:28','YYYY-MM-DD HH24:MI:SS'),0,'Product, Service, Item',22,'EE01','Identifies an item which is either purchased or sold in this organization.','Y','Y','Y','N','N','N','N','N','Product',30,0,TO_TIMESTAMP('2009-11-26 11:28:28','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:28:28 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58085 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:28:29 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53340,58086,0,53286,TO_TIMESTAMP('2009-11-26 11:28:28','YYYY-MM-DD HH24:MI:SS'),0,'Product Attribute Set Instance',22,'EE01','The values of the actual Product Attribute Instances. The product level attributes are defined on Product level.','Y','Y','Y','N','N','N','N','Y','Attribute Set Instance',40,0,TO_TIMESTAMP('2009-11-26 11:28:28','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:28:29 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58086 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:28:30 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53321,58087,0,53286,TO_TIMESTAMP('2009-11-26 11:28:29','YYYY-MM-DD HH24:MI:SS'),0,'Search key for the record in the format required - must be unique',22,'EE01','A search key allows you a fast method of finding a particular record. If you leave the search key empty, the system automatically creates a numeric number. The document sequence used for this fallback number is defined in the "Maintain Sequence" window with the name "DocumentNo_<TableName>", where TableName is the actual name of the table (e.g. C_Order).','Y','Y','Y','N','N','N','N','N','Search Key',50,0,TO_TIMESTAMP('2009-11-26 11:28:29','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:28:30 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58087 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:28:30 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53344,58088,0,53286,TO_TIMESTAMP('2009-11-26 11:28:30','YYYY-MM-DD HH24:MI:SS'),0,'Unit of Measure',22,'EE01','The UOM defines a unique non monetary Unit of Measure','Y','Y','Y','N','N','N','N','Y','UOM',60,0,TO_TIMESTAMP('2009-11-26 11:28:30','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:28:30 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58088 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:28:31 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53322,58089,0,53286,TO_TIMESTAMP('2009-11-26 11:28:30','YYYY-MM-DD HH24:MI:SS'),0,'Alphanumeric identifier of the entity',120,'EE01','The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.','Y','Y','Y','N','N','N','N','N','Name',70,0,TO_TIMESTAMP('2009-11-26 11:28:30','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:28:31 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58089 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:28:31 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53325,58090,0,53286,TO_TIMESTAMP('2009-11-26 11:28:31','YYYY-MM-DD HH24:MI:SS'),0,'Optional short description of the record',510,'EE01','A description is limited to 255 characters.','Y','Y','Y','N','N','N','N','N','Description',80,0,TO_TIMESTAMP('2009-11-26 11:28:31','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:28:31 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58090 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:28:32 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53329,58091,0,53286,TO_TIMESTAMP('2009-11-26 11:28:31','YYYY-MM-DD HH24:MI:SS'),0,'Comment or Hint',2000,'EE01','The Help field contains a hint, comment or help about the use of this item.','Y','Y','Y','N','N','N','N','N','Comment/Help',90,0,TO_TIMESTAMP('2009-11-26 11:28:31','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:28:32 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58091 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:28:33 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53330,58092,0,53286,TO_TIMESTAMP('2009-11-26 11:28:32','YYYY-MM-DD HH24:MI:SS'),0,'The record is active in the system',1,'EE01','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. There are two reasons for de-activating and not deleting records: (1) The system requires the record for audit purposes. (2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.','Y','Y','Y','N','N','N','N','N','Active',100,0,TO_TIMESTAMP('2009-11-26 11:28:32','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:28:33 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58092 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:28:33 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53332,58093,0,53286,TO_TIMESTAMP('2009-11-26 11:28:33','YYYY-MM-DD HH24:MI:SS'),0,'Bill of Materials (Engineering) Change Notice (Version)',10,'EE01','Y','Y','Y','N','N','N','N','Y','Change Notice',110,0,TO_TIMESTAMP('2009-11-26 11:28:33','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:28:33 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58093 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:28:34 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53323,58094,0,53286,TO_TIMESTAMP('2009-11-26 11:28:33','YYYY-MM-DD HH24:MI:SS'),0,'Document sequence number of the document',22,'EE01','The document number is usually automatically generated by the system and determined by the document type of the document. If the document is not saved, the preliminary number is displayed in "<>". If the document type of your document has no automatic document sequence defined, the field is empty if you create a new document. This is for documents which usually have an external number (like vendor invoice). If you leave the field empty, the system will generate a document number for you. The document sequence used for this fallback number is defined in the "Maintain Sequence" window with the name "DocumentNo_<TableName>", where TableName is the actual name of the table (e.g. C_Order).','Y','Y','Y','N','N','N','N','N','Document No',120,0,TO_TIMESTAMP('2009-11-26 11:28:33','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:28:34 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58094 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:28:34 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53324,58095,0,53286,TO_TIMESTAMP('2009-11-26 11:28:34','YYYY-MM-DD HH24:MI:SS'),0,10,'EE01','Y','Y','Y','N','N','N','N','Y','Revision',130,0,TO_TIMESTAMP('2009-11-26 11:28:34','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:28:34 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58095 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:28:35 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53338,58096,0,53286,TO_TIMESTAMP('2009-11-26 11:28:34','YYYY-MM-DD HH24:MI:SS'),0,'Valid from including this date (first day)',7,'EE01','The Valid From date indicates the first day of a date range','Y','Y','Y','N','N','N','N','N','Valid from',140,0,TO_TIMESTAMP('2009-11-26 11:28:34','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:28:35 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58096 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:28:36 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53339,58097,0,53286,TO_TIMESTAMP('2009-11-26 11:28:35','YYYY-MM-DD HH24:MI:SS'),0,'Valid to including this date (last day)',7,'EE01','The Valid To date indicates the last day of a date range','Y','Y','Y','N','N','N','N','Y','Valid to',150,0,TO_TIMESTAMP('2009-11-26 11:28:35','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:28:36 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58097 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:28:36 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53342,58098,0,53286,TO_TIMESTAMP('2009-11-26 11:28:36','YYYY-MM-DD HH24:MI:SS'),0,'Type of BOM',1,'EE01','The type of Bills of Materials determines the state','Y','Y','Y','N','N','N','N','N','BOM Type',160,0,TO_TIMESTAMP('2009-11-26 11:28:36','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:28:36 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58098 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:28:37 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53343,58099,0,53286,TO_TIMESTAMP('2009-11-26 11:28:36','YYYY-MM-DD HH24:MI:SS'),0,'The use of the Bill of Material',1,'EE01','By default the Master BOM is used, if the alternatives are not defined','Y','Y','Y','N','N','N','N','Y','BOM Use',170,0,TO_TIMESTAMP('2009-11-26 11:28:36','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:28:37 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58099 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:28:38 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Included_Tab_ID,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53334,58100,0,53286,TO_TIMESTAMP('2009-11-26 11:28:37','YYYY-MM-DD HH24:MI:SS'),0,'BOM & Formula',22,'EE01',53029,'Y','Y','Y','N','N','N','N','N','BOM & Formula',180,0,TO_TIMESTAMP('2009-11-26 11:28:37','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:28:38 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58100 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:28:43 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53326,58101,0,53286,TO_TIMESTAMP('2009-11-26 11:28:38','YYYY-MM-DD HH24:MI:SS'),0,'Copy BOM Lines from an exising BOM',1,'EE01','Copy BOM Lines from an exising BOM. The BOM being copied to, must not have any existing BOM Lines.','Y','N','Y','N','N','N','N','N','Copy BOM Lines From',190,0,TO_TIMESTAMP('2009-11-26 11:28:38','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:28:43 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58101 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:30:45 AM CST -- Libero Manufacturing INSERT INTO AD_Tab (AD_Client_ID,AD_Org_ID,AD_Tab_ID,AD_Table_ID,AD_Window_ID,Created,CreatedBy,Description,EntityType,HasTree,Help,ImportFields,IsActive,IsAdvancedTab,IsInfoTab,IsInsertRecord,IsReadOnly,IsSingleRow,IsSortTab,IsTranslationTab,Name,Processing,SeqNo,TabLevel,Updated,UpdatedBy) VALUES (0,0,53287,53018,140,TO_TIMESTAMP('2009-11-26 11:30:43','YYYY-MM-DD HH24:MI:SS'),0,'Components','EE01','N','Components of Bill fo Material','N','Y','N','N','Y','N','N','N','N','Components','N',160,1,TO_TIMESTAMP('2009-11-26 11:30:43','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:30:45 AM CST -- Libero Manufacturing INSERT INTO AD_Tab_Trl (AD_Language,AD_Tab_ID, CommitWarning,Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Tab_ID, t.CommitWarning,t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Tab t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Tab_ID=53287 AND NOT EXISTS (SELECT * FROM AD_Tab_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Tab_ID=t.AD_Tab_ID) ; -- Nov 26, 2009 11:31:30 AM CST -- Libero Manufacturing UPDATE AD_Tab SET AD_Table_ID=53019,Updated=TO_TIMESTAMP('2009-11-26 11:31:30','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Tab_ID=53287 ; -- Nov 26, 2009 11:31:38 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53346,58102,0,53287,TO_TIMESTAMP('2009-11-26 11:31:37','YYYY-MM-DD HH24:MI:SS'),0,'Organizational entity within client',22,'EE01','An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.','Y','Y','N','N','N','N','N','Y','Organization',0,0,TO_TIMESTAMP('2009-11-26 11:31:37','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:38 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58102 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:39 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53373,58103,0,53287,TO_TIMESTAMP('2009-11-26 11:31:38','YYYY-MM-DD HH24:MI:SS'),0,'Client/Tenant for this installation.',22,'EE01','A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.','Y','Y','N','N','N','N','N','N','Client',0,0,TO_TIMESTAMP('2009-11-26 11:31:38','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:39 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58103 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:39 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53365,58104,0,53287,TO_TIMESTAMP('2009-11-26 11:31:39','YYYY-MM-DD HH24:MI:SS'),0,'BOM Line',22,'EE01','The BOM Line is a unique identifier for a BOM line in an BOM.','Y','Y','N','N','N','N','N','N','BOM Line',0,0,TO_TIMESTAMP('2009-11-26 11:31:39','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:39 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58104 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:40 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53361,58105,0,53287,TO_TIMESTAMP('2009-11-26 11:31:39','YYYY-MM-DD HH24:MI:SS'),0,'Unique line for this document',22,'EE01','Indicates the unique line for a document. It will also control the display order of the lines within a document.','Y','Y','Y','N','N','N','N','N','Line No',10,1,TO_TIMESTAMP('2009-11-26 11:31:39','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:40 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58105 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:40 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53364,58106,0,53287,TO_TIMESTAMP('2009-11-26 11:31:40','YYYY-MM-DD HH24:MI:SS'),0,'Product, Service, Item',22,'EE01','Identifies an item which is either purchased or sold in this organization.','Y','Y','Y','N','N','N','N','N','Product',20,0,TO_TIMESTAMP('2009-11-26 11:31:40','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:40 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58106 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:41 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53350,58107,0,53287,TO_TIMESTAMP('2009-11-26 11:31:40','YYYY-MM-DD HH24:MI:SS'),0,'Component Type for a Bill of Material or Formula',0,'EE01','The Component Type can be: 1.- By Product: Define a By Product as Component into BOM 2.- Component: Define a normal Component into BOM 3.- Option: Define an Option for Product Configure BOM 4.- Phantom: Define a Phantom as Component into BOM 5.- Packing: Define a Packing as Component into BOM 6.- Planning : Define Planning as Component into BOM 7.- Tools: Define Tools as Component into BOM 8.- Variant: Define Variant for Product Configure BOM ','Y','Y','Y','N','N','N','N','Y','Component Type',30,0,TO_TIMESTAMP('2009-11-26 11:31:40','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:41 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58107 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:41 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53349,58108,0,53287,TO_TIMESTAMP('2009-11-26 11:31:41','YYYY-MM-DD HH24:MI:SS'),0,'Unit of Measure',22,'EE01','The UOM defines a unique non monetary Unit of Measure','Y','Y','Y','N','N','N','N','N','UOM',40,0,TO_TIMESTAMP('2009-11-26 11:31:41','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:41 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58108 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:42 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53362,58109,0,53287,TO_TIMESTAMP('2009-11-26 11:31:41','YYYY-MM-DD HH24:MI:SS'),0,'Product Attribute Set Instance',22,'EE01','The values of the actual Product Attribute Instances. The product level attributes are defined on Product level.','Y','Y','Y','N','N','N','N','Y','Attribute Set Instance',50,0,TO_TIMESTAMP('2009-11-26 11:31:41','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:42 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58109 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:42 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53353,58110,0,53287,TO_TIMESTAMP('2009-11-26 11:31:42','YYYY-MM-DD HH24:MI:SS'),0,'Optional short description of the record',510,'EE01','A description is limited to 255 characters.','Y','Y','Y','N','N','N','N','N','Description',60,0,TO_TIMESTAMP('2009-11-26 11:31:42','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:42 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58110 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:43 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53355,58111,0,53287,TO_TIMESTAMP('2009-11-26 11:31:42','YYYY-MM-DD HH24:MI:SS'),0,'Comment or Hint',2000,'EE01','The Help field contains a hint, comment or help about the use of this item.','Y','Y','Y','N','N','N','N','N','Comment/Help',70,0,TO_TIMESTAMP('2009-11-26 11:31:42','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:43 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58111 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:43 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53356,58112,0,53287,TO_TIMESTAMP('2009-11-26 11:31:43','YYYY-MM-DD HH24:MI:SS'),0,'The record is active in the system',1,'EE01','There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports. There are two reasons for de-activating and not deleting records: (1) The system requires the record for audit purposes. (2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.','Y','Y','Y','N','N','N','N','N','Active',80,0,TO_TIMESTAMP('2009-11-26 11:31:43','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:43 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58112 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:44 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53363,58113,0,53287,TO_TIMESTAMP('2009-11-26 11:31:43','YYYY-MM-DD HH24:MI:SS'),0,'Bill of Materials (Engineering) Change Notice (Version)',10,'EE01','Y','Y','Y','N','N','N','N','Y','Change Notice',90,0,TO_TIMESTAMP('2009-11-26 11:31:43','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:44 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58113 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:44 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53372,58114,0,53287,TO_TIMESTAMP('2009-11-26 11:31:44','YYYY-MM-DD HH24:MI:SS'),0,'Valid from including this date (first day)',7,'EE01','The Valid From date indicates the first day of a date range The Valid From and Valid To dates indicate the valid time period to use the BOM in a Manufacturing Order.','Y','N','Y','N','N','N','N','N','Valid from',100,0,TO_TIMESTAMP('2009-11-26 11:31:44','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:44 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58114 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:45 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53374,58115,0,53287,TO_TIMESTAMP('2009-11-26 11:31:44','YYYY-MM-DD HH24:MI:SS'),0,'Valid to including this date (last day)',7,'EE01','The Valid To date indicates the last day of a date range','Y','Y','Y','N','N','N','N','Y','Valid to',110,0,TO_TIMESTAMP('2009-11-26 11:31:44','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:45 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58115 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:45 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53358,58116,0,53287,TO_TIMESTAMP('2009-11-26 11:31:45','YYYY-MM-DD HH24:MI:SS'),0,'Indicate that this component is based in % Quantity',1,'EE01','Indicate that this component is based in % Quantity','Y','Y','Y','N','N','N','N','N','Is Qty Percentage',120,0,TO_TIMESTAMP('2009-11-26 11:31:45','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:45 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58116 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:46 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53357,58117,0,53287,TO_TIMESTAMP('2009-11-26 11:31:45','YYYY-MM-DD HH24:MI:SS'),0,'Indicate that a Manufacturing Order can not begin without have this component',1,'EE01','Indicate that a Manufacturing Order can not begin without have this component','Y','Y','Y','N','N','N','N','Y','Is Critical Component',130,0,TO_TIMESTAMP('2009-11-26 11:31:45','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:46 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58117 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:47 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53368,58118,0,53287,TO_TIMESTAMP('2009-11-26 11:31:46','YYYY-MM-DD HH24:MI:SS'),0,'Indicate the Quantity % use in this Formula',22,'@IsQtyPercentage@ = Y','EE01','Exist two way the add a compenent to a BOM or Formula: 1.- Adding a Component based in quantity to use in this BOM 2.- Adding a Component based in % to use the Order Quantity of Manufacturing Order in this Formula. ','Y','Y','Y','N','N','N','N','N','Quantity in %',140,0,TO_TIMESTAMP('2009-11-26 11:31:46','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:47 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58118 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:48 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53367,58119,0,53287,TO_TIMESTAMP('2009-11-26 11:31:47','YYYY-MM-DD HH24:MI:SS'),0,'Indicate the Quantity use in this BOM',22,'@IsQtyPercentage@ = N','EE01','Exist two way the add a compenent to a BOM or Formula: 1.- Adding a Component based in quantity to use in this BOM 2.- Adding a Component based in % to use the Order Quantity of Manufacturing Order in this Formula. ','Y','Y','Y','N','N','N','N','N','Quantity',150,0,TO_TIMESTAMP('2009-11-26 11:31:47','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:48 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58119 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:49 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53369,58120,0,53287,TO_TIMESTAMP('2009-11-26 11:31:48','YYYY-MM-DD HH24:MI:SS'),0,'Indicate the % Scrap for calculate the Scrap Quantity',22,'EE01','Scrap is useful to determinate a rigth Standard Cost and management a good supply.','Y','Y','Y','N','N','N','N','N','% Scrap',160,0,TO_TIMESTAMP('2009-11-26 11:31:48','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:49 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58120 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:49 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53347,58121,0,53287,TO_TIMESTAMP('2009-11-26 11:31:49','YYYY-MM-DD HH24:MI:SS'),0,'Indicated the Quantity Assay to use into Quality Order',22,'EE01','Indicated the Quantity Assay to use into Quality Order','Y','Y','Y','N','N','N','N','Y','Quantity Assay',170,0,TO_TIMESTAMP('2009-11-26 11:31:49','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:49 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58121 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:50 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53359,58122,0,53287,TO_TIMESTAMP('2009-11-26 11:31:49','YYYY-MM-DD HH24:MI:SS'),0,'There are two methods for issue the components to Manufacturing Order',1,'EE01','Method Issue: The component are delivered one for one and is necessary indicate the delivered quantity for each component. Method BackFlush: The component are delivered based in BOM, The delivered quantity for each component is based in BOM or Formula and Manufacturing Order Quantity. Use the field Backflush Group for grouping the component in a Backflush Method.','Y','Y','Y','N','N','N','N','N','Issue Method',180,0,TO_TIMESTAMP('2009-11-26 11:31:49','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:50 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58122 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:51 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53348,58123,0,53287,TO_TIMESTAMP('2009-11-26 11:31:50','YYYY-MM-DD HH24:MI:SS'),0,'The Grouping Components to the Backflush',20,'@IssueMethod@=1','EE01','When the components are deliver is possible to indicated The Backflush Group this way you only can deliver the components that are for this Backflush Group.','Y','Y','Y','N','N','N','N','Y','Backflush Group',190,0,TO_TIMESTAMP('2009-11-26 11:31:50','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:51 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58123 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:51 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53360,58124,0,53287,TO_TIMESTAMP('2009-11-26 11:31:51','YYYY-MM-DD HH24:MI:SS'),0,'Optional Lead Time offest before starting production',10,'EE01','Optional Lead Time offest before starting production','Y','Y','Y','N','N','N','N','N','Lead Time Offset',200,0,TO_TIMESTAMP('2009-11-26 11:31:51','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:51 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58124 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:52 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53345,58125,0,53287,TO_TIMESTAMP('2009-11-26 11:31:51','YYYY-MM-DD HH24:MI:SS'),0,'Indicated the Feature for Product Configure',30,'@ComponentType@=''VA'' & @BOMType@=''C'' | @ComponentType@=''OP'' & @BOMType@=''C''','EE01','Indicated the Feature for Product Configure','Y','Y','Y','N','N','N','N','N','Feature',210,0,TO_TIMESTAMP('2009-11-26 11:31:51','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:52 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58125 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:53 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,DisplayLogic,EntityType,Help,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53354,58126,0,53287,TO_TIMESTAMP('2009-11-26 11:31:52','YYYY-MM-DD HH24:MI:SS'),0,'Indicated the % of participation this component into a of the BOM Planning',22,'@BOMUse@=''P''','EE01','The BOM of Planning Type are useful to Planning the Product family. For example is possible create a BOM Planning for an Automobile 10% Automobile Red 35% Automobile Blue 45% Automobile Black 19% Automobile Green 1% Automobile Orange When Material Plan is calculated MRP generate a Manufacturing Order meet to demand to each of the Automobile','Y','Y','Y','N','N','N','N','N','Forecast',220,0,TO_TIMESTAMP('2009-11-26 11:31:52','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:53 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58126 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:31:53 AM CST -- Libero Manufacturing INSERT INTO AD_Field (AD_Client_ID,AD_Column_ID,AD_Field_ID,AD_Org_ID,AD_Tab_ID,Created,CreatedBy,Description,DisplayLength,EntityType,Included_Tab_ID,IsActive,IsCentrallyMaintained,IsDisplayed,IsEncrypted,IsFieldOnly,IsHeading,IsReadOnly,IsSameLine,Name,SeqNo,SortNo,Updated,UpdatedBy) VALUES (0,53366,58127,0,53287,TO_TIMESTAMP('2009-11-26 11:31:53','YYYY-MM-DD HH24:MI:SS'),0,'BOM & Formula',22,'EE01',53216,'Y','Y','Y','N','N','N','N','N','BOM & Formula',230,0,TO_TIMESTAMP('2009-11-26 11:31:53','YYYY-MM-DD HH24:MI:SS'),0) ; -- Nov 26, 2009 11:31:53 AM CST -- Libero Manufacturing INSERT INTO AD_Field_Trl (AD_Language,AD_Field_ID, Description,Help,Name, IsTranslated,AD_Client_ID,AD_Org_ID,Created,Createdby,Updated,UpdatedBy) SELECT l.AD_Language,t.AD_Field_ID, t.Description,t.Help,t.Name, 'N',t.AD_Client_ID,t.AD_Org_ID,t.Created,t.Createdby,t.Updated,t.UpdatedBy FROM AD_Language l, AD_Field t WHERE l.IsActive='Y' AND l.IsSystemLanguage='Y' AND l.IsBaseLanguage='N' AND t.AD_Field_ID=58127 AND NOT EXISTS (SELECT * FROM AD_Field_Trl tt WHERE tt.AD_Language=l.AD_Language AND tt.AD_Field_ID=t.AD_Field_ID) ; -- Nov 26, 2009 11:38:49 AM CST -- Libero Manufacturing UPDATE AD_Tab SET SeqNo=15,Updated=TO_TIMESTAMP('2009-11-26 11:38:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Tab_ID=53286 ; -- Nov 26, 2009 11:41:49 AM CST -- Libero Manufacturing UPDATE AD_Tab SET AD_Column_ID=53333,Updated=TO_TIMESTAMP('2009-11-26 11:41:49','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Tab_ID=53286 ; -- Nov 26, 2009 11:43:55 AM CST -- Libero Manufacturing UPDATE AD_Tab SET AD_Column_ID=NULL, WhereClause='M_Product_ID=@M_Product_ID@',Updated=TO_TIMESTAMP('2009-11-26 11:43:55','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Tab_ID=53286 ; -- Nov 26, 2009 11:45:06 AM CST -- Libero Manufacturing UPDATE AD_Tab SET SeqNo=16,Updated=TO_TIMESTAMP('2009-11-26 11:45:06','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Tab_ID=53287 ; -- Nov 26, 2009 11:45:44 AM CST -- Libero Manufacturing UPDATE AD_Field SET Included_Tab_ID=53287,Updated=TO_TIMESTAMP('2009-11-26 11:45:44','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Field_ID=58100 ; -- Nov 26, 2009 11:48:47 AM CST -- Libero Manufacturing UPDATE AD_Tab SET IsSingleRow='Y',Updated=TO_TIMESTAMP('2009-11-26 11:48:47','YYYY-MM-DD HH24:MI:SS'),UpdatedBy=0 WHERE AD_Tab_ID=53286 ; -- Nov 26, 2009 11:50:23 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=0, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53023 ; -- Nov 26, 2009 11:50:23 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=1, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53024 ; -- Nov 26, 2009 11:50:23 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=3, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53025 ; -- Nov 26, 2009 11:50:23 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=4, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53026 ; -- Nov 26, 2009 11:50:23 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=5, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53027 ; -- Nov 26, 2009 11:50:23 AM CST -- Libero Manufacturing UPDATE AD_TreeNodeMM SET Parent_ID=53022, SeqNo=6, Updated=CURRENT_TIMESTAMP WHERE AD_Tree_ID=10 AND Node_ID=53028 ;
/* --------- documents ----------- */ INSERT INTO documents (code, doc_name, version) VALUES (03, 'Свидетельство о рождении', 0); INSERT INTO documents (code, doc_name, version) VALUES (07, 'Военный билет', 0); INSERT INTO documents (code, doc_name, version) VALUES (08, 'Временное удостоверение, выданное взамен военного билета', 0); INSERT INTO documents (code, doc_name, version) VALUES (10, 'Паспорт иностранного гражданина', 0); INSERT INTO documents (code, doc_name, version) VALUES (11, 'Свидетельство о рассмотрении ходатайства о признании лица беженцем на территории Российской Федерации по существу', 0); INSERT INTO documents (code, doc_name, version) VALUES (12, 'Вид на жительство в Российской Федерации', 0); INSERT INTO documents (code, doc_name, version) VALUES (13, 'Удостоверение беженца', 0); INSERT INTO documents (code, doc_name, version) VALUES (21, 'Паспорт гражданина Российской Федерации', 0); /* --------- countries ----------- */ INSERT INTO countries (code, country_name, version) VALUES (643, 'Российская Федерация', 0); INSERT INTO countries (code, country_name, version) VALUES (624, 'Республика Гвинея-Бисау', 0); INSERT INTO countries (code, country_name, version) VALUES (612, 'ПИТКЕРН', 0); INSERT INTO countries (code, country_name, version) VALUES (585, 'Республика Палау', 0); /* --------- organisations ----------- */ INSERT INTO organisations (version, name, full_name, inn, kpp, address, phone, is_active) VALUES (0, 'SomeOrg', 'Some Unknown Organisation', '123654789874', '321654987', 'Vologda, 1-ya Lenina st, 59B', '89057889878', TRUE); INSERT INTO organisations (version, name, full_name, inn, kpp, address, phone, is_active) VALUES (0, 'MockOrg', 'Mocking Organisation', '542634789874', '322544987', 'Samara, Mashinostroenia st, 25A', '89107999878', TRUE); INSERT INTO organisations (version, name, full_name, inn, kpp, address, phone, is_active) VALUES (0, 'MockName', 'Big Mocking Organisation', '54254689874', '322788987', 'Moscow, Blinnaia st, 24A', '89106559878', FALSE ); /* --------- offices ----------- */ INSERT INTO offices (version, org_id, name, address, phone, is_active) VALUES (0, 1, 'Central SO office', 'some address 01', 89107785878, true); INSERT INTO offices (version, org_id, name, address, phone, is_active) VALUES (0, 1, 'Peripheral SO office', 'some address 02', 89456325878, true); INSERT INTO offices (version, org_id, name, address, phone, is_active) VALUES (0, 2, 'Central MO office', 'some address 03', 89456987878, true); INSERT INTO offices (version, org_id, name, address, phone, is_active) VALUES (0, 2, 'Peripheral MO office', 'some address 04', 897896545878, true); /* --------- users ----------- */ INSERT INTO users (version, office_id, first_name, last_name, middle_name, position, phone, doc_code, doc_number, doc_date, citizenship_code, is_identified) VALUES (0, 1, 'Petr', 'Koshkin', 'Petrovich', 'director', 89105621245, 21, 4556654789, '2008-02-13', 643, true); INSERT INTO users (version, office_id, first_name, last_name, middle_name, position, phone, doc_code, doc_number, doc_date, citizenship_code, is_identified) VALUES (0, 1, 'Mbanga', 'Gwele', 'Gwelewich', 'worker', 89105645445, 12, 45545454789, '2005-10-14', 624, true); INSERT INTO users (version, office_id, first_name, last_name, middle_name, position, phone, doc_code, doc_number, doc_date, citizenship_code, is_identified) VALUES (0, 2, 'Vitaliy', 'Bogatov', 'Semenovich', 'director', 89105547845, 21, 4556654546, '2010-05-10', 643, true); INSERT INTO users (version, office_id, first_name, last_name, middle_name, position, phone, doc_code, doc_number, doc_date, citizenship_code, is_identified) VALUES (0, 2, 'Ivan', 'Bednov', 'Ivanovich', 'engineer', 89145821245, 21, 4456657989, '2000-01-01', 643, true); INSERT INTO users (version, office_id, first_name, last_name, middle_name, position, phone, doc_code, doc_number, doc_date, citizenship_code, is_identified) VALUES (0, 3, 'Cabron', 'Cabronov', 'Cabronovich', 'manager', 89112321245, 10, 4789657989, '2000-10-10', 585, true); INSERT INTO users (version, office_id, first_name, last_name, middle_name, position, phone, doc_code, doc_number, doc_date, citizenship_code, is_identified) VALUES (0, 3, 'Denis', 'Davidov', 'Davidovich', 'creative designer', 88796521245, 07, 2136757989, '1980-10-10', 643, false); INSERT INTO users (version, office_id, first_name, last_name, middle_name, position, phone, doc_code, doc_number, doc_date, citizenship_code, is_identified) VALUES (0, 4, 'Pahrom', 'Baranov', 'Baranovich', 'HR', 87865521245, 10, 2549857989, '1983-12-09', 612, true); INSERT INTO users (version, office_id, first_name, last_name, middle_name, position, phone, doc_code, doc_number, doc_date, citizenship_code, is_identified) VALUES (0, 4, 'Abdula', 'Sharipov', 'Muhammedovich', 'driver', 87865789245, 13, 2872357989, '1980-10-07', 585, false); /* --------- accounts ----------- */ INSERT INTO accounts (version, name, login, password_SHA2_hash, is_activated, activation_code) VALUES (0, 'Petr', 'petr2008@gmail.com', 'qwerty', TRUE, 'fghyetr54dfr'); INSERT INTO accounts (version, name, login, password_SHA2_hash, is_activated, activation_code) VALUES (0, 'Mbanga', 'bingobongo@gmail.com', 'djavaharlalneru', FALSE, 'fghyetr54dfgdfg'); INSERT INTO accounts (version, name, login, password_SHA2_hash, is_activated, activation_code) VALUES (0, 'Vitya', 'superVitya@gmail.com', 'pass', TRUE, 'fghye545423dfr'); INSERT INTO accounts (version, name, login, password_SHA2_hash, is_activated, activation_code) VALUES (0, 'Vanya', 'asdff@gmail.com', 'vanyapass', TRUE, 'fghye5454dfdffr'); INSERT INTO accounts (version, name, login, password_SHA2_hash, is_activated, activation_code) VALUES (0, 'Caby', 'capoeira@gmail.com', 'vivevenesuela', FALSE, 'fghye45jgjghffr'); INSERT INTO accounts (version, name, login, password_SHA2_hash, is_activated, activation_code) VALUES (0, 'Dinya', 'mimohojii@gmail.com', 'jenesaispas', FALSE, 'fghyet4545dfdfr'); INSERT INTO accounts (version, name, login, password_SHA2_hash, is_activated, activation_code) VALUES (0, 'Paha', 'baran@gmail.com', 'baran1983', TRUE, 'fghy45454dfr'); INSERT INTO accounts (version, name, login, password_SHA2_hash, is_activated, activation_code) VALUES (0, 'Dulia', 'mahmud@gmail.com', 'super80', TRUE, 'fghgfgfgf54dfr');
@ "D:\Workspaces\SQL\stepDbScripts\adminCreation.sql" @ "D:\Workspaces\SQL\stepDbScripts\tablesCreation.sql"
/*3*/ SELECT * FROM countries; /*4*/ SELECT (first_name || ' ' || last_name) AS full_name, salary FROM employees; /*5*/ SELECT salary, (first_name || ' ' || last_name) AS full_name FROM employees; /*6*/ SELECT (first_name || ' ' || last_name) AS full_name FROM employees WHERE salary >= 1500; /*7*/ SELECT * FROM jobs; /*8*/ SELECT (first_name || ' ' || last_name) AS full_name FROM employees WHERE job_id = 'AD_PRES'; /*or*/ SELECT (first_name || ' ' || last_name) AS full_name FROM employees WHERE job_id = (SELECT job_id FROM jobs WHERE job_id = 'AD_PRES'); /*9*/ SELECT * FROM employees WHERE hire_date >= '01-jan-1999'; /*10*/ SELECT * FROM employees WHERE commission_pct IS NULL; /*11*/ SELECT last_name, salary FROM employees WHERE first_name LIKE 'Peter'; /*12*/ SELECT salary * 12, (first_name || ' ' || last_name) AS full_name FROM employees WHERE job_id IN (SELECT job_id FROM jobs WHERE job_title LIKE 'Programmer'); /*13*/ SELECT * FROM countries WHERE region_id BETWEEN 1 AND 3; /*14*/ SELECT job_title FROM jobs WHERE min_salary BETWEEN 1000 AND 3000; /*15*/ SELECT * FROM employees WHERE commission_pct IS NULL AND salary BETWEEN 3000 AND 10000 AND department_id = '30'; /*16*/ SELECT * FROM employees WHERE first_name LIKE 'S%' OR last_name LIKE 'S%'; /*17*/ SELECT first_name, job_id FROM employees WHERE salary >= 5000 AND department_id = '50' AND first_name LIKE 'A%'; /*18*/ SELECT * FROM employees WHERE salary >= 2000 AND first_name LIKE '%z%' OR last_name LIKE '%z%'; /*19*/ SELECT (first_name || ' ' || last_name) AS full_name FROM employees WHERE job_id IN ('AD_PRES', 'IT_PROG', 'ST_CLERK'); /*20*/ SELECT job_id FROM employees WHERE commission_pct IS NOT NULL; /*21*/ SELECT * FROM jobs ORDER BY job_title /*22*/ SELECT * FROM jobs ORDER BY max_salary DESC; /*23*/ SELECT (first_name || ' ' || last_name) AS full_name, salary FROM employees ORDER BY hire_date; /*24*/ SELECT country_name FROM countries WHERE country_name LIKE '%u%' ORDER BY country_name DESC; /*25*/ SELECT (first_name || ' ' || last_name) AS full_name FROM employees WHERE commission_pct IS NULL AND salary BETWEEN 2500 AND 9000 AND job_id IN ('ST_MAN', 'IT_PROG'); /*26*/ SELECT (first_name || ' ' || last_name) AS full_name, salary FROM employees WHERE first_name = 'David' ORDER BY last_name, salary; /*27*/ SELECT * FROM employees WHERE employee_id BETWEEN 100 AND 130 AND manager_id BETWEEN 100 AND 120 AND hire_date >= '01/01/1999' ORDER BY salary;
select 'sigm_ls,' || sel.sig as sig, round(count(distinct issue_id) / {{n}}, 2) as cnt from ( select distinct issue_id, lower(substring(dup_label_name from '(?i)sig/(.*)')) as sig from gha_issues_labels where dup_created_at >= '{{from}}' and dup_created_at < '{{to}}' ) sel where sel.sig is not null group by sig order by cnt desc, sig asc;
INSERT INTO person (id) VALUES(2); INSERT INTO person (id) VALUES(4); INSERT INTO person (id) VALUES(5);
-- -------------------------------------------------------- -- Database LayMon -- Version 1.0 -- -------------------------------------------------------- -- phpMyAdmin SQL Dump -- version 5.0.4 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1:3373 -- Server version: 10.4.17-MariaDB -- PHP Version: 7.3.25 -- -------------------------------------------------------- -- -- Table structure for table `ci_sessions` -- DROP TABLE IF EXISTS `ci_sessions`; CREATE TABLE IF NOT EXISTS `ci_sessions` ( `id` varchar(128) NOT NULL, `ip_address` varchar(45) NOT NULL, `timestamp` int(10) unsigned DEFAULT 0 NOT NULL, `data` blob NOT NULL, KEY `ci_sessions_timestamp` (`timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Table structure for table `user` -- DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `id_user` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, `username_user` varchar(20) NOT NULL, `password_user` varchar(73) NOT NULL, `tglbuat_user` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; INSERT INTO `user` (`id_user`,`username_user`, `password_user`, `tglbuat_user`) VALUES (1,'denny', '$2y$10$WNEjLV3zNWY1j/kQaoBcYeQq2C9I7wsd96q2IPpwQqhsNUXR7VAle', NOW()); -- -- Indexes for dumped tables -- ALTER TABLE `ci_sessions` ADD PRIMARY KEY (`id`, `ip_address`); ALTER TABLE `user` ADD UNIQUE (`username_user`);
CREATE DATABASE dive_db USE DATABASE dive_db CREATE TABLE topSpots( id INT NOT NULL AUTO_INCREMENT, spot varchar(255) NOT NULL, images varchar(500) NOT NULL, body varchar(1000) NOT NULL, zip INTEGER(5) NOT NULL PRIMARY KEY (id) );
/*--Part_1--------------------------------------------------------------- */ /*----------------------------------------------------------------------- */ /* THIS CREATES A SET OF VIEWS TO ESTABLISH A DAILY METRIC */ /*----------------------------------------------------------------------- */ /*--Start---------------------------------------------------------------- */ /* Count of all Active/Cleared Leads in all sectors */ CREATE OR REPLACE VIEW public."vw_allLeadsCount" as Select COUNT(fid) As "int_allLeadsCount" From opengeo."DATATABLE" Where "Cleared" = '1' AND "Archived" = '0'; /* Value of all Active/Cleared Leads */ CREATE OR REPLACE VIEW public."vw_allLeadsValueSum" AS SELECT sum("DATATABLE"."Project_Size"::float8::numeric) AS "int_allLeadsValueSum" FROM opengeo."DATATABLE" WHERE "DATATABLE".fid IS NOT NULL AND "DATATABLE"."Cleared"::text = '1'::text AND "DATATABLE"."Archived"::text = '0'::text; ALTER TABLE public."vw_allLeadsValueSum" OWNER TO postgres; /* Count of all Active/Cleared Leads in all sectors */ CREATE OR REPLACE VIEW public."vw_weekLeadsCount" as Select COUNT("Timestamp") As "int_weekLeadsCount" From opengeo."DATATABLE" Where "Cleared" ='1' AND "Archived" = '0' AND "Timestamp" > (Current_Date - interval '7 days'); /* Value of Active/Cleared Leads added in past 7 days */ CREATE OR REPLACE VIEW public."vw_weekLeadsValueSum" AS SELECT sum("DATATABLE"."Project_Size"::double precision::numeric) AS "int_weekLeadsValueSum" FROM opengeo."DATATABLE" WHERE "DATATABLE".fid IS NOT NULL AND "DATATABLE"."Cleared"::text = '1'::text AND "DATATABLE"."Archived"::text = '0'::text AND "DATATABLE"."Timestamp" > ('now'::text::date - '7 days'::interval); ALTER TABLE public."vw_weekLeadsValueSum" OWNER TO postgres; /* Administrative and Support and Waste Management and Remediation Services Active/Cleared*/ CREATE OR REPLACE VIEW public."vw_secCountASWMRS" as Select COUNT(fid) As "int_secCountASWMRS" From opengeo."DATATABLE" Where "Cleared" = '1' AND "Archived" = '0' AND "Sector" like 'Administrative and Support and Waste Management and Remediation Services'; /* Agriculture, Forestry, Fishing and Hunting Leads Active/Cleared*/ CREATE OR REPLACE VIEW public."vw_secCountAFFH" as Select COUNT(fid) As "int_secCountAFFH" From opengeo."DATATABLE" Where "Cleared" = '1' AND "Archived" = '0' AND "Sector" like 'Agriculture, Forestry, Fishing and Hunting'; /* Construction Leads Active/Cleared*/ CREATE OR REPLACE VIEW public."vw_secCountCon" as Select COUNT(fid) As "int_secCountCon" From opengeo."DATATABLE" Where "Cleared" = '1' AND "Archived" = '0' AND "Sector" like 'Construction'; /* Educational Services Leads Active/Cleared*/ CREATE OR REPLACE VIEW public."vw_secCountES" as Select COUNT(fid) As "int_secCountES" From opengeo."DATATABLE" Where "Cleared" = '1' AND "Archived" = '0' AND "Sector" like 'Educational Services'; /* Finance and Insurance Leads Active/Cleared*/ CREATE OR REPLACE VIEW public."vw_secCountFI" as Select COUNT(fid) As "int_secCountFI" From opengeo."DATATABLE" Where "Cleared" = '1' AND "Archived" = '0' AND "Sector" like 'Finance and Insurance'; /* Health Care and Social Assistance Active/Cleared*/ CREATE OR REPLACE VIEW public."vw_secCountHCSA" as Select COUNT(fid) As "int_secCountHCSA" From opengeo."DATATABLE" Where "Cleared" = '1' AND "Archived" = '0' AND "Sector" like 'Health Care and Social Assistance'; /* Information Leads Active/Cleared*/ CREATE OR REPLACE VIEW public."vw_secCountInf" as Select COUNT(fid) As "int_secCountInf" From opengeo."DATATABLE" Where "Cleared" = '1' AND "Archived" = '0' AND "Sector" like 'Information'; /* Manufacturing Leads Active/Cleared*/ CREATE OR REPLACE VIEW public."vw_secCountMan" as Select COUNT(fid) As "int_secCountMan" From opengeo."DATATABLE" Where "Cleared" = '1' AND "Archived" = '0' AND "Sector" like 'Manufacturing'; /* Mining, Quarrying, and Oil and Gas Extraction Leads Active/Cleared*/ CREATE OR REPLACE VIEW public."vw_secCountMQOGE" as Select COUNT(fid) As "int_secCountMQOGE" From opengeo."DATATABLE" Where "Cleared" = '1' AND "Archived" = '0' AND "Sector" like 'Mining, Quarrying, and Oil and Gas Extraction'; /* Professional, Scientific, and Technical Services Leads Active/Cleared*/ CREATE OR REPLACE VIEW public."vw_secCountPSTS" as Select COUNT(fid) As "int_secCountPSTS" From opengeo."DATATABLE" Where "Cleared" = '1' AND "Archived" = '0' AND "Sector" like 'Professional, Scientific, and Technical Services'; /* Public Administration Leads Active/Cleared*/ CREATE OR REPLACE VIEW public."vw_secCountPA" as Select COUNT(fid) As "int_secCountPA" From opengeo."DATATABLE" Where "Cleared" = '1' AND "Archived" = '0' AND "Sector" like 'Public Administration'; /* Transportation and Warehousing Leads Active/Cleared */ CREATE OR REPLACE VIEW public."vw_secCountTW" as Select COUNT(fid) As "int_secCountTW" From opengeo."DATATABLE" Where "Cleared" = '1' AND "Archived" = '0' AND "Sector" like 'Transportation and Warehousing'; /* Utilities Leads Active/Cleared */ CREATE OR REPLACE VIEW public."vw_secCountUtl" as Select COUNT(fid) As "int_secCountUtl" From opengeo."DATATABLE" Where "Cleared" = '1' AND "Archived" = '0' AND "Sector" like 'Utilities'; /*--End------------------------------------------------------------------ */ /*----------------------------------------------------------------------- */ /*----------------------------------------------------------------------- */ /* Now import each view to GeoServer */ /*----------------------------------------------------------------------- */
-- sakila DB 선택 # LIMIT -- 처음부터 50개만 가져오기 select * from city limit 50; -- 처음부터 50개만 가져오기 select * from city limit 0, 50; -- 101번째부터 50개 가져오기 select * from city limit 100, 50; # LIKE(대소문자 구별 없음) -- C로 시작하는 도시명 찾기 select * from city where city like 'C%'; -- C로 끝나는 도시명 찾기(권장 안함 - table full scan) select * from city where city like '%C'; -- C가 들어가는 도시명 찾기(권장 안함 - table full scan) select * from city where city like '%C%'; # LIKE(대소문자 구별) - BINARY 함수 사용 -- C가 들어가는 도시명 찾기 select * from city where city like BINARY('%C%'); # ORDER BY -- 오름차순 정렬하기 select * from city order by country_id; -- 내림차순 정렬하기 select * from city order by country_id DESC; # 내림차순 정렬하고 10개만 가져오기 select * from city order by country_id DESC LIMIT 10; # CONCAT 함수 select CONCAT('hello ', 'world!!!'); select CONCAT('hello ', 'world!!!') AS str; -- 제목:OOO, 설명:OOOOO 문자열로 결과 구성하기 select CONCAT("제목:", `title`, ", 설명:", `description`) as result from film;
ALTER TABLE ticket ADD user_id INTEGER NOT NULL; ALTER TABLE ticket ADD event_id INTEGER NOT NULL; ALTER TABLE ticket ADD FOREIGN KEY (user_id) REFERENCES "user"(id) ON DELETE CASCADE; ALTER TABLE ticket ADD FOREIGN KEY (event_id) REFERENCES event(id) ON DELETE CASCADE;
CREATE TABLE users( id BIGSERIAL PRIMARY KEY, name VARCHAR(50) NOT NULL, email VARCHAR(50) NOT NULL, pwd VARCHAR(150) NOT NULL ); --senha: admin INSERT INTO users (id, name, email, pwd) values (1, 'Administrador', 'admin@admin.com', '$2a$10$X607ZPhQ4EgGNaYKt3n4SONjIv9zc.VMWdEuhCuba7oLAL5IvcL5.'); --senha: maria INSERT INTO users (id, name, email, pwd) values (2, 'Maria Silva', 'maria@admin.com', '$2a$10$Zc3w6HyuPOPXamaMhh.PQOXvDnEsadztbfi6/RyZWJDzimE8WQjaq');
alter table ftmesven add st_venda char(1); alter table ftmesven add constraint ck_ftmesven_st check (st_venda in ('A','P','C')); comment on column ftmesven.st_venda is 'A = ABERTO, P = PAGO, C = CANCELADO'; alter table ftiteven add st_item_venda char(1); alter table ftiteven add constraint ck_ftiteven_st check (st_item_venda in ('A','P','C')); comment on column ftiteven.st_item_venda is 'A = ABERTO, P = PAGO, C = CANCELADO'; update ftmesven set st_venda = 'A'; COMMIT; insert into geiteblk values ('FTF00001','BLK01', 'ST_VENDA','SITUAÇÃO DA VENDA (ABERTO, PAGO E CANCELADO)', 'S','S', 'S','S', user, sysdate, null, null); commit; update ftiteven set st_item_venda = 'A'; commit; insert into geiteblk values ('FTF00001','BLK02', 'ST_ITEM_VENDA','SITUAÇÃO DO ITEM DA VENDA (ABERTO, PAGO E CANCELADO)', 'S','S', 'S','S', user, sysdate, null, null); COMMIT;
-- phpMyAdmin SQL Dump -- version 4.9.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1:3306 -- Generation Time: Jul 14, 2021 at 02:21 PM -- Server version: 5.7.28 -- PHP Version: 7.3.12 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!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 utf8mb4 */; -- -- Database: `jsiappr` -- -- -------------------------------------------------------- -- -- Table structure for table `approv` -- DROP TABLE IF EXISTS `approv`; CREATE TABLE IF NOT EXISTS `approv` ( `approv_id` int(11) NOT NULL AUTO_INCREMENT, `patient_id` int(11) NOT NULL, `nbre_comprime` int(11) NOT NULL, `date_approv` datetime NOT NULL, PRIMARY KEY (`approv_id`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; -- -- Dumping data for table `approv` -- INSERT INTO `approv` (`approv_id`, `patient_id`, `nbre_comprime`, `date_approv`) VALUES (1, 1, 15, '2021-07-10 00:00:00'), (2, 2, 10, '2021-07-12 00:00:00'), (3, 2, 20, '2021-07-07 16:02:00'); -- -------------------------------------------------------- -- -- Table structure for table `patient` -- DROP TABLE IF EXISTS `patient`; CREATE TABLE IF NOT EXISTS `patient` ( `patient_id` int(11) NOT NULL AUTO_INCREMENT, `nom` varchar(255) NOT NULL, `prenom` varchar(255) NOT NULL, `date_naissance` date NOT NULL, `sexe` varchar(255) NOT NULL, `date_positif` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`patient_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; -- -- Dumping data for table `patient` -- INSERT INTO `patient` (`patient_id`, `nom`, `prenom`, `date_naissance`, `sexe`, `date_positif`) VALUES (1, 'ndayishimiye', 'eric', '2018-09-10', 'Male', '2021-06-30 22:00:00'), (2, 'NKezimana', 'Rose', '2019-01-22', 'Female', '2021-07-08 22:00:00'); 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 */;
-- phpMyAdmin SQL Dump -- version 5.1.0 -- https://www.phpmyadmin.net/ -- -- Хост: 127.0.0.1 -- Час створення: Чрв 30 2021 р., 21:45 -- Версія сервера: 10.4.19-MariaDB -- Версія PHP: 7.4.19 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!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 utf8mb4 */; -- -- База даних: `logging` -- -- -------------------------------------------------------- -- -- Структура таблиці `logs` -- CREATE TABLE `logs` ( `id` bigint(20) NOT NULL, `log` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Індекси збережених таблиць -- -- -- Індекси таблиці `logs` -- ALTER TABLE `logs` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT для збережених таблиць -- -- -- AUTO_INCREMENT для таблиці `logs` -- ALTER TABLE `logs` MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT; 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 */;
SELECT DISTINCT serial_num AS msn, ac_reg_num, fleet_id, model, serial_num, flight_no, startlocation, endlocation, starttime, endtime, endtimeyyyy, tail_number, message, report_date_time FROM bombardier.servb_pfs_aircraft_servicing %s ORDER BY ac_reg_num, endtimeyyyy DESC, case when (upper(message) like '%%ACTIVE%%') then 1 else 2 end
CREATE DATABASE IF NOT EXISTS `divisima_test`; GRANT ALL ON `divisima_test`.* TO 'homestead'@'%'; FLUSH PRIVILEGES;
[getRootNodes] SELECT a.* FROM references_tblfinfund a WHERE a.parentfund_objid IS NULL ORDER BY a.name [getChildNodes] SELECT a.* FROM references_tblfinfund a WHERE a.parentfund_objid = $P{objid} ORDER BY a.name [getList] SELECT a.* FROM references_tblfinfund a WHERE a.parentfund_objid = $P{objid} AND (a.code LIKE $P{searchtext} OR a.name LIKE $P{searchtext}) ORDER BY a.name [getSearch] SELECT a.* FROM references_tblfinfund a WHERE a.code LIKE $P{searchtext} OR a.name LIKE $P{searchtext} ORDER BY a.name [approve] UPDATE references_tblfinfund SET state='APPROVED' WHERE objid=$P{objid} [changeParent] UPDATE references_tblfinfund SET parentfund_objid=$P{parentfund_objid},lft=$P{lft},rgt=$P{rgt} WHERE objid=$P{objid} [findParent] SELECT * FROM references_tblfinfund WHERE objid = $P{parentfund_objid} [changeNodeRight] UPDATE references_tblfinfund SET rgt = rgt + 2 WHERE rgt > $P{myRight} [changeNodeLeft] UPDATE references_tblfinfund SET lft = lft + 2 WHERE lft > $P{myRight} [changeParentRight] UPDATE references_tblfinfund SET rgt = rgt + 2 WHERE rgt > $P{myLeft} [changeParentLeft] UPDATE references_tblfinfund SET lft = lft + 2 WHERE lft > $P{myLeft}
create temp table repos as (select id, name from gha_repos where org_login in ('open-cluster-management')); delete from gha_branches where repo_id in (select id from repos); delete from gha_teams_repositories where repository_id in (select id from repos); delete from gha_pull_requests_assignees where event_id in (select id from gha_events where dup_repo_name in (select name from repos)); delete from gha_pull_requests_requested_reviewers where event_id in (select id from gha_events where dup_repo_name in (select name from repos)); delete from gha_issues_assignees where event_id in (select id from gha_events where dup_repo_name in (select name from repos)); delete from gha_releases_assets where event_id in (select id from gha_events where dup_repo_name in (select name from repos)); delete from gha_commits_files where sha in (select sha from gha_commits where dup_repo_name in (select name from repos)); delete from gha_skip_commits where sha in (select sha from gha_commits where dup_repo_name in (select name from repos)); delete from gha_repos where name in (select name from repos); delete from gha_events where dup_repo_name in (select name from repos); delete from gha_repos_langs where repo_name in (select name from repos); delete from gha_payloads where dup_repo_name in (select name from repos); delete from gha_commits where dup_repo_name in (select name from repos); delete from gha_commits_roles where dup_repo_name in (select name from repos); delete from gha_pages where dup_repo_name in (select name from repos); delete from gha_comments where dup_repo_name in (select name from repos); delete from gha_reviews where dup_repo_name in (select name from repos); delete from gha_issues where dup_repo_name in (select name from repos); delete from gha_milestones where dup_repo_name in (select name from repos); delete from gha_issues_labels where dup_repo_name in (select name from repos); delete from gha_forkees where dup_repo_name in (select name from repos); delete from gha_releases where dup_repo_name in (select name from repos); delete from gha_assets where dup_repo_name in (select name from repos); delete from gha_pull_requests where dup_repo_name in (select name from repos); delete from gha_teams where dup_repo_name in (select name from repos); delete from gha_events_commits_files where dup_repo_name in (select name from repos); delete from gha_texts where repo_name in (select name from repos); delete from gha_issues_events_labels where repo_name in (select name from repos); delete from gha_issues_pull_requests where repo_name in (select name from repos);
CREATE DATABASE IF NOT EXISTS `website` /*!40100 DEFAULT CHARACTER SET utf8 */; USE `website`; -- MySQL dump 10.13 Distrib 8.0.15, for Win64 (x86_64) -- -- Host: localhost Database: website -- ------------------------------------------------------ -- Server version 8.0.15 /*!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 */; SET NAMES utf8 ; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `member` -- DROP TABLE IF EXISTS `member`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `member` ( `member_no` int(11) NOT NULL AUTO_INCREMENT, `member_cafe_name` varchar(45) DEFAULT NULL, `member_user_id` varchar(45) DEFAULT NULL, `member_grade` varchar(10) DEFAULT NULL, `member_board_count` int(11) NOT NULL DEFAULT '0', `member_visit_count` int(11) NOT NULL DEFAULT '0', `member_last_vist` datetime DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`member_no`), KEY `member_cafe_name_idx` (`member_cafe_name`), KEY `member_user_id_idx` (`member_user_id`), CONSTRAINT `member_cafe_name` FOREIGN KEY (`member_cafe_name`) REFERENCES `cafe` (`cafe_name`), CONSTRAINT `member_user_id` FOREIGN KEY (`member_user_id`) REFERENCES `user` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `member` -- LOCK TABLES `member` WRITE; /*!40000 ALTER TABLE `member` DISABLE KEYS */; INSERT INTO `member` VALUES (6,'강아지 키우기','asdf','씨앗',1,0,'2019-04-30 14:33:31'),(7,'강아지 키우기','abcd','가지',1,0,'2019-04-30 14:33:31'),(8,'고양이 키우기','asdf','씨앗',0,0,'2019-04-30 14:33:31'),(9,'명산 산약초','asdf','씨앗',0,0,'2019-04-30 14:33:31'),(10,'파산회생 무료 상담','asdf','씨앗',0,0,'2019-04-30 14:33:31'),(11,'스타워즈','abcd','나무',0,0,'2019-04-30 14:34:22'),(12,'세계대전 떡밥','abcd','열매',0,0,'2019-04-30 14:34:22'),(13,'강아지 키우기','naver','나무',0,0,'2019-04-30 14:35:36'),(14,'고양이 키우기','naver','나무',0,0,'2019-04-30 14:35:36'),(15,'명산 산약초','naver','나무',0,0,'2019-04-30 14:35:36'),(16,'파산회생 무료 상담','naver','나무',0,0,'2019-04-30 14:35:36'),(17,'강아지 키우기','daum',NULL,0,0,'2019-04-30 14:37:27'),(18,'고양이 키우기','daum',NULL,0,0,'2019-04-30 14:37:27'),(19,'명산 산약초','daum',NULL,0,0,'2019-04-30 14:37:27'),(20,'세계대전 떡밥','daum',NULL,0,0,'2019-04-30 14:37:27'),(21,'스타워즈','daum',NULL,0,0,'2019-04-30 14:37:27'),(22,'파산회생 무료 상담','daum',NULL,0,0,'2019-04-30 14:37:27'),(23,'스타워즈','google',NULL,0,0,'2019-04-30 14:37:48'); /*!40000 ALTER TABLE `member` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!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 */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2019-04-30 16:37:15
SELECT e1.eno, e1.manager, e2.eno FROM employee e1, employee e2 WHERE e1.manager = e2.eno; --where 절 내에서 좌변이나 우변 둘중하나가 null값이면 출력테이블에서 제외 --null을 표현하지 않으면 inner조인 , null값을 표시하면 outer조인 ( 보통 inner조인) SELECT e1.eno, e1.ename, e1.manager, e2.eno, e2.ename FROM employee e1 LEFT OUTER JOIN employee e2 ON e1.manager = e2.eno; SELECT e1.eno, e1.ename, e1.manager, e2.eno, e2.ename FROM employee e1, employee e2 where e1.manager = e2.eno(+); SELECT e1.eno, e1.ename, e1.manager, e2.eno, e2.ename FROM employee e1 RIGHT OUTER JOIN employee e2 ON e1.manager = e2.eno; SELECT e1.eno, e1.ename, e1.manager, e2.eno, e2.ename FROM employee e1, employee e2 where e1.manager(+) = e2.eno; SELECT e1.eno, e1.ename, e1.manager, e2.eno, e2.ename FROM employee e1 FULL OUTER JOIN employee e2 ON e1.manager = e2.eno; --outer조인 예(LEFT or RIGHT 는 on 뒷쪽에 선언된 왼쪽 or 오른쪽 테이블에서의 null값을 출력하겠다는 의미 SELECT e1.eno, e1.ename, e1.manager, e2.eno, e2.ename FROM employee e1 JOIN employee e2 ON e1.manager = e2.eno; SELECT e1.eno, e1.ename, e1.manager, e2.eno, e2.ename FROM employee e1, employee e2 WHERE e1.eno = e2.manager; SELECT e.ename, d.dname, d.loc FROM employee e INNER JOIN department d on e.dno = d.dno; SELECT dno, job , loc FROM employee join department using (dno) WHERE dno = 10; SELECT e.ename, d.dname, d.loc FROM employee e NATURAL JOIN department d WHERE commission>0; SELECT e.ename, e.job, dno, d.dname FROM employee e NATURAL JOIN department d WHERE d.loc = 'NEW YORK'; SELECT e1.ename, e1.eno, e2.ename, e2.eno FROM employee e1, employee e2 WHERE e1.manager = e2.eno; SELECT e1.ename, e1.manager, e2.eno, e2.ename FROM employee e1 LEFT OUTER JOIN employee e2 on e1.manager = e2.eno ORDER BY e1.eno DESC; SELECT e1.ename, e1.dno, e2.ename FROM employee e1, employee e2 WHERE e1.eno = 7788 AND e1.dno = e2.dno AND e2.eno <> 7788; SELECT e2.ename, e2.hiredate FROM employee e1, employee e2 WHERE e2.hiredate > e1.hiredate AND e1.ename = 'WARD'; SELECT e1.ename as "부하이름", e1.hiredate as "부하입사일", e2.ename as "매니저 이름", e2.hiredate as "매니저 입사일" FROM employee e1, employee e2 WHERE e1.manager = e2.eno AND e1.hiredate <= e2.hiredate;
use sec05group06; drop trigger if exists chargeCard; drop trigger if exists updateCharge; drop trigger if exists checkCharge; drop trigger if exists checkActive; drop trigger if exists checkCardOwner; CREATE TRIGGER chargeCard before INSERT ON Reservations FOR EACH ROW UPDATE CreditCard SET CreditCard.balance = (DATEDIFF(toDate(NEW.CheckOut), toDate(NEW.CheckIn)) * NEW.rate) + CreditCard.balance WHERE EXISTS (SELECT * FROM Payment, Customers WHERE Payment.cardNum = CreditCard.cardNum and Payment.cID = Customers.username and NEW.code = Payment.resID); CREATE TRIGGER updateCharge before update ON Reservations FOR EACH ROW UPDATE CreditCard SET CreditCard.balance = (DATEDIFF(toDate(NEW.CheckOut), toDate(NEW.CheckIn)) * NEW.rate) + CreditCard.balance - (DATEDIFF(toDate(OLD.CheckOut), toDate(OLD.CheckIn)) * OLD.rate); DELIMITER $ CREATE TRIGGER checkCharge BEFORE UPDATE ON CreditCard FOR EACH ROW BEGIN IF NEW.balance >= NEW.creditLim THEN SIGNAL SQLSTATE '11113' SET MESSAGE_TEXT = 'Your credit limit was exceeded. Please try again'; END IF; END$ DELIMITER ; DELIMITER $ CREATE TRIGGER checkActive BEFORE UPDATE ON CreditCard FOR EACH ROW BEGIN IF !NEW.active THEN SIGNAL SQLSTATE '11114' SET MESSAGE_TEXT = 'Your card is not activated. Please try again'; END IF; END$ DELIMITER ; DELIMITER $ CREATE TRIGGER checkCardOwner BEFORE INSERT ON Reservations FOR EACH ROW BEGIN IF !(EXISTS (SELECT * FROM Payment, Customers, CreditCard WHERE Payment.cardNum = CreditCard.cardNum and Payment.cID = Customers.username and NEW.code = Payment.resID and CreditCard.customerID = Customers.username)) THEN SIGNAL SQLSTATE '11115' SET MESSAGE_TEXT = 'That card is not under your name. Please try again'; END IF; END$ DELIMITER ;
SELECT ProjectName, Max(Deadline) as NewFinishDate FROM -- получить проект и выбрать из дедлайн задачи которая была закрыта последней Everything WHERE ProjectName = (SELECT W.ProjectName FROM ((SELECT ProjectName, COUNT(TaskContent) AS TaskCount FROM Everything GROUP BY ProjectName) AS W JOIN (SELECT ProjectName, COUNT(ProjectName) AS FinishedTasks FROM Everything -- получить закрытые задачи по проектам WHERE TaskStatus IN (SELECT Id FROM TaskStatus WHERE Status = 'Закрыта') GROUP BY ProjectName) AS WW ON W.ProjectName = WW.ProjectName) WHERE FinishedTasks = TaskCount) AND TaskStatus = 4 Group by ProjectName
create table UserRegister(UserId serial primary key, fullName varchar(100) not null, userName varchar(20) not null, email varchar(100) not null, mobileNumber bigint not null, password varchar(100) not null, address varchar(200), SecurityQuestion varchar(100) not null, SecurityAnswer varchar(100) not null, unique(email), unique(mobileNumber)); select * from UserRegister;
select * from produto; UPDATE `FULLSTACKELETRO`.`PRODUTO` SET IDPRODUTO = 3 WHERE (IDPRODUTO = 101); UPDATE `FULLSTACKELETRO`.`PRODUTO` SET DATA_INCLUSAO = '2020/10/13' WHERE (idproduto = 1); -- ANO/MES/DIA UPDATE `FULLSTACKELETRO`.`PRODUTO` SET DATA_INCLUSAO = '2020/10/14' WHERE (IDPRODUTO >= 1); -- INSERIR UMA DATA PARA UMA TODOS OS PRODUTOS. update `produto` set idproduto = 4 where (idproduto = 102); update `produto` set idproduto = 5 where (idproduto = 103); ALTER TABLE `fullstackeletro`.`produto` AUTO_INCREMENT = 6; -- Altetera o valor de incremento da tabela. SHOW TABLE STATUS LIKE 'produto'; -- Mostra informacos sobre a tabela produto insert into `produto` (categoria, descricao, preco, precofinal, imagem) values ('lavaloucas', 'Lava-louças Brastemp BLF10BB', 3699.00, 3329.00, 'imgs/lava_pratos1.jpeg'); insert into `produto` (categoria, descricao, preco, precofinal, imagem) values ('microondas', 'Micro-ondas Electrolux MTD30', 499.00, 399.00, 'imgs/microondas1.jpeg'); insert into `produto` (categoria, descricao, preco, precofinal, imagem) values ('microondas', 'Micro-ondas Midea 20L MTFB21', 499.00, 32700, 'imgs/microondas2.jpeg'); insert into `produto` (categoria, descricao, preco, precofinal, imagem) values ('microondas', 'Microondas Midea 31L Branco Espelhado MTFE4 110V', 494.00, 343.00, 'imgs/microondas3.jpeg'), ('fogao', 'Fogão 4 Bocas Consul Branco', 899.00, 782.00, 'imgs/fogao1.jpeg'), ('fogao', 'Fogão À Gás 5 Bocas Atlas Agile Glass Tripla Chama Automático Preto', 1249.00, 1069.00, 'imgs/fogao2.jpeg'), ('lavaroupas', 'Lavadora de Roupas Brastemp BWK12AB 12Kg', 2199.00, 1779.00, 'imgs/maquina_de_lavar_roupa1.jpeg'), ('lavaroupas', 'Lavadora de Roupas Electrolux LAC13', 1899.00, 1599.00, 'imgs/maquina_de_lavar_roupa2.jpeg'), ('lavaroupas', 'Lavadora de Roupas Electrolux LAC12', 3279.00, 166900, 'iimgs/maquina_de_lavar_roupa3.jpeg'); -- Nao necessariamente percisamos informar as colunas, caso os nossos values estejam na possicao correta! ALTER TABLE `FULLSTACKELETRO`.`PRODUTO` CHANGE COLUMN `DATA_INCLUSAO` `DATA_INCLUSAO` DATE NULL DEFAULT NULL; CREATE USER 'Gabriel'@'%' IDENTIFIED WITH mysql_native_password BY 'password123'; -- Criar ususario e senha. E na aba de Users and Privileges podemos dar privilegios para este ususario. show variables like 'datadir'; -- Verificar o diretorio do meu MySQL
SELECT O.ANIMAL_ID, O.NAME FROM ANIMAL_OUTS O LEFT JOIN ANIMAL_INS I ON I.ANIMAL_ID=O.ANIMAL_ID WHERE I.ANIMAL_ID IS NULL ORDER BY O.ANIMAL_ID;
-- phpMyAdmin SQL Dump -- version 5.0.1 -- https://www.phpmyadmin.net/ -- -- Hôte : 127.0.0.1 -- Généré le : jeu. 20 fév. 2020 à 20:13 -- Version du serveur : 10.4.11-MariaDB -- Version de PHP : 7.2.27 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!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 utf8mb4 */; -- -- Base de données : `testing` -- -- -------------------------------------------------------- -- -- Structure de la table `category` -- CREATE TABLE `category` ( `id` int(11) NOT NULL, `name` varchar(64) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Déchargement des données de la table `category` -- INSERT INTO `category` (`id`, `name`) VALUES (1, 'cable'), (6, 'cartridge'), (5, 'headphone'), (2, 'keyboard'), (3, 'mouse'), (4, 'screen'); -- -------------------------------------------------------- -- -- Structure de la table `configuration` -- CREATE TABLE `configuration` ( `id` int(11) NOT NULL, `number` int(11) DEFAULT NULL, `room_id` int(11) NOT NULL, `type_id` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Déchargement des données de la table `configuration` -- INSERT INTO `configuration` (`id`, `number`, `room_id`, `type_id`) VALUES (1, 1, 1, 1), (2, 2, 1, 1), (3, 3, 1, 1), (4, 1, 2, 1), (5, 2, 2, 1), (6, 1, 3, 2), (7, 2, 3, 2), (8, NULL, 3, 3), (9, NULL, 4, 2); -- -------------------------------------------------------- -- -- Structure de la table `contact` -- CREATE TABLE `contact` ( `id` int(11) NOT NULL, `name` varchar(128) NOT NULL, `email` varchar(128) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Déchargement des données de la table `contact` -- INSERT INTO `contact` (`id`, `name`, `email`) VALUES (1, 'Bastien LEGOY', 'bastien.legoy@cegepsi.com'), (2, 'First LAST', NULL); -- -------------------------------------------------------- -- -- Structure de la table `equipment` -- CREATE TABLE `equipment` ( `id` int(11) NOT NULL, `quantity` int(11) NOT NULL, `item_id` int(11) NOT NULL, `config_id` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Déchargement des données de la table `equipment` -- INSERT INTO `equipment` (`id`, `quantity`, `item_id`, `config_id`) VALUES (1, 20, 1, NULL), (2, 1, 1, 1), (3, 10, 2, NULL), (4, 1, 2, 9), (5, 5, 3, NULL), (6, 2, 3, 3), (7, 1, 3, 5); -- -------------------------------------------------------- -- -- Structure de la table `item` -- CREATE TABLE `item` ( `id` int(11) NOT NULL, `name` varchar(128) NOT NULL, `barcode` varchar(8) NOT NULL, `manufacturer` varchar(128) DEFAULT NULL, `provider` varchar(128) DEFAULT NULL, `description` text DEFAULT NULL, `restock` int(11) NOT NULL, `category_id` int(11) NOT NULL, `contact_id` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Déchargement des données de la table `item` -- INSERT INTO `item` (`id`, `name`, `barcode`, `manufacturer`, `provider`, `description`, `restock`, `category_id`, `contact_id`) VALUES (1, 'Wireless Mouse', '00000001', NULL, NULL, NULL, 10, 3, NULL), (2, 'Wireless Headphone', '00000002', NULL, NULL, 'Bluetooth only', 5, 5, 1), (3, 'HDMI Cable', '12345678', NULL, NULL, 'HDMI Male - Male', 20, 1, 2); -- -------------------------------------------------------- -- -- Structure de la table `room` -- CREATE TABLE `room` ( `id` int(11) NOT NULL, `name` varchar(32) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Déchargement des données de la table `room` -- INSERT INTO `room` (`id`, `name`) VALUES (2, 'H211'), (1, 'H212'), (4, 'Hall'), (3, 'Library'); -- -------------------------------------------------------- -- -- Structure de la table `type` -- CREATE TABLE `type` ( `id` int(11) NOT NULL, `name` varchar(64) NOT NULL, `description` text DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Déchargement des données de la table `type` -- INSERT INTO `type` (`id`, `name`, `description`) VALUES (1, 'Computer', NULL), (2, 'Laptop', 'Smaller, weaker amd more expensive computer'), (3, 'Server', NULL); -- -- Index pour les tables déchargées -- -- -- Index pour la table `category` -- ALTER TABLE `category` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `name` (`name`); -- -- Index pour la table `configuration` -- ALTER TABLE `configuration` ADD PRIMARY KEY (`id`), ADD KEY `fk_to_room` (`room_id`), ADD KEY `fk_to_type` (`type_id`); -- -- Index pour la table `contact` -- ALTER TABLE `contact` ADD PRIMARY KEY (`id`); -- -- Index pour la table `equipment` -- ALTER TABLE `equipment` ADD PRIMARY KEY (`id`), ADD KEY `fk_to_item` (`item_id`), ADD KEY `fk_to_configuration` (`config_id`); -- -- Index pour la table `item` -- ALTER TABLE `item` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `item_barcode` (`barcode`), ADD KEY `fk_to_category` (`category_id`), ADD KEY `fk_to_contact` (`contact_id`); -- -- Index pour la table `room` -- ALTER TABLE `room` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `room_name` (`name`); -- -- Index pour la table `type` -- ALTER TABLE `type` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `type_name` (`name`); -- -- AUTO_INCREMENT pour les tables déchargées -- -- -- AUTO_INCREMENT pour la table `category` -- ALTER TABLE `category` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT pour la table `configuration` -- ALTER TABLE `configuration` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT pour la table `contact` -- ALTER TABLE `contact` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT pour la table `equipment` -- ALTER TABLE `equipment` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT pour la table `item` -- ALTER TABLE `item` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT pour la table `room` -- ALTER TABLE `room` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT pour la table `type` -- ALTER TABLE `type` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- Contraintes pour les tables déchargées -- -- -- Contraintes pour la table `configuration` -- ALTER TABLE `configuration` ADD CONSTRAINT `fk_to_room` FOREIGN KEY (`room_id`) REFERENCES `room` (`id`), ADD CONSTRAINT `fk_to_type` FOREIGN KEY (`type_id`) REFERENCES `type` (`id`); -- -- Contraintes pour la table `equipment` -- ALTER TABLE `equipment` ADD CONSTRAINT `fk_to_configuration` FOREIGN KEY (`config_id`) REFERENCES `configuration` (`id`), ADD CONSTRAINT `fk_to_item` FOREIGN KEY (`item_id`) REFERENCES `item` (`id`); -- -- Contraintes pour la table `item` -- ALTER TABLE `item` ADD CONSTRAINT `fk_to_category` FOREIGN KEY (`category_id`) REFERENCES `category` (`id`), ADD CONSTRAINT `fk_to_contact` FOREIGN KEY (`contact_id`) REFERENCES `contact` (`id`); 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 */;
-- Vistas -- obtener el fragmento minitermino mixto de los estudiantes con su -- clave, nombre y nota media CREATE OR REPLACE VIEW v_estudiante_nota_media AS SELECT p.id, p.nombre, p.primer_apellido, p.segundo_apellido, AVG(em.calificacion) AS nota_media FROM persona p JOIN estudiante_materia em ON p.id = em.estudiante_id JOIN materia m ON em.materia_id = m.clave GROUP BY p.id, p.nombre, p.primer_apellido, p.segundo_apellido; -- visualizar la cantidad invertida por los clientes en el viaje con su nombre CREATE OR REPLACE VIEW v_cliente_inversion AS SELECT p.id, c.nickname, SUM(cv.cant_pagada) AS total FROM persona p JOIN cliente c ON p.id = c.id JOIN compra_viaje cv ON c.id = cv.cliente_id GROUP BY p.id, c.nickname ORDER BY total DESC; -- clientes que no son estudiantes CREATE OR REPLACE VIEW v_cliente_no_estudiante AS SELECT p.id, p.nombre FROM persona p JOIN cliente c ON p.id = c.id AND NOT p.id IN (SELECT persona_id FROM estudiante);
WITH coach_count AS ( SELECT count(members.id) FROM members JOIN subscriptions ON subscriptions.member_id = members.id JOIN groups ON groups.id = subscriptions.group_id JOIN chapters ON chapters.id = groups.chapter_id WHERE groups.name = 'Coaches' ) , student_count AS ( SELECT count(members.id) FROM members JOIN subscriptions ON subscriptions.member_id = members.id JOIN groups ON groups.id = subscriptions.group_id JOIN chapters ON chapters.id = groups.chapter_id WHERE groups.name = 'Students' ) , chapter_count AS ( SELECT count(chapters.id) FROM chapters WHERE chapters.active IS TRUE ) , workshop_count AS ( SELECT count(id) FROM workshops ) , monthlies_count AS ( SELECT count(id) FROM meetings ) , events_count AS ( SELECT count(id) FROM events ) , busiest_month AS ( SELECT count(workshops.id) , extract(month FROM workshops.date_and_time) as month FROM workshops GROUP BY extract(month FROM workshops.date_and_time) ORDER BY count DESC limit 1 ) , slowest_month AS ( SELECT count(workshops.id) , extract(month FROM workshops.date_and_time) as month FROM workshops GROUP BY extract(month FROM workshops.date_and_time) ORDER BY count ASC limit 1 ) , average_rating AS ( SELECT avg(feedbacks.rating) FROM feedbacks ) SELECT coach_count.count AS coach_count , student_count.count AS student_count , chapter_count.count AS chapter_count , workshop_count.count AS workshop_count , monthlies_count.count AS monthlies_count , events_count.count AS events_count , busiest_month.month AS busiest_month , slowest_month.month AS slowest_month , average_rating.avg AS average_rating FROM coach_count , student_count , chapter_count , workshop_count , monthlies_count , events_count , busiest_month , slowest_month , average_rating;
CREATE DATABASE IF NOT EXISTS voca DEFAULT CHARSET utf8mb4 COLLATE utf8mb4_unicode_ci; use voca; drop table if exists `voca`; create table `voca` ( `id` bigint(20) primary key auto_increment, `user_id` bigint(20) not null, `content` varchar(100) not null, `chinese` varchar(100) not null, `pronounce` varchar(200), `phonetic` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `sentence` varchar(200), `create_time` datetime(0) default CURRENT_TIMESTAMP ) ENGINE=InnoDB CHARACTER set utf8mb4 COLLATE = utf8mb4_unicode_ci; create table `voca_library` ( `id` bigint(20) primary key auto_increment, `content` varchar(100) not null, `phonetic` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `chinese` varchar(100) not null, `pronounce` varchar(200), `sentence` varchar(200) ); ALTER TABLE voca ADD UNIQUE KEY(user_id, content); create table `user` ( `id` bigint(20) primary key auto_increment, `name` bigint(20) not null, `password` varchar(100) not null, `avatar` varchar(200), `gender` int(11), `description` varchar(200), `create_time` datetime(0) default CURRENT_TIMESTAMP )
-- CREATE DATABASE oclite CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; DELETE FROM `oc_user`; ALTER TABLE `oc_user` AUTO_INCREMENT = 1; INSERT INTO `oc_user` (`id`, `type`, `niss`, `pin`, `firstname`, `lastname`) VALUES (1, 3, '00000000000', '9999', 'Admin', 'Admin'); DELETE FROM `oc_terminal`; ALTER TABLE `oc_terminal` AUTO_INCREMENT = 1; INSERT INTO `oc_terminal` (`id`, `reserved`, `enabled`, `name`, `ip`, `printer`, `display`, `takeawayzone`, `articlecol`) VALUES (1, b'1', b'0', 'Local', '0:0:0:0:0:0:0:1', 0, 0, -1, -1); DELETE FROM `oc_article`; ALTER TABLE `oc_article` AUTO_INCREMENT = 1; DELETE FROM `oc_category`; ALTER TABLE `oc_category` AUTO_INCREMENT = 1; DELETE FROM `oc_combo_item`; DELETE FROM `oc_print_article`; DELETE FROM `oc_table`; ALTER TABLE `oc_table` AUTO_INCREMENT = 1; DELETE FROM `oc_remark`; ALTER TABLE `oc_remark` AUTO_INCREMENT = 1; DELETE FROM `oc_order`; ALTER TABLE `oc_order` AUTO_INCREMENT = 1; DELETE FROM `oc_order_item`; ALTER TABLE `oc_order_item` AUTO_INCREMENT = 1; DELETE FROM `oc_order_payment`; ALTER TABLE `oc_order_payment` AUTO_INCREMENT = 1; DELETE FROM `oc_order_vat`; ALTER TABLE `oc_order_vat` AUTO_INCREMENT = 1; DELETE FROM `oc_log`; ALTER TABLE `oc_log` AUTO_INCREMENT = 1; DELETE FROM `oc_prepay`; ALTER TABLE `oc_prepay` AUTO_INCREMENT = 1; UPDATE `oc_sysparam` SET `value` = 'cn' WHERE `key` = 'admin-language'; UPDATE `oc_sysparam` SET `value` = 'sandybrown' WHERE `key` = 'code-color'; UPDATE `oc_sysparam` SET `value` = 'mb' WHERE `key` = 'hardware-binding'; UPDATE `oc_sysparam` SET `value` = '1' WHERE `key` = 'fiscal-day'; UPDATE `oc_sysparam` SET `value` = '1' WHERE `key` = 'fiscal-index'; UPDATE `oc_sysparam` SET `value` = '1' WHERE `key` = 'working-day'; UPDATE `oc_sysparam` SET `value` = '1' WHERE `key` = 'takeaway-index'; UPDATE `oc_sysparam` SET `value` = '1' WHERE `key` = 'takeaway-index-init'; UPDATE `oc_sysparam` SET `value` = '6' WHERE `key` = 'day-boundary-hour'; UPDATE `oc_sysparam` SET `value` = 'false' WHERE `key` = 'takeaway-price-enabled'; UPDATE `oc_sysparam` SET `value` = '1' WHERE `key` = 'working-day'; -- ===================================================================================================================== UPDATE `oc_article` SET `code` = REPLACE(`code`, ' ', ''); UPDATE `oc_article` set `code` = LOWER(`code`); DROP TABLE `oclite`.`oc_article`, `oclite`.`oc_category`, `oclite`.`oc_combo_item`, `oclite`.`oc_log`, `oclite`.`oc_log_action`, `oclite`.`oc_order`, `oclite`.`oc_order_item`, `oclite`.`oc_order_payment`, `oclite`.`oc_order_vat`, `oclite`.`oc_paymode`, `oclite`.`oc_prepay`, `oclite`.`oc_print_article`, `oclite`.`oc_printer`, `oclite`.`oc_printer_function`, `oclite`.`oc_remark`, `oclite`.`oc_service_type`, `oclite`.`oc_sysparam`, `oclite`.`oc_table`, `oclite`.`oc_table_group`;
CALL "SECURITY"."cdp.security.procedures::createModule"( 'EBGCFE','cdp.ebgcfe','CFE :Cost Forecast Estimation '); call "SECURITY"."cdp.security.procedures::createInfoUser"( 'SAP_TEST001', 'Password12345' ,'SAP_TEST001','firstName', 'lastName' ,'SAP_TEST001@emailAddress', 'status' , 'LOCALE' ,'DESIGNATION' ,'EBGCFE',?); call "SECURITY"."cdp.security.procedures::createInfoUser"( 'SAP_TEST002', 'Password12345' ,'SAP_TEST002','firstName', 'lastName' ,'SAP_TEST002@emailAddress', 'status' , 'LOCALE' ,'DESIGNATION' ,'EBGCFE',?); call "SECURITY"."cdp.security.procedures::createInfoUser"( 'SAP_TEST003', 'Password12345' ,'SAP_TEST003','firstName', 'lastName' ,'SAP_TEST003@emailAddress', 'status' , 'LOCALE' ,'DESIGNATION' ,'EBGCFE',?); call "SECURITY"."cdp.security.procedures::createInfoUser"( 'SAP_TEST004', 'Password12345' ,'SAP_TEST004','firstName', 'lastName' ,'SAP_TEST004@emailAddress', 'status' , 'LOCALE' ,'DESIGNATION' ,'EBGCFE',?); call "SECURITY"."cdp.security.procedures::createInfoUser"( 'SAP_TEST005', 'Password12345' ,'SAP_TEST005','firstName', 'lastName' ,'SAP_TEST005@emailAddress', 'status' , 'LOCALE' ,'DESIGNATION' ,'EBGCFE',?); call "SECURITY"."cdp.security.procedures::createInfoUser"( 'SAP_TEST006', 'Password12345' ,'SAP_TEST006','firstName', 'lastName' ,'SAP_TEST006@emailAddress', 'status' , 'LOCALE' ,'DESIGNATION' ,'EBGCFE',?); call "SECURITY"."cdp.security.procedures::createInfoUser"( 'SAP_TEST007', 'Password12345' ,'SAP_TEST007','firstName', 'lastName' ,'SAP_TEST007@emailAddress', 'status' , 'LOCALE' ,'DESIGNATION' ,'EBGCFE',?); call "SECURITY"."cdp.security.procedures::createInfoUser"( 'SAP_TEST008', 'Password12345' ,'SAP_TEST008','firstName', 'lastName' ,'SAP_TEST008@emailAddress', 'status' , 'LOCALE' ,'DESIGNATION' ,'EBGCFE',?); call "SECURITY"."cdp.security.procedures::createInfoUser"( 'SAP_TEST009', 'Password12345' ,'SAP_TEST009','firstName', 'lastName' ,'SAP_TEST009@emailAddress', 'status' , 'LOCALE' ,'DESIGNATION' ,'EBGCFE',?); call "SECURITY"."cdp.security.procedures::createInfoUser"( 'SAP_TEST010', 'Password12345' ,'SAP_TEST010','firstName', 'lastName' ,'SAP_TEST010@emailAddress', 'status' , 'LOCALE' ,'DESIGNATION' ,'EBGCFE',?); CALL "SECURITY"."cdp.security.procedures::createModule"( 'MXEBGVMI','cdp.mxebgvmi','VMI '); call "SECURITY"."cdp.security.procedures::createInfoUser"( 'SAP_TEST101', 'Password12345' ,'SAP_TEST101','firstName', 'lastName' ,'SAP_TEST101@emailAddress', 'status' , 'LOCALE' ,'DESIGNATION' ,'MXEBGVMI',?); call "SECURITY"."cdp.security.procedures::createInfoUser"( 'SAP_TEST102', 'Password12345' ,'SAP_TEST102','firstName', 'lastName' ,'SAP_TEST102@emailAddress', 'status' , 'LOCALE' ,'DESIGNATION' ,'MXEBGVMI',?); call "SECURITY"."cdp.security.procedures::createInfoUser"( 'SAP_TEST103', 'Password12345' ,'SAP_TEST103','firstName', 'lastName' ,'SAP_TEST103@emailAddress', 'status' , 'LOCALE' ,'DESIGNATION' ,'MXEBGVMI',?); call "SECURITY"."cdp.security.procedures::createInfoUser"( 'SAP_TEST104', 'Password12345' ,'SAP_TEST104','firstName', 'lastName' ,'SAP_TEST104@emailAddress', 'status' , 'LOCALE' ,'DESIGNATION' ,'MXEBGVMI',?); call "SECURITY"."cdp.security.procedures::createInfoUser"( 'SAP_TEST105', 'Password12345' ,'SAP_TEST105','firstName', 'lastName' ,'SAP_TEST105@emailAddress', 'status' , 'LOCALE' ,'DESIGNATION' ,'MXEBGVMI',?); call "SECURITY"."cdp.security.procedures::createInfoUser"( 'SAP_TEST106', 'Password12345' ,'SAP_TEST106','firstName', 'lastName' ,'SAP_TEST106@emailAddress', 'status' , 'LOCALE' ,'DESIGNATION' ,'MXEBGVMI',?); call "SECURITY"."cdp.security.procedures::createInfoUser"( 'SAP_TEST107', 'Password12345' ,'SAP_TEST107','firstName', 'lastName' ,'SAP_TEST107@emailAddress', 'status' , 'LOCALE' ,'DESIGNATION' ,'MXEBGVMI',?); call "SECURITY"."cdp.security.procedures::createInfoUser"( 'SAP_TEST108', 'Password12345' ,'SAP_TEST108','firstName', 'lastName' ,'SAP_TEST108@emailAddress', 'status' , 'LOCALE' ,'DESIGNATION' ,'MXEBGVMI',?); call "SECURITY"."cdp.security.procedures::createInfoUser"( 'SAP_TEST109', 'Password12345' ,'SAP_TEST109','firstName', 'lastName' ,'SAP_TEST109@emailAddress', 'status' , 'LOCALE' ,'DESIGNATION' ,'MXEBGVMI',?); call "SECURITY"."cdp.security.procedures::createInfoUser"( 'SAP_TEST110', 'Password12345' ,'SAP_TEST110','firstName', 'lastName' ,'SAP_TEST110@emailAddress', 'status' , 'LOCALE' ,'DESIGNATION' ,'MXEBGVMI',?); /* "SECURITY"."cdp.security.procedures::createInfoRole" ( IN aROLE_NAME NVARCHAR(200), IN aCOMMENT NVARCHAR(200), IN aMODULE_NAME NVARCHAR(200) ,OUT errorInfo "SECURITY"."cdp.security.data::userManagement.HttpError" ) */ CALL "SECURITY"."cdp.security.procedures::createInfoRole" ( 'cdp.security.roles::Base' ,'base role ' ,'EBGCFE' ,? ) ; CALL "SECURITY"."cdp.security.procedures::createInfoRole" ( 'cdp.security.roles::Access' ,'open user management view. ' ,'EBGCFE' ,? ) ; CALL "SECURITY"."cdp.security.procedures::createInfoRole" ( 'cdp.security.roles::userAdmin' ,' user and user group management . ' ,'EBGCFE' ,? ); CALL "SECURITY"."cdp.security.procedures::createInfoRole" ( 'cdp.security.roles::roleSetup' ,' role and role group management . ' ,'EBGCFE' ,? ); CALL "SECURITY"."cdp.security.procedures::createInfoRole" ( 'cdp.security.roles::roleAdmin' ,' grant activated role . ' ,'EBGCFE' ,? ); --****************************** CALL "SECURITY"."cdp.security.procedures::createInfoRole" ( 'cdp.security.roles::Base' ,'base role ' ,'MXEBGVMI' ,? ) ; CALL "SECURITY"."cdp.security.procedures::createInfoRole" ( 'cdp.security.roles::Access' ,'open user management view. ' ,'MXEBGVMI' ,? ) ; CALL "SECURITY"."cdp.security.procedures::createInfoRole" ( 'cdp.security.roles::userAdmin' ,' user and user group management . ' ,'MXEBGVMI' ,? ); CALL "SECURITY"."cdp.security.procedures::createInfoRole" ( 'cdp.security.roles::roleSetup' ,' role and role group management . ' ,'MXEBGVMI' ,? ); CALL "SECURITY"."cdp.security.procedures::createInfoRole" ( 'cdp.security.roles::roleAdmin' ,' grant activated role . ' ,'MXEBGVMI' ,? ); --分配权限。 /* CALL "SECURITY"."cdp.security.procedures::createMapAllByName" ( aMODULE_NAME NVARCHAR(256), aROLEGROUP_NAME NVARCHAR(256), --//rolegroup id aROLE_NAME NVARCHAR(256), --//role id aUSERGROUP_NAME NVARCHAR(256), aUSER_NAME NVARCHAR(256), ?); */ /* CALL "SECURITY"."cdp.security.procedures::createMapAllByName" ( 'EBGCFE' , '', 'cdp.security.roles::Base', --//role id '', 'SAP_TEST101', ?); */ call "_SYS_REPO"."GRANT_ACTIVATED_ROLE"('cdp.security.roles::Base','SAP_TEST001'); CALL "SECURITY"."cdp.security.procedures::createMapAllByName" ( 'EBGCFE' , '', 'cdp.security.roles::Access', --//role id '', 'SAP_TEST001', ?); CALL "SECURITY"."cdp.security.procedures::createMapAllByName" ( 'EBGCFE' , '', 'cdp.security.roles::userAdmin', --//role id '', 'SAP_TEST001', ?); CALL "SECURITY"."cdp.security.procedures::createMapAllByName" ( 'EBGCFE' , '', 'cdp.security.roles::roleSetup', --//role id '', 'SAP_TEST001', ?); CALL "SECURITY"."cdp.security.procedures::createMapAllByName" ( 'EBGCFE' , '', 'cdp.security.roles::roleAdmin', --//role id '', 'SAP_TEST001', ?); /* CALL "SECURITY"."cdp.security.procedures::createMapAllByName" ( 'MXEBGVMI' , '', 'cdp.security.roles::Base', --//role id '', 'SAP_TEST101', ?); */ call "_SYS_REPO"."GRANT_ACTIVATED_ROLE"('cdp.security.roles::Base','SAP_TEST101'); CALL "SECURITY"."cdp.security.procedures::createMapAllByName" ( 'MXEBGVMI' , '', 'cdp.security.roles::Access', --//role id '', 'SAP_TEST101', ?); CALL "SECURITY"."cdp.security.procedures::createMapAllByName" ( 'MXEBGVMI' , '', 'cdp.security.roles::userAdmin', --//role id '', 'SAP_TEST101', ?); CALL "SECURITY"."cdp.security.procedures::createMapAllByName" ( 'MXEBGVMI' , '', 'cdp.security.roles::roleSetup', --//role id '', 'SAP_TEST101', ?); CALL "SECURITY"."cdp.security.procedures::createMapAllByName" ( 'MXEBGVMI' , '', 'cdp.security.roles::roleAdmin', --//role id '', 'SAP_TEST101', ?);
DO $$ DECLARE UserId bigint; BEGIN INSERT INTO "usr" ("username", "password", "email", "created", "updated") VALUES ('admin', '123', 'a@a.com', current_timestamp, current_timestamp) RETURNING "id" INTO UserId; INSERT INTO "user_role" ("usr_id", "roles") VALUES (UserId, 'USER'), (UserId, 'ADMIN'); END $$
-- MySQL dump 10.16 Distrib 10.3.10-MariaDB, for Win64 (AMD64) -- -- Host: localhost Database: sigudang -- ------------------------------------------------------ -- Server version 10.3.10-MariaDB /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `barang` -- DROP TABLE IF EXISTS `barang`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `barang` ( `id` int(11) NOT NULL AUTO_INCREMENT, `nama_barang` varchar(255) NOT NULL, `kategori` int(11) NOT NULL, `jumlah` int(255) NOT NULL, `foto` text DEFAULT NULL, PRIMARY KEY (`id`), KEY `kategori` (`kategori`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `barang` -- LOCK TABLES `barang` WRITE; /*!40000 ALTER TABLE `barang` DISABLE KEYS */; /*!40000 ALTER TABLE `barang` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `kategori` -- DROP TABLE IF EXISTS `kategori`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `kategori` ( `id` int(11) NOT NULL AUTO_INCREMENT, `nama` varchar(255) NOT NULL, PRIMARY KEY (`id`), CONSTRAINT `kategori_ibfk_1` FOREIGN KEY (`id`) REFERENCES `barang` (`kategori`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `kategori` -- LOCK TABLES `kategori` WRITE; /*!40000 ALTER TABLE `kategori` DISABLE KEYS */; /*!40000 ALTER TABLE `kategori` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `transaksi` -- DROP TABLE IF EXISTS `transaksi`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `transaksi` ( `id` int(11) NOT NULL AUTO_INCREMENT, `kode_trx` varchar(11) NOT NULL, `operator_id` int(11) NOT NULL, `id_barang` int(11) NOT NULL, `dist_id` int(11) NOT NULL, `keterangan` varchar(255) NOT NULL, `tanggal` datetime NOT NULL, PRIMARY KEY (`id`), KEY `operator_id` (`operator_id`), KEY `id_barang` (`id_barang`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `transaksi` -- LOCK TABLES `transaksi` WRITE; /*!40000 ALTER TABLE `transaksi` DISABLE KEYS */; /*!40000 ALTER TABLE `transaksi` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `nama` varchar(255) NOT NULL, `username` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `level` varchar(255) NOT NULL, `foto` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `users` -- LOCK TABLES `users` WRITE; /*!40000 ALTER TABLE `users` DISABLE KEYS */; INSERT INTO `users` VALUES (1,'Muhammad Yusup','muhammad_yusup','password123','distributor',NULL),(2,'Ahmad Saugi','saugi11','saugimuchtar','operator',NULL); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!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 */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2018-11-28 6:36:35
-- Facit på laboration 2 -- 1. Hämta de 10 största städerna från cities, sett till population? SELECT * FROM cities ORDER BY population DESC LIMIT 10; -- 2. Slå ihop cities med countries där country är samma för båda? SELECT * FROM cities JOIN countries ON cities.country = countries.countrycode; -- 3. Hämta en tabell med enbart fullständigt namn på land och stad? SELECT city,countryname FROM cities JOIN countries ON cities.country = countries.countrycode; -- 4. Hämta den stad som ligger närmast ekvatorn? (Latitude) SELECT city,latitude FROM cities ORDER BY ABS(latitude) LIMIT 1; -- 5. Hämta en tabell med totala populationen i varje land? SELECT countryname,SUM(population) FROM cities JOIN countries ON cities.country = countries.countrycode GROUP BY countryname; -- 6. Hämta en tabell med medelstads-populationen för varje land? SELECT countryname,SUM(population)/COUNT(CITY) FROM cities JOIN countries ON cities.country = countries.countrycode GROUP BY countryname; -- 7. Hämta det landsnamn som har den minsta staden i vår tabell? SELECT countryname FROM cities JOIN countries ON cities.country = countries.countrycode ORDER BY population LIMIT 1; -- 8. Hämta alla länder som börjar på bokstaven S? SELECT countryname FROM countries WHERE countryname LIKE "S%"; -- 9. Hämta den största staden som börjar på A? SELECT city FROM cities WHERE city LIKE "A%" ORDER BY population DESC LIMIT 1; -- 10. Hämta den stad som ligger närmast samma breddgrad som Stockholm? (Latitude) -- (Stockholms latitud är 59.3333) SELECT city FROM cities WHERE city != "stockholm" ORDER BY ABS(latitude-59.3333) LIMIT 1; -- 11. Hämta den stad som ligger längst norrut? SELECT city FROM cities ORDER BY latitude DESC LIMIT 1; -- 12. Hämta den stad som har närmast samma population som Stockholm? -- (Stockholms population är 1253309) SELECT city FROM cities ORDER BY ABS(population-1253309) LIMIT 1 OFFSET 1;
-- MySQL dump 10.13 Distrib 5.7.17, for Win64 (x86_64) -- -- Host: 127.0.0.1 Database: ifb299 -- ------------------------------------------------------ -- Server version 5.7.19-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `app_department` -- USE ifb299; DROP TABLE IF EXISTS `app_department`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `app_department` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(200) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `app_department` -- LOCK TABLES `app_department` WRITE; /*!40000 ALTER TABLE `app_department` DISABLE KEYS */; INSERT INTO `app_department` VALUES (2,'business'),(3,'creative industries'),(4,'education'),(5,'health'),(6,'law'),(7,'science and engineering'),(8,'hospitality'); /*!40000 ALTER TABLE `app_department` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!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 */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2017-10-28 18:26:42
DROP DATABASE IF EXISTS tb_final; CREATE DATABASE tb_final; USE tb_final; CREATE TABLE ESTABELECIMENTO_CNES ( codEstabelecimento INTEGER PRIMARY KEY, nomeEstabelecimento VARCHAR(200) NOT NULL ); CREATE TABLE GRUPO ( codGrupo INTEGER PRIMARY KEY, nomeGrupo VARCHAR(200) NOT NULL ); CREATE TABLE SUBGRUPO ( codSubgrupo INTEGER PRIMARY KEY, nomeSubgrupo VARCHAR(200) NOT NULL, codGrupo INTEGER, CONSTRAINT SUBGRUPO_GRUPO_FK FOREIGN KEY(codGrupo) REFERENCES GRUPO(codGrupo) ); CREATE TABLE PROCEDIMENTO ( codProcedimento INTEGER PRIMARY KEY, nomeProcedimento VARCHAR(200) NOT NULL ); CREATE TABLE CARATER_ATENDIMENTO ( codCarater INTEGER PRIMARY KEY, nomeCaraterAtendimento VARCHAR(200) NOT NULL ); CREATE TABLE ATENDIMENTO ( id INTEGER AUTO_INCREMENT PRIMARY KEY, anoMes VARCHAR(6) NOT NULL, quantidade INTEGER NOT NULL, codEstabelecimento INTEGER, codGrupo INTEGER, codProcedimento INTEGER, codCarater INTEGER, CONSTRAINT ATENDIMENTO_ESTABELECIMENTO_FK FOREIGN KEY (codEstabelecimento) REFERENCES ESTABELECIMENTO_CNES(codEstabelecimento), CONSTRAINT ATENDIMENTO_GRUPO_FK FOREIGN KEY (codGrupo) REFERENCES GRUPO(codGrupo), CONSTRAINT ATENDIMENTO_PROCEDIMENTO_FK FOREIGN KEY (codProcedimento) REFERENCES PROCEDIMENTO(codProcedimento), CONSTRAINT ATENDIMENTO_CARATER_FK FOREIGN KEY (codCarater) REFERENCES CARATER_ATENDIMENTO(codCarater) ) Engine=InnoDB;
DROP TABLE IF EXISTS #__rwkmatch; DROP TABLE IF EXISTS #__rwkteam;
-- --- -- Table 'members' -- -- --- DROP TABLE IF EXISTS `members`; CREATE TABLE `members` ( `first_name` TEXT NOT NULL, `last_name` TEXT NOT NULL, `display_name` TEXT NOT NULL ); -- Event Types DROP TABLE IF EXISTS `event_types`; CREATE TABLE `event_types` ( `type` CHAR(1) PRIMARY KEY NOT NULL, `value` TEXT NOT NULL ); INSERT INTO `event_types` VALUES ('a', 'Athletic'); INSERT INTO `event_types` VALUES ('d', 'Drinking'); INSERT INTO `event_types` VALUES ('o', 'Other'); -- --- -- Table 'events' -- -- --- DROP TABLE IF EXISTS `events`; CREATE TABLE `events` ( `name` TEXT NOT NULL, `rules` TEXT NOT NULL, `type` CHAR(1) NOT NULL REFERENCES event_types(type) ); -- --- -- Table 'weeks' -- -- --- DROP TABLE IF EXISTS `weeks`; CREATE TABLE `weeks` ( `date` INTEGER NOT NULL ); -- --- -- Table 'events_weeks' -- -- --- DROP TABLE IF EXISTS `events_weeks`; CREATE TABLE `events_weeks` ( `events_id` INTEGER NOT NULL, `weeks_id` INTEGER NOT NULL, FOREIGN KEY (events_id) REFERENCES `events` (`id`), FOREIGN KEY (weeks_id) REFERENCES `weeks` (`id`) ); -- --- -- Table 'results' -- -- --- DROP TABLE IF EXISTS `results`; CREATE TABLE `results` ( `rank` INTEGER NOT NULL, `events_id` INTEGER NOT NULL, `members_id` INTEGER NOT NULL, FOREIGN KEY (events_id) REFERENCES `events` (`id`), FOREIGN KEY (members_id) REFERENCES `members` (`id`) ); -- --- -- Table 'seasons' -- -- --- DROP TABLE IF EXISTS `seasons`; CREATE TABLE `seasons` ( `start_date` INTEGER NOT NULL, `end_date` INTEGER NOT NULL ); -- --- -- Table 'seasons_weeks' -- -- --- DROP TABLE IF EXISTS `seasons_weeks`; CREATE TABLE `seasons_weeks` ( `weeks_id` INTEGER NOT NULL, `seasons_id` INTEGER NOT NULL, FOREIGN KEY (weeks_id) REFERENCES `weeks` (`id`), FOREIGN KEY (seasons_id) REFERENCES `seasons` (`id`) ); -- --- -- Table 'seasons_members' -- -- --- DROP TABLE IF EXISTS `seasons_members`; CREATE TABLE `seasons_members` ( `members_id` INTEGER NOT NULL, `seasons_id` INTEGER NOT NULL, FOREIGN KEY (members_id) REFERENCES `members` (`id`), FOREIGN KEY (seasons_id) REFERENCES `seasons` (`id`) ); -- --- -- Table 'rank_values' -- -- --- DROP TABLE IF EXISTS `rank_values`; CREATE TABLE `rank_values` ( `rank` INTEGER NOT NULL, `value` INTEGER NOT NULL ); -- ADD RANK VALUES sqlite> INSERT INTO rank_values VALUES (1, 10); sqlite> INSERT INTO rank_values VALUES (2, 8); sqlite> INSERT INTO rank_values VALUES (3, 6); sqlite> INSERT INTO rank_values VALUES (4, 4); sqlite> INSERT INTO rank_values VALUES (5, 3); sqlite> INSERT INTO rank_values VALUES (6, 2); sqlite> INSERT INTO rank_values VALUES (7, 1); sqlite> INSERT INTO rank_values VALUES (8, 0); sqlite> INSERT INTO rank_values VALUES (9, 0); sqlite> INSERT INTO rank_values VALUES (10, 0); sqlite> INSERT INTO rank_values VALUES (11, 0); sqlite> INSERT INTO rank_values VALUES (12, 0); sqlite> INSERT INTO rank_values VALUES (13, 0); sqlite> INSERT INTO rank_values VALUES (14, 0); sqlite> INSERT INTO rank_values VALUES (15, 0); sqlite> INSERT INTO rank_values VALUES (16, 0); sqlite> INSERT INTO rank_values VALUES (17, 0); sqlite> INSERT INTO rank_values VALUES (18, 0); sqlite> INSERT INTO rank_values VALUES (19, 0); sqlite> INSERT INTO rank_values VALUES (20, 0); -- ADD SEASON 1! INSERT INTO seasons VALUES (1380931200, 1386374400); -- members INSERT INTO members VALUES ('Blake', 'Hedlund', 'Blake'); INSERT INTO members VALUES ('Charlie', 'Satterfield', 'Chuckles'); INSERT INTO members VALUES ('Chris', 'Orme', 'Ormesauce'); INSERT INTO members VALUES ('Steven', 'Growney', 'Growney'); INSERT INTO members VALUES ('Heather', 'Zygutis (Dale)', 'Heat'); INSERT INTO members VALUES ('James', 'Plasencia', 'James'); INSERT INTO members VALUES ('Jimmy', 'Sinha', 'Prashant'); INSERT INTO members VALUES ('Lauryn', 'Holbert', 'Dakota'); INSERT INTO members VALUES ('Jonathan', 'Neely', 'Neely'); INSERT INTO members VALUES ('Saran', 'Tumnee', 'Saran'); INSERT INTO members VALUES ('Scott', 'Heeney', 'Scott'); INSERT INTO members VALUES ('Tom', 'Dale', 'Tommy D'); INSERT INTO members VALUES ('Zack', 'Gholikey', 'Zack'); -- add them to the season sqlite> INSERT INTO seasons_members VALUES (1, 1); sqlite> INSERT INTO seasons_members VALUES (2, 1); sqlite> INSERT INTO seasons_members VALUES (3, 1); sqlite> INSERT INTO seasons_members VALUES (4, 1); sqlite> INSERT INTO seasons_members VALUES (5, 1); sqlite> INSERT INTO seasons_members VALUES (6, 1); sqlite> INSERT INTO seasons_members VALUES (7, 1); sqlite> INSERT INTO seasons_members VALUES (8, 1); sqlite> INSERT INTO seasons_members VALUES (9, 1); sqlite> INSERT INTO seasons_members VALUES (10, 1); sqlite> INSERT INTO seasons_members VALUES (11, 1); sqlite> INSERT INTO seasons_members VALUES (12, 1); sqlite> INSERT INTO seasons_members VALUES (13, 1); -- add season 1 dates sqlite> INSERT INTO weeks VALUES (1380931200); sqlite> INSERT INTO weeks VALUES (1381536000); sqlite> INSERT INTO weeks VALUES (1382140800); sqlite> INSERT INTO weeks VALUES (1382745600); sqlite> INSERT INTO weeks VALUES (1383436800); sqlite> INSERT INTO weeks VALUES (1384041600); sqlite> INSERT INTO weeks VALUES (1384646400); sqlite> INSERT INTO weeks VALUES (1385251200); sqlite> INSERT INTO weeks VALUES (1385856000); sqlite> INSERT INTO weeks VALUES (1386374400); -- add events sqlite> INSERT INTO events VALUES ('Soccer', 'To come...', 'a'); sqlite> INSERT INTO events VALUES ('Basketball', 'To come...', 'a'); sqlite> INSERT INTO events VALUES ('Home Run Derby', 'To come...', 'a'); sqlite> INSERT INTO events VALUES ('Tennis', 'To come...', 'a'); sqlite> INSERT INTO events VALUES ('Bowling', 'To come...', 'a'); sqlite> INSERT INTO events VALUES ('Military Hike', 'To come...', 'a'); sqlite> INSERT INTO events VALUES ('Track and Field', 'To come...', 'a'); sqlite> INSERT INTO events VALUES ('Football', 'To come...', 'a'); sqlite> INSERT INTO events VALUES ('Flip-cup', 'To come...', 'd'); sqlite> INSERT INTO events VALUES ('Beer Pong', 'To come...', 'd'); sqlite> INSERT INTO events VALUES ('Beer Endurance', 'To come...', 'd'); sqlite> INSERT INTO events VALUES ('Bar Race', 'To come...', 'd'); sqlite> INSERT INTO events VALUES ('Poker', 'To come...', 'o'); sqlite> INSERT INTO events VALUES ('Gun Range', 'To come...', 'o'); sqlite> INSERT INTO events VALUES ('Wing Eating', 'To come...', 'o'); sqlite> INSERT INTO events VALUES ('Bar Games', 'To come...', 'o'); -- add weeks ot the season sqlite> INSERT INTO seasons_weeks VALUES (1, 1); sqlite> INSERT INTO seasons_weeks VALUES (2, 1); sqlite> INSERT INTO seasons_weeks VALUES (3, 1); sqlite> INSERT INTO seasons_weeks VALUES (4, 1); sqlite> INSERT INTO seasons_weeks VALUES (5, 1); sqlite> INSERT INTO seasons_weeks VALUES (6, 1); sqlite> INSERT INTO seasons_weeks VALUES (7, 1); sqlite> INSERT INTO seasons_weeks VALUES (8, 1); -- add events and weeks sqlite> INSERT INTO events_weeks VALUES (1, 1); sqlite> INSERT INTO events_weeks VALUES (9, 2); sqlite> INSERT INTO events_weeks VALUES (13, 2); sqlite> INSERT INTO events_weeks VALUES (2, 2); sqlite> INSERT INTO events_weeks VALUES (3, 5); sqlite> INSERT INTO events_weeks VALUES (4, 4); sqlite> INSERT INTO events_weeks VALUES (10, 4); sqlite> INSERT INTO events_weeks VALUES (5, 4); sqlite> INSERT INTO events_weeks VALUES (6, 3); sqlite> INSERT INTO events_weeks VALUES (14, 6); sqlite> INSERT INTO events_weeks VALUES (11, 6); sqlite> INSERT INTO events_weeks VALUES (7, 8); sqlite> INSERT INTO events_weeks VALUES (15, 8); sqlite> INSERT INTO events_weeks VALUES (16, 8); sqlite> INSERT INTO events_weeks VALUES (8, 8); sqlite> INSERT INTO events_weeks VALUES (12, 8); -- results sqlite> INSERT INTO results VALUES (1, 1, 5); sqlite> INSERT INTO results VALUES (2, 1, 3); sqlite> INSERT INTO results VALUES (3, 1, 2); sqlite> INSERT INTO results VALUES (4, 1, 9); sqlite> INSERT INTO results VALUES (5, 1, 6); sqlite> INSERT INTO results VALUES (6, 1, 1); sqlite> INSERT INTO results VALUES (7, 1, 4); sqlite> INSERT INTO results VALUES (8, 1, 11); sqlite> INSERT INTO results VALUES (9, 1, 12); sqlite> INSERT INTO results VALUES (10, 1, 8); sqlite> INSERT INTO results VALUES (1, 2, 3); sqlite> INSERT INTO results VALUES (2, 2, 12); sqlite> INSERT INTO results VALUES (3, 2, 10); sqlite> INSERT INTO results VALUES (4, 2, 1); sqlite> INSERT INTO results VALUES (5, 2, 8); sqlite> INSERT INTO results VALUES (6, 2, 5); sqlite> INSERT INTO results VALUES (7, 2, 9); sqlite> INSERT INTO results VALUES (1, 3, 11); sqlite> INSERT INTO results VALUES (2, 3, 12); sqlite> INSERT INTO results VALUES (3, 3, 13); sqlite> INSERT INTO results VALUES (4, 3, 4); sqlite> INSERT INTO results VALUES (5, 3, 9); sqlite> INSERT INTO results VALUES (6, 3, 8); sqlite> INSERT INTO results VALUES (7, 3, 3); sqlite> INSERT INTO results VALUES (8, 3, 5); sqlite> INSERT INTO results VALUES (1, 4, 2); sqlite> INSERT INTO results VALUES (2, 4, 12); sqlite> INSERT INTO results VALUES (3, 4, 7); sqlite> INSERT INTO results VALUES (4, 4, 1); sqlite> INSERT INTO results VALUES (5, 4, 10); sqlite> INSERT INTO results VALUES (6, 4, 8); sqlite> INSERT INTO results VALUES (7, 4, 3); sqlite> INSERT INTO results VALUES (8, 4, 5); sqlite> INSERT INTO results VALUES (9, 4, 6); sqlite> INSERT INTO results VALUES (10, 4, 4); sqlite> INSERT INTO results VALUES (11, 4, 9); sqlite> INSERT INTO results VALUES (1, 5, 13); sqlite> INSERT INTO results VALUES (2, 5, 12); sqlite> INSERT INTO results VALUES (3, 5, 9); sqlite> INSERT INTO results VALUES (4, 5, 5); sqlite> INSERT INTO results VALUES (5, 5, 4); sqlite> INSERT INTO results VALUES (6, 5, 3); sqlite> INSERT INTO results VALUES (7, 5, 10); sqlite> INSERT INTO results VALUES (8, 5, 6); sqlite> INSERT INTO results VALUES (9, 5, 8); sqlite> INSERT INTO results VALUES (1, 6, 10); sqlite> INSERT INTO results VALUES (2, 6, 5); sqlite> INSERT INTO results VALUES (3, 6, 9); sqlite> INSERT INTO results VALUES (4, 6, 12); sqlite> INSERT INTO results VALUES (5, 6, 4); sqlite> INSERT INTO results VALUES (6, 6, 7); sqlite> INSERT INTO results VALUES (7, 6, 8); sqlite> INSERT INTO results VALUES (1, 7, 3); sqlite> INSERT INTO results VALUES (2, 7, 9); sqlite> INSERT INTO results VALUES (3, 7, 1); sqlite> INSERT INTO results VALUES (4, 7, 10); sqlite> INSERT INTO results VALUES (5, 7, 7); sqlite> INSERT INTO results VALUES (6, 7, 12); sqlite> INSERT INTO results VALUES (7, 7, 5); sqlite> INSERT INTO results VALUES (8, 7, 4); sqlite> INSERT INTO results VALUES (1, 8, 1); sqlite> INSERT INTO results VALUES (2, 8, 3); sqlite> INSERT INTO results VALUES (3, 8, 12); sqlite> INSERT INTO results VALUES (4, 8, 4); sqlite> INSERT INTO results VALUES (5, 8, 5); sqlite> INSERT INTO results VALUES (6, 8, 10); sqlite> INSERT INTO results VALUES (7, 8, 7); sqlite> INSERT INTO results VALUES (8, 8, 9); sqlite> INSERT INTO results VALUES (1, 9, 3); sqlite> INSERT INTO results VALUES (2, 9, 13); sqlite> INSERT INTO results VALUES (3, 9, 5); sqlite> INSERT INTO results VALUES (4, 9, 11); sqlite> INSERT INTO results VALUES (5, 9, 4); sqlite> INSERT INTO results VALUES (6, 9, 12); sqlite> INSERT INTO results VALUES (7, 9, 1); sqlite> INSERT INTO results VALUES (8, 9, 8); sqlite> INSERT INTO results VALUES (9, 9, 7); sqlite> INSERT INTO results VALUES (10, 9, 9); sqlite> INSERT INTO results VALUES (1, 10, 4); sqlite> INSERT INTO results VALUES (2, 10, 5); sqlite> INSERT INTO results VALUES (3, 10, 12); sqlite> INSERT INTO results VALUES (4, 10, 9); sqlite> INSERT INTO results VALUES (5, 10, 6); sqlite> INSERT INTO results VALUES (6, 10, 3); sqlite> INSERT INTO results VALUES (7, 10, 2); sqlite> INSERT INTO results VALUES (8, 10, 13); sqlite> INSERT INTO results VALUES (9, 10, 8); sqlite> INSERT INTO results VALUES (1, 11, 1); sqlite> INSERT INTO results VALUES (2, 11, 12); sqlite> INSERT INTO results VALUES (3, 11, 3); sqlite> INSERT INTO results VALUES (4, 11, 5); sqlite> INSERT INTO results VALUES (5, 11, 9); sqlite> INSERT INTO results VALUES (6, 11, 4); sqlite> INSERT INTO results VALUES (7, 11, 2); sqlite> INSERT INTO results VALUES (1, 12, 3); sqlite> INSERT INTO results VALUES (2, 12, 12); sqlite> INSERT INTO results VALUES (3, 12, 5); sqlite> INSERT INTO results VALUES (4, 12, 8); sqlite> INSERT INTO results VALUES (5, 12, 4); sqlite> INSERT INTO results VALUES (5, 12, 7); sqlite> INSERT INTO results VALUES (1, 13, 8); sqlite> INSERT INTO results VALUES (2, 13, 3); sqlite> INSERT INTO results VALUES (3, 13, 1); sqlite> INSERT INTO results VALUES (4, 13, 5); sqlite> INSERT INTO results VALUES (5, 13, 12); sqlite> INSERT INTO results VALUES (6, 13, 11); sqlite> INSERT INTO results VALUES (7, 13, 7); sqlite> INSERT INTO results VALUES (8, 13, 4); sqlite> INSERT INTO results VALUES (9, 13, 13); sqlite> INSERT INTO results VALUES (10, 13, 9); sqlite> INSERT INTO results VALUES (1, 14, 1); sqlite> INSERT INTO results VALUES (2, 14, 12); sqlite> INSERT INTO results VALUES (3, 14, 9); sqlite> INSERT INTO results VALUES (4, 14, 5); sqlite> INSERT INTO results VALUES (5, 14, 4); sqlite> INSERT INTO results VALUES (6, 14, 3); sqlite> INSERT INTO results VALUES (1, 15, 13); sqlite> INSERT INTO results VALUES (2, 15, 6); sqlite> INSERT INTO results VALUES (3, 15, 7); sqlite> INSERT INTO results VALUES (4, 15, 3); sqlite> INSERT INTO results VALUES (5, 15, 12); sqlite> INSERT INTO results VALUES (7, 15, 9); sqlite> INSERT INTO results VALUES (8, 15, 4); sqlite> INSERT INTO results VALUES (9, 15, 8); sqlite> INSERT INTO results VALUES (1, 16, 1); sqlite> INSERT INTO results VALUES (2, 16, 9); sqlite> INSERT INTO results VALUES (3, 16, 12); sqlite> INSERT INTO results VALUES (4, 16, 3); sqlite> INSERT INTO results VALUES (5, 16, 4); sqlite> INSERT INTO results VALUES (6, 16, 13); sqlite> INSERT INTO results VALUES (7, 16, 7); sqlite> INSERT INTO results VALUES (8, 16, 5); sqlite> INSERT INTO results VALUES (9, 16, 8); sqlite> INSERT INTO results VALUES (10, 16, 6);
insert into comments(id, text, book_id) values (1, 'comment1', 1), (2, 'comment2', 2);
--start db/update/2012-10-04_update.sql DROP VIEW voter_org_types_v; --end db/update/2012-10-04_update.sql --start db/views/voter_org_types_v.sql CREATE VIEW voter_org_types_v (voter_id, org_type_id, user_id, created_ts, user_name, org_type_name, last_name, first_name, middle_name, address, city, state, zipcode, org_id) AS SELECT vt.voter_id, vt.org_type_id, vt.user_id, vt.created_ts, u.name, t.name, v.last_name, v.first_name, v.middle_name, v.address, v.city, v.state, v.zipcode, t.org_id FROM voter_org_type vt JOIN users u ON vt.user_id=u.user_id JOIN org_types t ON vt.org_type_id=t.org_type_id JOIN voters v ON vt.voter_id=v.voter_id; GRANT ALL ON voter_org_types_v TO sdnfw; --end db/views/voter_org_types_v.sql
../../../config/db/nm_samples.sql
SELECT c.`id` AS id, c.`name` AS name, c.`atomic` AS atomic, c.`category` AS category, c.`issued` AS issued, c.`user` AS user, tc.`topic` AS topic FROM `topic_callbacks` tc INNER JOIN `callbacks` c ON c.`id` = tc.`id` WHERE tc.`id` = ?;
DROP TABLE IF EXISTS `#__abauthor`, `#__abbook`, `#__abbookauth`, `#__abbooktag`, `#__abcategories`, `#__abeditor`, `#__ablocations`, `#__ablibrary`, `#__abrating`, `#__abtag`, `#__abtag_groups`, `#__ablend`;
# --- Created by Ebean DDL # To stop Ebean DDL generation, remove this comment and start using Evolutions # --- !Ups create table location_item_dto ( id bigint auto_increment not null, longitude varchar(255), latitude varchar(255), date datetime(6), creation_date datetime(6), user_id bigint, constraint pk_location_item_dto primary key (id) ); create table user ( id bigint auto_increment not null, username varchar(255), password varchar(255), constraint pk_user primary key (id) ); # --- !Downs drop table if exists location_item_dto; drop table if exists user;
-- phpMyAdmin SQL Dump -- version 5.0.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Apr 07, 2020 at 12:45 AM -- Server version: 10.4.11-MariaDB -- PHP Version: 7.4.2 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!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 utf8mb4 */; -- -- Database: `cps630` -- -- -------------------------------------------------------- -- -- Table structure for table `accounts` -- CREATE TABLE `accounts` ( `id` int(11) NOT NULL, `username` varchar(50) NOT NULL, `password` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `accounts` -- INSERT INTO `accounts` (`id`, `username`, `password`) VALUES (1, 'kylah', 'cps630'), (2, 'tsip', 'password'), (3, 'ecolaco', 'cps630'); -- -------------------------------------------------------- -- -- Table structure for table `closedistances` -- CREATE TABLE `closedistances` ( `attID` int(11) NOT NULL, `placeA` varchar(255) NOT NULL, `placeB` varchar(255) NOT NULL, `imageA` varchar(255) NOT NULL, `imageB` varchar(255) NOT NULL, `locA` varchar(255) NOT NULL, `locB` varchar(255) NOT NULL, `place_id` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `closedistances` -- INSERT INTO `closedistances` (`attID`, `placeA`, `placeB`, `imageA`, `imageB`, `locA`, `locB`, `place_id`) VALUES (1, 'Central Park', 'Times Square', 'images/closedistance/1a.jpg', 'images/closedistance/1b.jpg', 'New York, USA', 'New York, USA', 1), (2, 'Navy Pier', 'Shedd Aquarium ', 'images/closedistance/2a.jpg', 'images/closedistance/2b.jpg', 'Chicago, USA', 'Chicago, USA', 2), (3, 'Casa Loma', 'Royal Ontario Museum', 'images/closedistance/3a.jpg', 'images/closedistance/3b.jpg', 'Toronto, Canada', 'Toronto, Canada', 3), (4, 'Skylon Tower', 'Clifton Hill', 'images/closedistance/4a.jpg', 'images/closedistance/4b.jpg', 'Niagara Falls, Canada', 'Niagara Falls, Canada', 4), (5, 'Ipanema', 'Corcovado\r\n', 'images/closedistance/5a.jpg', 'images/closedistance/5b.jpg', 'Rio de Janeiro, Brazil', 'Rio de Janeiro, Brazil', 5), (6, 'Ipanema', 'Corcovado\r\n', 'images/closedistance/5a.jpg', 'images/closedistance/5b.jpg', 'Rio de Janeiro, Brazil', 'Rio de Janeiro, Brazil', 6), (7, 'Del Desierto Lake', 'Cueva de las Manos', 'images/closedistance/7a.jpg', 'images/closedistance/7b.jpg', 'Santa Cruz Province, Argentina', 'Santa Cruz Province, Argentina', 7), (8, 'Cerro de la Gloria', 'General San Martín Park', 'images/closedistance/8a.jpg', 'images/closedistance/8b.jpg', 'Mendoza, Argentina', 'Mendoza, Argentina', 8), (9, 'Notre-Dame de Paris', 'Arc de Triomphe', 'images/closedistance/9a.jpg', 'images/closedistance/9b.jpg', 'Paris, France', 'Paris, France', 9), (10, 'Notre-Dame de Paris', 'Arc de Triomphe', 'images/closedistance/9a.jpg', 'images/closedistance/9b.jpg', 'Paris, France', 'Paris, France', 10), (11, 'London Eye', 'Tower Bridge', 'images/closedistance/11a.jpg', 'images/closedistance/11b.jpg', 'London, United Kingdom', 'London, United Kingdom', 11), (12, 'London Eye', 'Tower Bridge', 'images/closedistance/11a.jpg', 'images/closedistance/11b.jpg', 'London, United Kingdom', 'London, United Kingdom', 12), (13, 'Agra Fort', 'Itmad-ud-Daula\r\n', 'images/closedistance/13a.jpg', 'images/closedistance/13b.jpg', 'Agra, India', 'Agra, India', 13), (14, 'Elephanta Caves', 'Chhatrapati Shivaji Terminus', 'images/closedistance/14a.jpg', 'images/closedistance/14b.jpg', 'Mumbai, India', 'Mumbai, India', 14), (15, 'D\'mall de Boracay', 'Diniwid Beach Road\r\n', 'images/closedistance/15a.jpg', 'images/closedistance/15b.jpg', 'Boracay, Philippines', 'Boracay, Philippines', 15), (16, 'Panglao Island\r\n', 'Hinagdanan Cave\r\n', 'images/closedistance/16a.jpg', 'images/closedistance/16b.jpg', 'Bohol, Philippines', 'Bohol, Philippines', 16), (17, 'Boulders Beach\r\n', 'Cape Point', 'images/closedistance/17a.jpg', 'images/closedistance/17b.jpg', 'Cape Town, South Africa', 'Cape Town, South Africa', 17), (18, 'Boulders Beach\r\n', 'Cape Point', 'images/closedistance/17a.jpg', 'images/closedistance/17b.jpg', 'Cape Town, South Africa', 'Cape Town, South Africa', 18), (19, 'Saqqara', 'Khufu Ship\r\n', 'images/closedistance/19a.jpg', 'images/closedistance/19b.jpg', 'Giza Governorate, Egypt', 'Giza Governorate, Egypt', 19), (20, 'Saqqara', 'Khufu Ship\r\n', 'images/closedistance/19a.jpg', 'images/closedistance/19b.jpg', 'Giza Governorate, Egypt', 'Giza Governorate, Egypt', 20); -- -------------------------------------------------------- -- -- Table structure for table `home` -- CREATE TABLE `home` ( `place_id` int(11) NOT NULL, `placename` varchar(255) NOT NULL, `placelocation` varchar(255) NOT NULL, `mainimage` varchar(255) NOT NULL, `price` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `home` -- INSERT INTO `home` (`place_id`, `placename`, `placelocation`, `mainimage`, `price`) VALUES (1, 'The Statue of Liberty', 'New York, USA', 'images/1.jpg', 256), (2, 'Cloud Gate', 'Chicago, USA', 'images/2.jpg\r\n', 287), (3, 'CN Tower', 'Toronto, Canada', 'images/3.jpg', 201), (4, 'Niagara Falls', 'Niagara Falls, Canada', 'images/4.jpg', 237), (5, 'Christ the Redeemer', 'Rio de Janeiro, Brazil', 'images/5.jpg', 892), (6, 'Sugarloaf Mountain', 'Rio de Janeiro, Brazil', 'images/6.jpg', 736), (7, 'Parque Nacional Los Glaciares', 'Santa Cruz Province, Argentina', 'images/7.jpg', 840), (8, 'Aconcagua', 'Mendoza, Argentina', 'images/8.jpg', 1093), (9, 'Eiffel Tower', 'Paris, France', 'images/9.jpg', 763), (10, 'Louvre Museum', 'Paris, France', 'images/10.jpg', 763), (11, 'Big Ben', 'London, United Kingdom', 'images/11.jpg', 789), (12, 'Buckingham Palace', 'London, United Kingdom', 'images/12.jpg', 791), (13, 'Taj Mahal', 'Agra, India', 'images/13.jpg', 1089), (14, 'Gateway Of India Mumbai', 'Mumbai, India', 'images/14.jpg', 1192), (15, 'Boracay', 'Boracay, Philippines', 'images/15.jpg', 1235), (16, 'Chocolate Hills', 'Bohol, Philippines', 'images/16.jpg', 1264), (17, 'Kruger National Park', 'South Africa', 'images/17.jpg', 1783), (18, 'Cape of Good Hope', 'Cape Town, South Africa', 'images/18.jpg', 1827), (19, 'Giza Necropolis', 'Giza Governorate, Egypt', 'images/19.jpg', 2313), (20, 'Great Sphinx of Giza', 'Giza Governorate, Egypt', 'images/20.jpg', 2817); -- -------------------------------------------------------- -- -- Table structure for table `landmarks` -- CREATE TABLE `landmarks` ( `id` int(11) NOT NULL, `place_id` int(11) NOT NULL, `placename` varchar(255) DEFAULT NULL, `placelocation` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `landmarks` -- INSERT INTO `landmarks` (`id`, `place_id`, `placename`, `placelocation`) VALUES (1, 1, 'The Statue of Liberty', 'New York, USA'), (2, 2, 'Cloud Gate', 'Chicago, USA'), (3, 3, 'CN Tower', 'Toronto, Canada'), (4, 4, 'Niagara Falls', 'Niagara Falls, Canada'), (5, 5, 'Christ the Redeemer', 'Rio de Janeiro, Brazil'), (6, 9, 'Eiffel Tower', 'Paris, France'), (7, 11, 'Big Ben', 'London, United Kingdom'), (8, 12, 'Buckingham Palace', 'London, United Kingdom'), (9, 13, 'Taj Mahal', 'Agra, India'), (10, 14, 'Gateway Of India Mumbai', 'Mumbai, India'), (11, 19, 'Giza Necropolis', 'Giza Governorate, Egypt'), (12, 20, 'Great Sphinx of Giza', 'Giza Governorate, Egypt'); -- -------------------------------------------------------- -- -- Table structure for table `museums` -- CREATE TABLE `museums` ( `id` int(11) NOT NULL, `place_id` int(11) NOT NULL, `placename` varchar(255) DEFAULT NULL, `placelocation` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `museums` -- INSERT INTO `museums` (`id`, `place_id`, `placename`, `placelocation`) VALUES (1, 10, 'Louvre Museum', 'Paris, France'); -- -------------------------------------------------------- -- -- Table structure for table `nature` -- CREATE TABLE `nature` ( `id` int(11) NOT NULL, `place_id` int(11) NOT NULL, `placename` varchar(255) DEFAULT NULL, `placelocation` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `nature` -- INSERT INTO `nature` (`id`, `place_id`, `placename`, `placelocation`) VALUES (1, 6, 'Sugarloaf Mountain', 'Rio de Janeiro, Brazil'), (2, 7, 'Parque Nacional Los Glaciares', 'Santa Cruz Province, Argentina'), (3, 8, 'Aconcagua', 'Mendoza, Argentina'), (4, 15, 'Boracay', 'Boracay, Philippines'), (5, 16, 'Chocolate Hills', 'Bohol, Philippines'), (6, 17, 'Kruger National Park', 'South Africa'), (7, 18, 'Cape of Good Hope', 'Cape Town, South Africa'); -- -------------------------------------------------------- -- -- Table structure for table `review` -- CREATE TABLE `review` ( `id` int(11) NOT NULL, `place_id` int(11) DEFAULT NULL, `rev_name` varchar(255) DEFAULT NULL, `rev_date` date DEFAULT NULL, `review` varchar(4000) DEFAULT NULL, `ranking` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `review` -- INSERT INTO `review` (`id`, `place_id`, `rev_name`, `rev_date`, `review`, `ranking`) VALUES (1, 1, 'Alisa Hemais', '2011-10-01', 'What a fantastic place!', 5), (2, 1, 'Bradie Yuso', '2014-02-12', 'Terrible.',1), (3, 2, 'Chris Dajs', '2011-10-01', 'Wow!', 5), (4, 2, 'Drus Kusiad', '2014-02-12', 'Could have been better.', 2), (5, 3, 'Erica Hrido', '2011-10-01', 'What a great time we had here! I would recommend it to all.', 5), (6, 3, 'Frank Iosu', '2014-02-12', 'Go now.', 4), (7, 4, 'Gina Tork', '2011-10-01', 'Sucked.', 1), (8, 4, 'Hannah Urie', '2014-02-12', 'Had an amazing time!', 5), (9, 5, 'Irwin Eris', '2011-10-01', 'The best experience of my life!', 5), (10, 5, 'Jack Fread', '2014-02-12', 'Just okay.', 3), (11, 6, 'Kris Ryus', '2011-10-01', 'Would not come again.', 1), (12, 6, 'Lana Peralat', '2014-02-12', 'Must see.', 4), (13, 7, 'Monica Heri', '2011-10-01', 'What a great time! ', 5), (14, 7, 'Neil Brice', '2014-02-12', 'It was fine.', 3), (15, 8, 'Olivia Brous', '2011-10-01', 'Woo! Would go again!', 5), (16, 8, 'Paul Jean', '2014-02-12', 'Could have been better', 3), (17, 9, 'Quen Backwell', '2011-10-01', 'Fantastic!', 5), (18, 9, 'Rhea Test', '2014-02-12', 'Okay. Might go again.', 3), (19, 10, 'Sandra Tuo', '2011-10-01', 'Wowee!', 5), (20, 10, 'Tiana Tsud', '2014-02-12', 'Experience was okay, not the best. The weather ruined it for us. Please check the weather before you go! 5/10 experience.', 3), (21, 11, 'Ursula Vickey', '2011-10-01', '11/10', 5), (22, 11, 'Victor Namc', '2014-02-12', 'Cannot say I would go again.', 2), (23, 12, 'Winny Jakis', '2011-10-01', 'Amazing', 5), (24, 12, 'Xena Mena', '2014-02-12', 'Worst weekend ever.', 1), (25, 13, 'Yousef Loius', '2011-10-01', 'Incredible. Highly recommended.', 5), (26, 13, 'Zita Goiu', '2014-02-12', 'You have to visit.', 4), (27, 14, 'Alex Yohn', '2011-10-01', 'The best exeperience of my life.', 5), (28, 14, 'Briana Gtru', '2014-02-12', 'Have to go again.', 4), (29, 15, 'Cria Fauls', '2011-10-01', 'Hello paradise!', 5), (30, 15, 'Diana Mams', '2014-02-12', 'What a dump.', 2), (31, 16, 'Elisa Arean', '2011-10-01', '10/10 experience!', 5), (32, 16, 'Fiona Vicso', '2014-02-12', 'Had a great time.', 3), (33, 17, 'George Shrinks', '2011-10-01', 'Well worth the trip', 5), (34, 17, 'Hector Niso', '2014-02-12', 'Would recommend to all my friends. If I had any friends.', 3), (35, 18, 'Issy Frozzy', '2011-10-01', 'Gorgeous.', 5), (36, 18, 'John Smith', '2014-02-12', 'So-so experience.', 3), (37, 19, 'Keisa Denis', '2011-10-01', 'The time of my life!', 5), (38, 19, 'Liona Lewis', '2014-02-12', 'The heat was the worst. The views were okay.', 3), (39, 20, 'Mario Luigi', '2011-10-01', 'Why does the sphinx not ask riddles?', 3), (40, 20, 'Nina Dobre', '2014-02-12', 'Big cat. Very good.', 5); -- -------------------------------------------------------- -- -- Table structure for table `travelinfo` -- CREATE TABLE `travelinfo` ( `place_id` int(11) NOT NULL, `place_name` varchar(255) DEFAULT NULL, `photo1` varchar(500) DEFAULT NULL, `photo2` varchar(500) DEFAULT NULL, `photo3` varchar(500) DEFAULT NULL, `place_desc` varchar(4000) DEFAULT NULL, `price` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `travelinfo` -- INSERT INTO `travelinfo` (`place_id`, `place_name`, `photo1`, `photo2`, `photo3`, `place_desc`, `price`) VALUES (1, 'Statue of Liberty', 'images/ny1.jpg', 'images/ny2.jpg', 'images/ny3.jpg', 'The Statue of Liberty (Liberty Enlightening the World; French: La Liberté éclairant le monde) is a colossal neoclassical sculpture on Liberty Island in New York Harbor in New York, in the United States. The copper statue, a gift from the people of France to the people of the United States, was designed by French sculptor Frédéric Auguste Bartholdi and its metal framework was built by Gustave Eiffel. The statue was dedicated on October 28, 1886.', 256), (2, 'Cloud Gate', 'images/ch1.jpg', 'images/ch2.jpg', 'images/ch3.jpg', 'Cloud Gate is a public sculpture by Indian-born British artist Sir Anish Kapoor, that is the centerpiece of AT&T Plaza at Millennium Park in the Loop community area of Chicago, Illinois. The sculpture and AT&T Plaza are located on top of Park Grill, between the Chase Promenade and McCormick Tribune Plaza & Ice Rink. Constructed between 2004 and 2006, the sculpture is nicknamed The Bean because of its shape.', 287), (3, 'CN Tower', 'images/to1.jpg', 'images/to2.jpg', 'images/to3.jpg', 'The CN Tower is a 553.3 m-high (1,815.3 ft) concrete communications and observation tower located in Downtown Toronto, Ontario, Canada. Built on the former Railway Lands, it was completed in 1976. Its name \"CN\" originally referred to Canadian National, the railway company that built the tower.', 201), (4, 'Niagara Falls', 'images/nf1.jpg', 'images/nf2.jpg', 'images/nf3.jpg', 'Niagara Falls is a group of three waterfalls at the southern end of the Niagara Gorge, spanning the border between the US state of New York and the Canadian province of Ontario. The largest of the three is Horseshoe Falls, also known as Canadian Falls, which straddles the international border between Canada and the United States.', 237), (5, 'Christ the Redeemer', 'images/cr1.jpg', 'images/cr2.jpg', 'images/cr3.jpg', 'Christ the Redeemer is an Art Deco statue of Jesus Christ in Rio de Janeiro, Brazil, created by French sculptor Paul Landowski and built by Brazilian engineer Heitor da Silva Costa, in collaboration with French engineer Albert Caquot. Constructed between 1922 and 1931, the statue is 30 metres (98 ft) high, excluding its 8-metre (26 ft) pedestal.', 892), (6, 'Sugarloaf Mountain', 'images/sm1.jpg', 'images/sm2.jpg', 'images/sm3.jpg', 'Sugarloaf Mountain is a peak situated in Rio de Janeiro, Brazil, at the mouth of Guanabara Bay on a peninsula that juts out into the Atlantic Ocean. Rising 396 m (1,299 ft) above the harbor, its name is said to refer to its resemblance to the traditional shape of concentrated refined loaf sugar.', 736), (7, 'Parque Nacional Los Glaciares', 'images/pn1.jpg', 'images/pn2.jpg', 'images/pn3.jpg', 'Los Glaciares National Park (Spanish: Parque Nacional Los Glaciares) is a federal protected area in Santa Cruz Province, Argentina. The park covers an area of 726,927 ha (7,269.27 km2; 2,806.68 sq mi), making it the largest national park in the country. It was established on 11 May 1937.', 840), (8, 'Aconcagua', 'images/ac1.jpg', 'images/ac2.jpg', 'images/ac3.jpg', 'Aconcagua is a mountain in the Principal Cordillera of the Andes mountain range, in Mendoza Province, Argentina. It is the highest mountain outside of Asia (although there are 189 mountains higher than it in Asia alone), being the highest in both the Southern and Western Hemispheres with a summit elevation of 6,960.8 metres (22,837 ft).', 1093), (9, 'Eiffel Tower', 'images/et1.jpg', 'images/et2.jpg', 'images/et3.jpg', 'The Eiffel Tower is a wrought-iron lattice tower on the Champ de Mars in Paris, France. It is named after the engineer Gustave Eiffel, whose company designed and built the tower. Constructed from 1887 to 1889 as the entrance to the 1889 World\'s Fair, it was initially criticised by some of France\'s leading artists and intellectuals for its design, but it has become a global cultural icon of France and one of the most recognisable structures in the world.', 763), (10, 'Louvre Museum', 'images/lm1.jpg', 'images/lm2.jpg', 'images/lm3.jpg', 'The Louvre or the Louvre Museum is the world\'s largest art museum and a historic monument in Paris, France. A central landmark of the city, it is located on the Right Bank of the Seine in the city\'s 1st arrondissement (district or ward). The museum opened on 10 August 1793 with an exhibition of 537 paintings, the majority of the works being royal and confiscated church property.', 763), (11, 'Big Ben', 'images/bb1.jpg', 'images/bb2.jpg', 'images/bb3.jpg', 'Big Ben is the nickname for the Great Bell of the striking clock at the north end of the Palace of Westminster in London and is usually extended to refer to both the clock and the clock tower. The official name of the tower in which Big Ben is located was originally the Clock Tower, but it was renamed Elizabeth Tower in 2012 to mark the Diamond Jubilee of Elizabeth II. The tower was designed by Augustus Pugin in a neo-Gothic style. When completed in 1859, its clock was the largest and most accurate four-faced striking and chiming clock in the world.', 789), (12, 'Buckingham Palace', 'images/bp1.jpg', 'images/bp2.jpg', 'images/bp3.jpg', 'Buckingham Palace is the London residence and administrative headquarters of the monarchy of the United Kingdom. Located in the City of Westminster, the palace is often at the centre of state occasions and royal hospitality. It has been a focal point for the British people at times of national rejoicing and mourning. Originally known as Buckingham House, the building at the core of today\'s palace was a large townhouse built for the Duke of Buckingham in 1703 on a site that had been in private ownership for at least 150 years.', 791), (13, 'Taj Mahal', 'images/tm1.jpg', 'images/tm2.jpg', 'images/tm3.jpg', 'The Taj Mahal is an ivory-white marble mausoleum on the south bank of the Yamuna river in the Indian city of Agra. It was commissioned in 1632 by the Mughal emperor Shah Jahan (reigned from 1628 to 1658) to house the tomb of his favourite wife, Mumtaz Mahal; it also houses the tomb of Shah Jahan himself. The tomb is the centrepiece of a 17-hectare (42-acre) complex, which includes a mosque and a guest house, and is set in formal gardens bounded on three sides by a crenellated wall.', 1089), (14, 'Gateway Of India Mumbai', 'images/gi1.jpg', 'images/gi2.jpg', 'images/gi3.jpg', 'The Gateway of India is an arch-monument built in the early twentieth century in the city of Mumbai, in the Indian state of Maharashtra. It was erected to commemorate the landing in December 1911 at Apollo Bunder, Mumbai (then Bombay) of King-Emperor George V and Queen-Empress Mary, the first British monarch to visit India. At the time of the royal visit, the gateway was not yet built, and a cardboard structure greeted the monarch. The foundation stone was laid in March 1913 for a monument built in the Indo-Saracenic style, incorporating elements of 16th-century Marathi architecture. The final design of the monument by architect George Wittet was sanctioned only in 1914, and construction was completed in 1924', 1192), (15, 'Boracay', 'images/bo1.jpg', 'images/bo2.jpg', 'images/bo3.jpg', 'Boracay is a small island in the Philippines, 7 km long and 1 km wide, located in the Western Visayas approximately 315 kilometres (196 miles) south of Manila and 2 kilometres (1.2 mi) off the northwest tip of Panay Island. Boracay has a population of 32,267 as of February 2016. The island comprises the barangays of Manoc-Manoc, Balabag, and Yapak in the municipality of Malay, in Aklan Province. The island is administered by the Boracay Inter-agency Task Force. Apart from its white sand beaches, Boracay is also famous for being one of the world\'s top destinations for relaxation.', 1235), (16, 'Chocolate Hills', 'images/cp1.jpg', 'images/cp2.jpg', 'images/cp3.jpg', 'The Chocolate Hills are a geological formation in the Bohol province of the Philippines. There are at least 1,260 hills but there may be as many as 1,776 hills spread over an area of more than 50 square kilometres. They are covered in green grass that turns brown during the dry season, hence the name. The Chocolate Hills is a famous tourist attraction of Bohol. They are featured in the provincial flag and seal to symbolize the abundance of natural attractions in the province. They are in the Philippine Tourism Authority\'s list of tourist destinations in the Philippines; they have been declared the country\'s third National Geological Monument and proposed for inclusion in the UNESCO World Heritage List.', 1264), (17, 'Kruger National Park', 'images/kn1.jpg', 'images/kn2.jpg', 'images/kn3.jpg', 'Kruger National Park is a South African National Park and one of the largest game reserves in Africa. It covers an area of 19,485 km in the provinces of Limpopo and Mpumalanga in northeastern South Africa, and extends 360 km from north to south and 65 km from east to west. The administrative headquarters are in Skukuza. Areas of the park were first protected by the government of the South African Republic in 1898, and it became South Africa\'s first national park in 1926.', 1783), (18, 'Cape of Good Hope', 'images/cg1.jpg', 'images/cg2.jpg', 'images/cg3.jpg', 'The Cape of Good Hope is a rocky headland on the Atlantic coast of the Cape Peninsula in South Africa.As one of the great capes of the South Atlantic Ocean, the Cape of Good Hope has long been of special significance to sailors, many of whom refer to it simply as \"the Cape\". It is a waypoint on the Cape Route and the clipper route followed by clipper ships to the Far East and Australia, and still followed by several offshore yacht races.', 1827), (19, 'Giza Necropolis', 'images/pg1.jpg', 'images/pg2.jpg', 'images/pg3.jpg', 'The Giza pyramid complex, also called the Giza Necropolis, is the site on the Giza Plateau in Greater Cairo, Egypt that includes the Great Pyramid of Giza, the Pyramid of Khafre, and the Pyramid of Menkaure, along with their associated pyramid complexes and the Great Sphinx of Giza. All were built during the Fourth Dynasty of the Old Kingdom of Ancient Egypt. The site also includes several cemeteries and the remains of a workers\' village.', 2313), (20, 'Great Sphinx of Giza', 'images/gs1.jpg', 'images/gs2.jpg', 'images/gs3.jpg', 'The Great Sphinx of Giza, commonly referred to as the Sphinx of Giza or just the Sphinx, is a limestone statue of a reclining sphinx, a mythical creature with the body of a lion and the head of a human. Facing directly from West to East, it stands on the Giza Plateau on the west bank of the Nile in Giza, Egypt. The face of the Sphinx is generally believed to represent the pharaoh Khafre.', 2817); -- -------------------------------------------------------- -- -- Table structure for table `travelplan` -- CREATE TABLE `travelplan` ( `id` int(11) NOT NULL, `tour_id` varchar(5) NOT NULL, `start_date` date NOT NULL, `trip_duration` varchar(255) NOT NULL, `air_fare` int(11) NOT NULL, `country1` varchar(255) NOT NULL, `country2` varchar(255) NOT NULL, `trip_info1` varchar(255) NOT NULL, `trip_info2` varchar(255) NOT NULL, `total_price` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `travelplan` -- INSERT INTO `travelplan` (`id`, `tour_id`, `start_date`, `trip_duration`, `air_fare`, `country1`, `country2`, `trip_info1`, `trip_info2`, `total_price`) VALUES (1, 'EUL01', '2020-07-12', '7 days', 90, 'United Kingdom', 'France', 'Big Ben AND Buckingham Palace', 'Eiffel Tower AND Louvre Museum', 1485), (2, 'ASL01', '2020-12-03', '7 days', 508, 'India', 'Philippines', 'Taj Mahal AND Gateway of India', 'Boracay AND Chocolate Hills', 1745); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(11) NOT NULL, `username` varchar(250) NOT NULL, `fullname` varchar(250) NOT NULL, `address` varchar(255) NOT NULL, `telno` varchar(250) NOT NULL, `email` varchar(250) NOT NULL, `password` varchar(250) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `username`, `fullname`, `address`, `telno`, `email`, `password`) VALUES (3, 'testing', 'test', 'test', '1234567890', 'test@test.com', '$2y$10$2RAduCZ6QX5WQgEDd3f3O.r7urZi3HINiP.vLSB.FkKs32TboBEwK'), (4, 'test2', 'test2', 'test2', 'test2', 'test2@test2.com', '$2y$10$ulPN7OgSn5LI8/ASMWfHpOuTvTb9SxY/W0KmarIDHlytMmyMaLCLi'); -- -- Table structure for table `mappair` -- CREATE TABLE `mappair` ( `map_id` int(11) PRIMARY KEY AUTO_INCREMENT, `place1_id` int(11) NOT NULL, `place2_id` int(11) NOT NULL, `mapimage` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `mappair` -- INSERT INTO `mappair` (`place1_id`, `place2_id`,`mapimage`) VALUES (3, 16, 'images/maps/0316.jpg'), (8, 20, 'images/maps/0820.jpg'), (10, 11, 'images/maps/1011.jpg'); -- -- Indexes for dumped tables -- -- -- Indexes for table `accounts` -- ALTER TABLE `accounts` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `username` (`username`); -- -- Indexes for table `closedistances` -- ALTER TABLE `closedistances` ADD PRIMARY KEY (`attID`), ADD KEY `place_id` (`place_id`); -- -- Indexes for table `home` -- ALTER TABLE `home` ADD PRIMARY KEY (`place_id`); -- -- Indexes for table `landmarks` -- ALTER TABLE `landmarks` ADD PRIMARY KEY (`id`), ADD KEY `place_id` (`place_id`); -- -- Indexes for table `museums` -- ALTER TABLE `museums` ADD PRIMARY KEY (`id`), ADD KEY `place_id` (`place_id`); -- -- Indexes for table `nature` -- ALTER TABLE `nature` ADD PRIMARY KEY (`id`), ADD KEY `place_id` (`place_id`); -- -- Indexes for table `review` -- ALTER TABLE `review` ADD PRIMARY KEY (`id`); -- -- Indexes for table `travelinfo` -- ALTER TABLE `travelinfo` ADD PRIMARY KEY (`place_id`); -- -- Indexes for table `travelplan` -- ALTER TABLE `travelplan` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `accounts` -- ALTER TABLE `accounts` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `home` -- ALTER TABLE `home` MODIFY `place_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=73; -- -- AUTO_INCREMENT for table `landmarks` -- ALTER TABLE `landmarks` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `museums` -- ALTER TABLE `museums` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `nature` -- ALTER TABLE `nature` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `review` -- ALTER TABLE `review` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=41; -- -- AUTO_INCREMENT for table `travelinfo` -- ALTER TABLE `travelinfo` MODIFY `place_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22; -- -- AUTO_INCREMENT for table `travelplan` -- ALTER TABLE `travelplan` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- Constraints for dumped tables -- -- -- Constraints for table `closedistances` -- ALTER TABLE `closedistances` ADD CONSTRAINT `closedistances_ibfk_1` FOREIGN KEY (`place_id`) REFERENCES `home` (`place_id`); -- -- Constraints for table `landmarks` -- ALTER TABLE `landmarks` ADD CONSTRAINT `landmarks_ibfk_1` FOREIGN KEY (`place_id`) REFERENCES `home` (`place_id`); -- -- Constraints for table `museums` -- ALTER TABLE `museums` ADD CONSTRAINT `museums_ibfk_1` FOREIGN KEY (`place_id`) REFERENCES `home` (`place_id`); -- -- Constraints for table `nature` -- ALTER TABLE `nature` ADD CONSTRAINT `nature_ibfk_1` FOREIGN KEY (`place_id`) REFERENCES `home` (`place_id`); -- -- Constraints for table `travelinfo` -- ALTER TABLE `travelinfo` ADD CONSTRAINT `travelinfo_ibfk_1` FOREIGN KEY (`place_id`) REFERENCES `home` (`place_id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Constraints for table `travelplan` -- ALTER TABLE `travelplan` ADD CONSTRAINT `travelplan_ibfk_1` FOREIGN KEY (`id`) REFERENCES `travelinfo` (`place_id`) ON DELETE NO ACTION ON UPDATE NO ACTION; 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 */;
-- phpMyAdmin SQL Dump -- version 4.9.0.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Tempo de geração: 02-Ago-2019 às 02:37 -- Versão do servidor: 10.3.16-MariaDB -- versão do PHP: 7.3.6 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!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 utf8mb4 */; -- -- Banco de dados: `biomedicina` -- -- -------------------------------------------------------- -- -- Estrutura da tabela `users` -- CREATE TABLE `users` ( `id` int(11) NOT NULL, `login` text NOT NULL, `password` text NOT NULL, `tipo_usuario` int(2) NOT NULL DEFAULT 4, `nome` varchar(50) NOT NULL, `sobrenome` varchar(50) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Extraindo dados da tabela `users` -- INSERT INTO `users` (`id`, `login`, `password`, `tipo_usuario`, `nome`, `sobrenome`) VALUES (1, 'admin', 'd033e22ae348aeb5660fc2140aec35850c4da997', 1, 'Administrador', NULL), (2, 'medico', 'c83be042605cfabc08851be83bdfe3653daab382', 3, 'Medico', ''), (4, 'triagem', '6469ec74c9f95e5a819785a0553b0ec1c1b6e273', 6, 'Triagem', NULL), (5, 'estagiario', '7acbd535b8483738bf8377cfdee56ad191a452dd', 5, 'Estagiario', NULL), (6, 'codestagio', '85301d150ef7e14ecfb63130a9df01319c492056', 4, 'Coordenadora', NULL), (7, 'codcurso', 'fbbc7a9f31ad6ef693566831d844d8b8e862f4bb', 2, 'Coordenadora', NULL); -- -- Índices para tabelas despejadas -- -- -- Índices para tabela `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT de tabelas despejadas -- -- -- AUTO_INCREMENT de tabela `users` -- ALTER TABLE `users` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; 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 */;
drop table if exists GuideAchievement; /*==============================================================*/ /* Table: GuideAchievement */ /*==============================================================*/ create table GuideAchievement ( guideId integer(10) not null, total int(10) default 1, primary key (guideId) ) ENGINE= InnoDB; drop table if exists DailyReport; /*==============================================================*/ /* Table: DailyReport */ /*==============================================================*/ create table DailyReport ( id bigint(20) not null auto_increment, sampleTick bigint(20), totalUser int(10) default 0, createPlayer int(10) default 0, everLogonTotal int(10) default 0, activeUser int(10) default 0, todayNeverLogonUser int(10) default 0, todayEverLogonBaseOnNumOfDaysBeforeCreated_1 double default 0, todayEverLogonBaseOnNumOfDaysBeforeCreated_2 double default 0, todayEverLogonBaseOnNumOfDaysBeforeCreated_3 double default 0, todayEverLogonBaseOnNumOfDaysBeforeCreated_4 double default 0, todayEverLogonBaseOnNumOfDaysBeforeCreated_5 double default 0, todayEverLogonBaseOnNumOfDaysBeforeCreated_6 double default 0, todayEverLogonBaseOnNumOfDaysBeforeCreated_7 double default 0, todayEverLogonBaseOnNumOfDaysBeforeCreated_15 double default 0, todayEverLogonBaseOnNumOfDaysBeforeCreated_30 double default 0, primary key (id) ) auto_increment = 10000 ENGINE= InnoDB; drop table if exists FightHeroStatistics; /*==============================================================*/ /* Table: FightHeroStatistics */ /*==============================================================*/ create table FightHeroStatistics ( id bigint(20) not null auto_increment, date char(11), heroId1 double, heroId2 double, heroId3 double, heroId4 double, heroId5 double, heroId6 double, heroId7 double, heroId8 double, heroId9 double, heroId10 double, heroId11 double, heroId12 double, heroId13 double, heroId14 double, heroId15 double, heroId16 double, heroId17 double, heroId18 double, heroId19 double, heroId20 double, heroId21 double, heroId22 double, heroId23 double, heroId24 double, heroId25 double, heroId26 double, heroId27 double, heroId28 double, heroId29 double, heroId30 double, heroId31 double, heroId32 double, heroId33 double, heroId34 double, heroId35 double, heroId36 double, heroId37 double, heroId38 double, heroId39 double, heroId40 double, heroId41 double, heroId42 double, heroId43 double, heroId44 double, heroId45 double, heroId46 double, heroId47 double, heroId48 double, heroId49 double, heroId50 double, primary key (id) ) auto_increment = 10000 ENGINE= InnoDB DEFAULT CHARACTER SET= utf8; drop table if exists DailyOnlineTimePercent; /*==============================================================*/ /* Table: DailyOnlineTimePercent */ /*==============================================================*/ create table DailyOnlineTimePercent ( id bigint(20) not null auto_increment, date char(11), percent1 double, percent2 double, percent3 double, percent4 double, percent5 double, percent6 double, primary key (id) ) auto_increment = 10000 ENGINE= InnoDB DEFAULT CHARACTER SET= utf8; drop table if exists DailyLogonCountPercent; /*==============================================================*/ /* Table: DailyLogonCountPercent */ /*==============================================================*/ create table DailyLogonCountPercent ( id bigint(20) not null auto_increment, date char(11), percent1 double, percent2 double, percent3 double, percent4 double, percent5 double, primary key (id) ) auto_increment = 10000 ENGINE= InnoDB DEFAULT CHARACTER SET= utf8; drop table if exists GuideAchievementPercent; /*==============================================================*/ /* Table: GuideAchievementPercent */ /*==============================================================*/ create table GuideAchievementPercent ( id bigint(20) not null auto_increment, date char(11), guideId1 double, guideId2 double, guideId3 double, guideId4 double, guideId5 double, guideId6 double, guideId7 double, guideId8 double, guideId9 double, guideId10 double, guideId11 double, guideId12 double, guideId13 double, guideId14 double, guideId15 double, guideId16 double, guideId17 double, guideId18 double, guideId19 double, guideId20 double, guideId21 double, guideId22 double, guideId23 double, guideId24 double, guideId25 double, guideId26 double, guideId27 double, guideId28 double, guideId29 double, guideId30 double, guideId31 double, guideId32 double, guideId33 double, guideId34 double, guideId35 double, guideId36 double, guideId37 double, guideId38 double, guideId39 double, guideId40 double, guideId41 double, guideId42 double, guideId43 double, guideId44 double, guideId45 double, guideId46 double, guideId47 double, guideId48 double, guideId49 double, guideId50 double, guideId51 double, guideId52 double, guideId53 double, guideId54 double, guideId55 double, guideId56 double, guideId57 double, guideId58 double, guideId59 double, guideId60 double, guideId61 double, guideId62 double, guideId63 double, guideId64 double, guideId65 double, guideId66 double, guideId67 double, guideId68 double, guideId69 double, guideId70 double, guideId71 double, guideId72 double, guideId73 double, guideId74 double, guideId75 double, guideId76 double, guideId77 double, guideId78 double, guideId79 double, guideId80 double, guideId81 double, guideId82 double, guideId83 double, guideId84 double, guideId85 double, guideId86 double, guideId87 double, guideId88 double, guideId89 double, guideId90 double, guideId91 double, guideId92 double, guideId93 double, guideId94 double, guideId95 double, guideId96 double, guideId97 double, guideId98 double, guideId99 double, guideId100 double, guideId101 double, guideId102 double, guideId103 double, guideId104 double, guideId105 double, guideId106 double, guideId107 double, guideId108 double, guideId109 double, guideId110 double, guideId111 double, guideId112 double, guideId113 double, guideId114 double, guideId115 double, guideId116 double, guideId117 double, guideId118 double, guideId119 double, guideId120 double, guideId121 double, guideId122 double, guideId123 double, guideId124 double, guideId125 double, guideId126 double, guideId127 double, guideId128 double, guideId129 double, guideId130 double, guideId131 double, guideId132 double, guideId133 double, guideId134 double, guideId135 double, guideId136 double, guideId137 double, guideId138 double, guideId139 double, guideId140 double, guideId141 double, guideId142 double, guideId143 double, guideId144 double, guideId145 double, guideId146 double, guideId147 double, guideId148 double, guideId149 double, guideId150 double, guideId151 double, guideId152 double, guideId153 double, guideId154 double, guideId155 double, guideId156 double, guideId157 double, guideId158 double, guideId159 double, guideId160 double, guideId161 double, guideId162 double, guideId163 double, guideId164 double, guideId165 double, guideId166 double, guideId167 double, guideId168 double, guideId169 double, guideId170 double, guideId171 double, guideId172 double, guideId173 double, guideId174 double, guideId175 double, guideId176 double, guideId177 double, guideId178 double, guideId179 double, guideId180 double, guideId181 double, guideId182 double, guideId183 double, guideId184 double, guideId185 double, guideId186 double, guideId187 double, guideId188 double, guideId189 double, guideId190 double, guideId191 double, guideId192 double, guideId193 double, guideId194 double, guideId195 double, guideId196 double, guideId197 double, guideId198 double, guideId199 double, guideId200 double, primary key (id) ) auto_increment = 10000 ENGINE= InnoDB DEFAULT CHARACTER SET= utf8; drop table if exists PlayerLossLevelPercent; /*==============================================================*/ /* Table: PlayerLossLevelPercent */ /*==============================================================*/ create table PlayerLossLevelPercent ( id bigint(20) not null auto_increment, date char(11), percent1 double, percent2 double, percent3 double, percent4 double, percent5 double, percent6 double, percent7 double, percent8 double, percent9 double, percent10 double, percent11 double, percent12 double, percent13 double, percent14 double, percent15 double, percent16 double, percent17 double, percent18 double, percent19 double, percent20 double, percent21 double, percent22 double, percent23 double, percent24 double, percent25 double, percent26 double, percent27 double, percent28 double, percent29 double, percent30 double, percent31 double, percent32 double, percent33 double, percent34 double, percent35 double, percent36 double, percent37 double, percent38 double, percent39 double, percent40 double, percent41 double, percent42 double, percent43 double, percent44 double, percent45 double, percent46 double, percent47 double, percent48 double, percent49 double, percent50 double, percent51 double, percent52 double, percent53 double, percent54 double, percent55 double, percent56 double, percent57 double, percent58 double, percent59 double, percent60 double, percent61 double, percent62 double, percent63 double, percent64 double, percent65 double, percent66 double, percent67 double, percent68 double, percent69 double, percent70 double, percent71 double, percent72 double, percent73 double, percent74 double, percent75 double, percent76 double, percent77 double, percent78 double, percent79 double, percent80 double, percent81 double, percent82 double, percent83 double, percent84 double, percent85 double, percent86 double, percent87 double, percent88 double, percent89 double, percent90 double, percent91 double, percent92 double, percent93 double, percent94 double, percent95 double, percent96 double, percent97 double, percent98 double, percent99 double, percent100 double, percent101 double, percent102 double, percent103 double, percent104 double, percent105 double, percent106 double, percent107 double, percent108 double, percent109 double, percent110 double, percent111 double, percent112 double, percent113 double, percent114 double, percent115 double, percent116 double, percent117 double, percent118 double, percent119 double, percent120 double, percent121 double, percent122 double, percent123 double, percent124 double, percent125 double, percent126 double, percent127 double, percent128 double, percent129 double, percent130 double, percent131 double, percent132 double, percent133 double, percent134 double, percent135 double, percent136 double, percent137 double, percent138 double, percent139 double, percent140 double, percent141 double, percent142 double, percent143 double, percent144 double, percent145 double, percent146 double, percent147 double, percent148 double, percent149 double, percent150 double, percent151 double, percent152 double, percent153 double, percent154 double, percent155 double, percent156 double, percent157 double, percent158 double, percent159 double, percent160 double, percent161 double, percent162 double, percent163 double, percent164 double, percent165 double, percent166 double, percent167 double, percent168 double, percent169 double, percent170 double, percent171 double, percent172 double, percent173 double, percent174 double, percent175 double, percent176 double, percent177 double, percent178 double, percent179 double, percent180 double, percent181 double, percent182 double, percent183 double, percent184 double, percent185 double, percent186 double, percent187 double, percent188 double, percent189 double, percent190 double, percent191 double, percent192 double, percent193 double, percent194 double, percent195 double, percent196 double, percent197 double, percent198 double, percent199 double, percent200 double, primary key (id) ) auto_increment = 10000 ENGINE= InnoDB DEFAULT CHARACTER SET= utf8; drop table if exists equipBattleStatistics; /*==============================================================*/ /* Table: equipBattleStatistics */ /*==============================================================*/ create table equipBattleStatistics ( id bigint(20) not null auto_increment, data char(11), playerName char(20) binary, pos bigint(20), primary key (id) ) auto_increment = 100000 ENGINE= InnoDB DEFAULT CHARACTER SET= utf8; drop table if exists roleCultivateStatistics; /*==============================================================*/ /* Table: roleCultivateStatistics */ /*==============================================================*/ create table roleCultivateStatistics ( id bigint(20) not null auto_increment, data char(11), playerName char(20) binary, heroId binary(20), type bigint, bfValue binary(20), afValue binary(20), primary key (id) ) auto_increment = 100000 ENGINE= InnoDB DEFAULT CHARACTER SET= utf8; drop table if exists DailyTaskActiveValueSTTE; /*==============================================================*/ /* Table: DailyTaskActiveValueSTTE */ /*==============================================================*/ create table DailyTaskActiveValueSTTE ( playerId bigint(20) not null, date varchar(20) not null, registerTime varchar(20), playerName varchar(20), dailyTaskActiveValue bigint(20), primary key (playerId, date) ) ENGINE= InnoDB DEFAULT CHARACTER SET= utf8; drop table if exists newBarrierIdSTTE; /*==============================================================*/ /* Table: newBarrierIdSTTE */ /*==============================================================*/ create table newBarrierIdSTTE ( playerId bigint(20) not null, date char(20), playerName char(20), type bigint not null, newBarrierId bigint(20), primary key (playerId, type) ) ENGINE= InnoDB DEFAULT CHARACTER SET= utf8; drop table if exists DailyEndlessSTTE; /*==============================================================*/ /* Table: DailyEndlessSTTE */ /*==============================================================*/ create table DailyEndlessSTTE ( playerId bigint(20) not null, registerTime char(20), date char(20) not null, playerName char(20), type bigint(20) not null, cnt varchar(1024), winCnt bigint(20), primary key (playerId, date, type) ) ENGINE= InnoDB DEFAULT CHARACTER SET= utf8; drop table if exists DailyRefineCntSTTE; /*==============================================================*/ /* Table: DailyRefineCntSTTE */ /*==============================================================*/ create table DailyRefineCntSTTE ( playerId bigint(20) not null, playerName char(20), registerTime char(20), date char(20), cnt bigint, primary key (playerId) ) ENGINE= InnoDB DEFAULT CHARACTER SET= utf8; drop table if exists ArmEquipFullSTTE; /*==============================================================*/ /* Table: ArmEquipFullSTTE */ /*==============================================================*/ create table ArmEquipFullSTTE ( playerId bigint(20) not null, registerTime char(20), playerName char(20), finshTime char(20), primary key (playerId) ) ENGINE= InnoDB DEFAULT CHARACTER SET= utf8; drop table if exists DailyEquipRefineLvSTTE; /*==============================================================*/ /* Table: DailyEquipRefineLvSTTE */ /*==============================================================*/ create table DailyEquipRefineLvSTTE ( playerId bigint(20) not null, registerTime char(20), date char(20) not null, playerName char(20), pos1 bigint, pos2 bigint, pos3 bigint, pos4 bigint, pos5 bigint, pos6 bigint, pos7 bigint, pos8 bigint, primary key (playerId, date) ) ENGINE= InnoDB DEFAULT CHARACTER SET= utf8; drop table if exists DailyEquipAwakeLvSTTE; /*==============================================================*/ /* Table: DailyEquipAwakeLvSTTE */ /*==============================================================*/ create table DailyEquipAwakeLvSTTE ( playerId bigint(20) not null, registerTime char(20), date char(20) not null, playerName char(20), pos1 bigint, pos2 bigint, pos3 bigint, pos4 bigint, pos5 bigint, pos6 bigint, pos7 bigint, pos8 bigint, primary key (playerId, date) ) ENGINE= InnoDB DEFAULT CHARACTER SET= utf8; drop table if exists DailyUseDiamondSTTE; /*==============================================================*/ /* Table: DailyUseDiamondSTTE */ /*==============================================================*/ create table DailyUseDiamondSTTE ( playerId bigint(20) not null, date char(20) not null, playerName char(20), useWay bigint, useDiamond bigint(20), surplusDiamond bigint(20), time char(30) not null, shopGoodsId bigint(20), primary key (playerId, date, time) ) ENGINE= InnoDB DEFAULT CHARACTER SET= utf8; drop table if exists DailyCompointSTTE; /*==============================================================*/ /* Table: DailyCompointSTTE */ /*==============================================================*/ create table DailyCompointSTTE ( playerId bigint(20) not null, date char(20) not null, registerTime char(20), playerName char(20), getComPoint bigint(20), useComPoint bigint(20), primary key (playerId, date) ) ENGINE= InnoDB DEFAULT CHARACTER SET= utf8; drop table if exists barrierStarSTTE; /*==============================================================*/ /* Table: barrierStarSTTE */ /*==============================================================*/ create table barrierStarSTTE ( playerId bigint(20) not null, date char(20) not null, registerTime char(20), playerName char(20), chapter1 bigint, chapter2 bigint, chapter3 bigint, chapter4 bigint, chapter5 bigint, chapter6 bigint, chapter7 bigint, chapter8 bigint, primary key (playerId, date) ) ENGINE= InnoDB DEFAULT CHARACTER SET= utf8;
ALTER TABLE `m_product_loan` ADD COLUMN `allow_variabe_installments` BIT(1) NOT NULL DEFAULT 0 AFTER `is_linked_to_floating_interest_rates` ; CREATE TABLE `m_product_loan_variable_installment_config` ( `id` BIGINT(20) NOT NULL AUTO_INCREMENT, `loan_product_id` BIGINT(20) NOT NULL, `minimum_gap` INT(4) NOT NULL, `maximum_gap` INT(4) NOT NULL, PRIMARY KEY (`id`), CONSTRAINT `FK_mappings_m_variable_product_loan_id` FOREIGN KEY (`loan_product_id`) REFERENCES `m_product_loan` (`id`) ); INSERT INTO `m_permission` (`grouping`, `code`, `entity_name`, `action_name`, `can_maker_checker`) VALUES ('portfolio', 'CREATESCHEDULEEXCEPTIONS_LOAN', 'LOAN', 'CREATESCHEDULEEXCEPTIONS', 0), ('portfolio', 'CREATESCHEDULEEXCEPTIONS_LOAN_CHECKER', 'LOAN', 'CREATESCHEDULEEXCEPTIONS_CHECKER', 0), ('portfolio', 'DELETESCHEDULEEXCEPTIONS_LOAN', 'LOAN', 'DELETESCHEDULEEXCEPTIONS', 0),('portfolio', 'DELETESCHEDULEEXCEPTIONS_LOAN_CHECKER', 'LOAN', 'DELETESCHEDULEEXCEPTIONS_CHECKER', 0); ALTER TABLE `m_loan_term_variations` ALTER `applicable_from` DROP DEFAULT, ALTER `term_value` DROP DEFAULT; ALTER TABLE `m_loan_term_variations` CHANGE COLUMN `applicable_from` `applicable_date` DATE NOT NULL AFTER `term_type`, CHANGE COLUMN `term_value` `decimal_value` DECIMAL(19,6) NULL AFTER `applicable_date`, ADD COLUMN `date_value` DATE NULL AFTER `decimal_value`, ADD COLUMN `is_specific_to_installment` TINYINT NOT NULL DEFAULT '0' AFTER `date_value`, ADD COLUMN `applied_on_loan_status` SMALLINT(5) NOT NULL AFTER `is_specific_to_installment`; UPDATE `m_loan_term_variations` SET `applied_on_loan_status`=300;
-- scripts/schema.mysql.sql -- -- You will need load your database schema with this SQL. DROP TABLE IF EXISTS book; CREATE TABLE book ( id int(11) NOT NULL AUTO_INCREMENT, author VARCHAR(32) NOT NULL, title VARCHAR(32) NOT NULL, imagepath VARCHAR(64) NOT NULL, PRIMARY KEY (id) ) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COMMENT ""; CREATE TABLE employee ( id int(11) NOT NULL AUTO_INCREMENT, emp_name VARCHAR(32) NOT NULL, emp_job VARCHAR(32) NOT NULL, PRIMARY KEY (id) ) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COMMENT "";
SELECT * FROM wierrlog SELECT * FROM wsSettings_sql SELECT * FROM wsusers SELECT * FROM wsFormDefaultSettings SELECT * FROM wsDeviceSettings ORDER BY Device UPDATE wsDeviceSettings SET WiSysUser = 'sjarboe' WHERE Device = 'HQTS' and WiSysUser = 'brrogers' INSERT INTO wsDeviceSettings VALUES ('001','HQTS','brrogers','popbin',''), ('001','HQTS','brrogers','POPPutAwayLoc','') , ('001','HQTS','brrogers','popstagebin','') , ('001','HQTS','brrogers','rcvgbin','') , ('001','HQTS','brrogers','RCVGPutAwayLoc','') , ('001','HQTS','brrogers','sfcbin','') , ('001','HQTS','brrogers','SFCPutAwayLoc','')
use movingcash; Create Table if not exists User( id INTEGER, name VARCHAR(30), lastname VARCHAR(30), document INTEGER, typeDoc INTEGER, email VARCHAR(30) );
CREATE procedure sp_ser_getjcjobtaskdetails(@JobCardID Int,@ProductCode nvarchar(15), @ItemSpec1 nvarchar(50),@JobID nvarchar(100)) as Select j.TaskID, t.[Description], t.ServiceTax from JobCardDetail j Inner Join TaskMaster t on j.TaskID = t.TaskID Where j.JobCardID = @JobCardID and j.Product_Code = @ProductCode and j.Product_Specification1 = @ItemSpec1 and j.JobID = @JobID and j.SpareCode = ''
/* Создание процедуры получения билетов по линии */ CREATE PROCEDURE /*PREFIX*/GET_TICKET_LINE ( TIRAGE_ID VARCHAR(32), PRIZE_ID VARCHAR(32), ROUND_NUM INTEGER, ROUND_NUM_EX INTEGER, LINE_NUM INTEGER ) RETURNS ( TICKET_ID VARCHAR(32) -- ,SQL VARCHAR(2000) ) AS DECLARE SQL VARCHAR(2000); DECLARE S VARCHAR(250); DECLARE F VARCHAR(10); DECLARE FN VARCHAR(15); DECLARE I INTEGER; DECLARE BARREL_NUM VARCHAR(2); BEGIN F='F'||CAST(LINE_NUM AS VARCHAR(10)); SQL='SELECT TICKET_ID FROM /*PREFIX*/TICKETS '|| ' WHERE TIRAGE_ID='''||TIRAGE_ID||''' AND NOT_USED=0 '; S=''; IF (PRIZE_ID IS NOT NULL) THEN BEGIN FOR SELECT BARREL_NUM FROM /*PREFIX*/LOTTERY WHERE TIRAGE_ID=:TIRAGE_ID AND PRIZE_ID=:PRIZE_ID AND ROUND_NUM IN (:ROUND_NUM,:ROUND_NUM_EX) ORDER BY INPUT_DATE INTO :BARREL_NUM DO BEGIN IF (S='') THEN BEGIN S=''''||BARREL_NUM||''''; END ELSE BEGIN S=S||','''||BARREL_NUM||''''; END END END ELSE BEGIN FOR SELECT BARREL_NUM FROM /*PREFIX*/LOTTERY WHERE TIRAGE_ID=:TIRAGE_ID AND PRIZE_ID IS NULL AND ROUND_NUM IN (:ROUND_NUM,:ROUND_NUM_EX) ORDER BY INPUT_DATE INTO :BARREL_NUM DO BEGIN IF (S='') THEN BEGIN S=''''||BARREL_NUM||''''; END ELSE BEGIN S=S||','''||BARREL_NUM||''''; END END END IF (S<>'') THEN BEGIN SQL=SQL||'AND ('; I=1; WHILE (I<10) DO BEGIN FN=F||'_0'||CAST(I AS VARCHAR(1)); SQL=SQL||'('||FN||' IN ('||S||') OR '||FN||' IS NULL)'; IF (I<9) THEN BEGIN SQL=SQL||' AND '; END I=I+1; END SQL=SQL||')'; FOR EXECUTE STATEMENT SQL INTO :TICKET_ID DO BEGIN SUSPEND; END END END; -- /* Фиксация изменений */ COMMIT
SELECT maker, COUNT(model) count FROM Product WHERE type = 'PC' GROUP BY maker HAVING COUNT(model) >= 3
/* Navicat MySQL Data Transfer Source Server : localhost Source Server Version : 50624 Source Host : localhost:3306 Source Database : ssm Target Server Type : MYSQL Target Server Version : 50624 File Encoding : 65001 Date: 2019-03-14 11:48:35 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for news -- ---------------------------- DROP TABLE IF EXISTS `news`; CREATE TABLE `news` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(128) NOT NULL, `content` longtext NOT NULL, `time` datetime NOT NULL, `author` int(255) NOT NULL, PRIMARY KEY (`id`), KEY `FK_NEWS_AUTHOR` (`author`), CONSTRAINT `FK_NEWS_AUTHOR` FOREIGN KEY (`author`) REFERENCES `user` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of news -- ---------------------------- INSERT INTO `news` VALUES ('5', 'News Title', 'News Content', '2019-03-14 11:21:18', '1'); INSERT INTO `news` VALUES ('6', 'News Title', 'News Content', '2019-03-14 11:47:28', '1'); INSERT INTO `news` VALUES ('7', 'News Title', 'News Content', '2019-03-14 11:47:32', '1'); -- ---------------------------- -- Table structure for user -- ---------------------------- DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(32) NOT NULL, `password` varchar(64) DEFAULT NULL, `name` varchar(32) DEFAULT NULL, `sex` varchar(8) DEFAULT NULL, `age` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of user -- ---------------------------- INSERT INTO `user` VALUES ('1', 'root', 'root', '普通用户', '女', '21'); INSERT INTO `user` VALUES ('2', 'admin', 'admin', '系统管理员', '男', '20');
-- purge_cursors.sql -- purge the cursors from the shared spool col dsqlid new_value dsqlid noprint prompt SQL_ID: set echo off term off feed off select '&1' dsqlid from dual; set term on feed on var vsqlid varchar2(13) exec :vsqlid := '&&dsqlid' select invalidations, executions, child_number from v$sql where sql_id = :vsqlid; set serveroutput on size unlimited declare v_cursor_locator varchar2(60); c_count integer; begin for sqlrec in ( select address, hash_value, sql_id from v$sqlarea where sql_id = :vsqlid ) loop v_cursor_locator := sqlrec.address || ',' || sqlrec.hash_value; dbms_output.put_line('Purging SQL_ID ' || :vsqlid || ' Cursor: ' || v_cursor_locator ); -- use address and hash_value to purge -- eg. dbms_shared_pool.purge ('0000000382E80750,1052545619','C'); sys.dbms_shared_pool.purge(v_cursor_locator,'C'); end loop; for sqlrec in ( select column_value sql_id from ( table( sys.odcivarchar2list(:vsqlid)) ) ) loop select count(*) into c_count from v$sqlarea where sql_id = sqlrec.sql_id; dbms_output.put_line(sqlrec.sql_id || ': ' || to_char(c_count)); end loop; end; / undef 1 set serveroutput off select invalidations, executions, child_number from v$sql where sql_id = :vsqlid;
select * from SYS.SYSTABLES; select * from APP.BANK; select * from APP.PEOPLE; select * from APP.REPUTATION; select * from APP.TASK; SELECT PERSON_ID, PERSON_FNAME, PERSON_ADDRESS, PERSON_LNAME FROM APP.PEOPLE WHERE (PERSON_ID = 1) select * from APP.TASK where TASK_STATUS = 'C'; update APP.TASK set TASK_STATUS='C' where TASK_STATUS = 'IP'; delete from APP.TASK where TASK_STATUS = 'C'; select * from APP.TASK where TASK_DURATION = 15; delete from APP.TASK where TASK_DURATION = 15; select * from APP.TASK where TASK_ID >= 327; update APP.TASK set CLIENT_PAY=0.10 where TASK_ID >= 327; select * from APP.TASK where TASK_ID = 663; update APP.TASK set TASK_STATUS='IP' where TASK_ID = 663; select PERSON_ID, EMAILID, PEOPLE.NJIT_DEPARTMENT from PEOPLE; --reports scripts select * from APP.TASK where TASK_STATUS = 'C' and TASK_TYPE = 'bluetooth' and TASK_ACCEPTED_TIME > '2012-03-03 00:00:00'; select * from APP.TASK where TASK_STATUS = 'C' and TASK_TYPE = 'campusSensing' and TASK_ACCEPTED_TIME > '2012-03-03 00:00:00'; select * from APP.TASK where TASK_STATUS = 'C' and TASK_TYPE = 'photo' and TASK_ACCEPTED_TIME > '2012-03-05 00:00:00'; select * from APP.TASK where TASK_STATUS = 'E' and TASK_TYPE = 'bluetooth' and TASK_ACCEPTED_TIME > '2012-03-04 00:00:00'; select * from APP.TASK where TASK_STATUS = 'E' and TASK_TYPE = 'campusSensing' and TASK_ACCEPTED_TIME > '2012-03-04 00:00:00'; select * from APP.TASK where TASK_STATUS = 'E' and TASK_TYPE = 'photo' and TASK_ACCEPTED_TIME > '2012-03-04 00:00:00'; select * from APP.TASK where TASK_STATUS = 'IP' and TASK_TYPE = 'bluetooth' and TASK_ACCEPTED_TIME > '2012-03-04 00:00:00'; select * from APP.TASK where TASK_STATUS = 'IP' and TASK_TYPE = 'campusSensing' and TASK_ACCEPTED_TIME > '2012-03-04 00:00:00'; select * from APP.TASK where TASK_STATUS = 'IP' and TASK_TYPE = 'photo' and TASK_ACCEPTED_TIME > '2012-03-04 01:00:00'; --active participants select sum(CLIENT_PAY) as Earnings, PROVIDER_PERSON_ID from APP.TASK where TASK_STATUS = 'C' and TASK_ACCEPTED_TIME > '2011-02-27 01:00:00' group by PROVIDER_PERSON_ID order by Earnings; select CLIENT_PAY, TASK_TYPE from APP.TASK where TASK_STATUS = 'C' and TASK_ACCEPTED_TIME > '2011-02-27 01:00:00' and PROVIDER_PERSON_ID = 1353 ; select TASK_ID, PROVIDER_PERSON_ID from APP.TASK where TASK_STATUS = 'C' and TASK_TYPE <> 'photo' and TASK_ACCEPTED_TIME > '2011-02-27 01:00:00' group by PROVIDER_PERSON_ID, TASK_ID order by PROVIDER_PERSON_ID, TASK_ID; --in active participants select sum(CLIENT_PAY) as Loss, PROVIDER_PERSON_ID from APP.TASK where TASK_STATUS = 'E' and TASK_ACCEPTED_TIME > '2012-02-27 01:00:00' group by PROVIDER_PERSON_ID order by Loss; select sum(CLIENT_PAY) from APP.TASK where TASK_ACCEPTED_TIME > '2012-02-27 01:00:00' and PROVIDER_PERSON_ID = 933; --Daily accepted tasks select count(*), TASK_TYPE as accepted from APP.TASK where TASK_STATUS = 'C' and TASK_ACCEPTED_TIME between '2012-02-27 01:00:00' and '2012-02-28 01:00:00' group by TASK_TYPE; select count(*), TASK_CREATED_TIME as accepted from APP.TASK where TASK_STATUS = 'C' and TASK_CREATED_TIME > '2012-02-27 01:00:00' group by TASK_CREATED_TIME; --campus tasks select * from APP.TASK where TASK_STATUS = 'C' and TASK_TYPE = 'campusSensing' and TASK_ACCEPTED_TIME > '2012-02-27 00:00:00'; select * from APP.TASK where TASK_STATUS = 'IP' and TASK_ACCEPTED_TIME > '2012-04-05 01:00:00'; update APP.TASK set TASK_STATUS='E' where TASK_STATUS = 'IP' and TASK_ACCEPTED_TIME > '2012-04-05 01:00:00'; select * from APP.PEOPLE where PERSON_ID = 1251 update APP.PEOPLE set EMAILID = 'ch78@njit.edu' where PERSON_ID = 1251 select * from APP.TASK where LONG_TERM_IND = '1' and TASK_TYPE = 'campusSensing' and TASK_CREATED_TIME > '2012-02-27 01:00:00' and TASK_STATUS = 'C'; select * from APP.TASK where TASK_NAME = 'Task Salsa Night 322159'; update APP.TASK set TASK_NAME = '$5 Task Salsa Night 322158' where TASK_NAME = 'Task Salsa Night 322158'; update APP.TASK set TASK_NAME = '$5 Task Salsa Night 322157' where TASK_NAME = 'Task Salsa Night 322157'; update APP.TASK set TASK_NAME = '$5 Task Salsa Night 322156' where TASK_NAME = 'Task Salsa Night 322156'; update APP.TASK set TASK_NAME = '$5 Task Salsa Night 322155' where TASK_NAME = 'Task Salsa Night 322155'; update APP.TASK set TASK_NAME = '$5 Task Salsa Night 322154' where TASK_NAME = 'Task Salsa Night 322154'; update APP.TASK set TASK_STATUS='C' where TASK_ID in (15365, 15355, 15325, 15310, 15295, 15280, 15115, 15100, 14940, 14915, 14855); 14926 alter table APP.TASK alter TASK_DESC SET DATA TYPE varchar(500); select * from APP.TASK where TASK_ID = 9159 update APP.TASK set PROVIDER_PERSON_ID=0 where TASK_ID in (14752); update APP.TASK set TASK_EXPIRATION_TIME= '2012-04-25 10:00:00' where TASK_ID in (15701, 15700, 15698, 15658, 15648); select * from APP.TASK where TASK_STATUS = 'P' and TASK_TYPE = 'bluetooth' and TASK_ID > 9396 update APP.TASK set TASK_TYPE = 'appUsage' where TASK_STATUS = 'P' and TASK_TYPE = 'bluetooth' and TASK_ID > 9396 delete from APP.TASK where TASK_STATUS = 'P' and TASK_TYPE = 'photo' and TASK_ID > 12316 select * from APP.TASK where TASK_STATUS = 'IP' and TASK_TYPE = 'bluetooth' and TASK_NAME like '$1%' update APP.TASK set TASK_DESC = 'This is an automated sensing task that collects Bluetooth sensor readings and will earn $1.00 daily.' where TASK_STATUS = 'IP' and TASK_TYPE = 'bluetooth' and TASK_NAME like '$1%' update APP.TASK set TASK_STATUS='C' where TASK_STATUS = 'V'; select * from APP.TASK where TASK_STATUS in ('IP','P','V') and TASK_TYPE = 'photo' and TASK_CREATED_TIME > '2012-04-13 01:00:00' and TASK_NAME like '%Game Room%' update APP.TASK set TASK_DESC = 'This is an automated sensing task that will earn $2.00 daily. This task is part of a 5-Day task which will end on 04/13/2012.' where TASK_ID in (12740, 12741, 12742); where TASK_STATUS in ('IP','P') and TASK_TYPE = 'campusSensing' and TASK_CREATED_TIME > '2012-04-09 01:00:00'; select * from APP.TASK where TASK_STATUS in ('IP','P','V') and TASK_TYPE = 'photo' and TASK_CREATED_TIME > '2012-04-13 01:00:00' and TASK_NAME like 'Task Flowers%' update APP.TASK set TASK_NAME = 'Task Flowers 413029' where TASK_STATUS in ('IP','P','V') and TASK_TYPE = 'photo' and TASK_CREATED_TIME > '2012-04-13 01:00:00' and TASK_NAME = 'Task Game Room 413029'; update APP.TASK set TASK_NAME = 'Task Flowers 413028' where TASK_STATUS in ('IP','P','V') and TASK_TYPE = 'photo' and TASK_CREATED_TIME > '2012-04-13 01:00:00' and TASK_NAME = 'Task Game Room 413028'; update APP.TASK set TASK_NAME = 'Task Flowers 413027' where TASK_STATUS in ('IP','P','V') and TASK_TYPE = 'photo' and TASK_CREATED_TIME > '2012-04-13 01:00:00' and TASK_NAME = 'Task Game Room 413027'; update APP.TASK set TASK_NAME = 'Task Flowers 413026' where TASK_STATUS in ('IP','P','V') and TASK_TYPE = 'photo' and TASK_CREATED_TIME > '2012-04-13 01:00:00' and TASK_NAME = 'Task Game Room 413026'; update APP.TASK set TASK_NAME = 'Task Flowers 413025' where TASK_STATUS in ('IP','P','V') and TASK_TYPE = 'photo' and TASK_CREATED_TIME > '2012-04-13 01:00:00' and TASK_NAME = 'Task Game Room 413025'; update APP.TASK set TASK_NAME = 'Task Flowers 413024' where TASK_STATUS in ('IP','P','V') and TASK_TYPE = 'photo' and TASK_CREATED_TIME > '2012-04-13 01:00:00' and TASK_NAME = 'Task Game Room 413024'; update APP.TASK set TASK_NAME = 'Task Flowers 413023' where TASK_STATUS in ('IP','P','V') and TASK_TYPE = 'photo' and TASK_CREATED_TIME > '2012-04-13 01:00:00' and TASK_NAME = 'Task Game Room 413023'; update APP.TASK set TASK_NAME = 'Task Flowers 413022' where TASK_STATUS in ('IP','P','V') and TASK_TYPE = 'photo' and TASK_CREATED_TIME > '2012-04-13 01:00:00' and TASK_NAME = 'Task Game Room 413022'; update APP.TASK set TASK_NAME = 'Task Flowers 413021' where TASK_STATUS in ('IP','P','V') and TASK_TYPE = 'photo' and TASK_CREATED_TIME > '2012-04-13 01:00:00' and TASK_NAME = 'Task Game Room 413021'; update APP.TASK set TASK_NAME = 'Task Flowers 413020' where TASK_STATUS in ('IP','P','V') and TASK_TYPE = 'photo' and TASK_CREATED_TIME > '2012-04-13 01:00:00' and TASK_NAME = 'Task Game Room 413020'; update APP.TASK set TASK_NAME = 'Task Flowers 413019' where TASK_STATUS in ('IP','P','V') and TASK_TYPE = 'photo' and TASK_CREATED_TIME > '2012-04-13 01:00:00' and TASK_NAME = 'Task Game Room 413019'; update APP.TASK set TASK_NAME = 'Task Flowers 413018' where TASK_STATUS in ('IP','P','V') and TASK_TYPE = 'photo' and TASK_CREATED_TIME > '2012-04-13 01:00:00' and TASK_NAME = 'Task Game Room 413018';
'Line Of Service Offering Instance Status Code' / 'Line Of Service Offering Instance Status Name' / 'Line Of Service Offering Instance Status Description' ---------------------------------------------------------------------------------------------------------------------------------------------------------- 'ACTIVE' , 'Offering is active' 'PENDING' , 'Assignment is in pending' 'FUTURE PENDING' , 'Assigned with future date, pending for valid date' 'DEACTIVE' , 'Offering is deactivated' 'DEACTIVE/SUSPEND' , 'Offering suspended or deactivated based on contract status' 'CANCELLED' , 'Ondemand Offering(session pass) cancelled' 'EXPIRED' , 'Ondemand Offering(session pass) expired' 'DEPLETED' , 'Ondemand Offering(session pass) depleted'
BEGIN TRANSACTION; drop function match_category_and_parent; drop function match_category_and_podcast; drop function subscribed_podcasts_for_user; drop function count_subscriptions_for_podcast; drop view NumSubscribersPerPodcast; drop table PodcastCategories; drop table Categories; drop table EpisodeRatings; drop table Listens; drop table Episodes; drop table PodcastRatings; drop table Subscriptions; drop table RejectedRecommendations; drop table Podcasts; drop table SearchQueries; drop table Users; select 'Now type "COMMIT" to confirm deletion or "ROLLBACK" to undo';
PRAGMA foreign_keys=OFF; BEGIN TRANSACTION; CREATE TABLE Keskustelupalsta ( PalstaId integer PRIMARY KEY, Keskustelupalstan_Nimi varchar(100) NOT NULL ); INSERT INTO "Keskustelupalsta" VALUES(1,'Fitter'); CREATE TABLE Keskustelualue ( KeskustelualueId integer PRIMARY KEY, Otsikko varchar(100) NOT NULL, Palsta integer NOT NULL, FOREIGN KEY (Palsta) REFERENCES Keskustelupalsta(PalstaId) ); INSERT INTO "Keskustelualue" VALUES(1,'Lemmikit',1); INSERT INTO "Keskustelualue" VALUES(2,'Lautapelit',1); INSERT INTO "Keskustelualue" VALUES(3,'Matematiikka',1); INSERT INTO "Keskustelualue" VALUES(4,'Tietokone',1); CREATE TABLE Keskustelu ( KeskusteluId integer PRIMARY KEY, Otsikko varchar(1000) NOT NULL, Keskustelualue integer NOT NULL, FOREIGN KEY (Keskustelualue) REFERENCES Keskustelualue(KeskustelualueId) ); INSERT INTO "Keskustelu" VALUES(1,'Koirat on kivoja!! XD',1); INSERT INTO "Keskustelu" VALUES(2,'Lähteekö marsuiltanne karvat?',1); INSERT INTO "Keskustelu" VALUES(3,'Arvosteluja pelille Coup',2); INSERT INTO "Keskustelu" VALUES(4,'Miten vaihdan käyttöjärjestelmän?',4); CREATE TABLE Viesti ( Id integer PRIMARY KEY, Keskustelu integer NOT NULL, Nimimerkki varchar(20) NOT NULL, Saapumishetki timestamp NOT NULL, Viestisisältö varchar(100000) NOT NULL DEFAULT CURRENT_TIMESTAMP, FOREIGN KEY (Keskustelu) REFERENCES Keskustelu(KeskusteluId) ); INSERT INTO "Viesti" VALUES(1,2,'Marsuloverrr',1455879300,'En ole huomannut moista. Viekää marsunne lääkäriin!!'); INSERT INTO "Viesti" VALUES(2,2,'Marsudoctor',1455879320,'Joopajoo..'); INSERT INTO "Viesti" VALUES(3,2,'Hibbe',1455879340,'Kyllä meijänki marsut välillä luo nahkansa.'); INSERT INTO "Viesti" VALUES(4,1,'Hibbe',1455879200,'Ei terve.'); COMMIT;
CREATE DATABASE users; CREATE TABLE `usuarios` ( `idusuario` INT(3) NOT NULL AUTO_INCREMENT, `usuario` VARCHAR(20) NOT NULL, `password` VARCHAR(10) NOT NULL, PRIMARY KEY (`idusuario`) ); INSERT INTO usuarios (idusuario, usuario, password) VALUES (1, "admin", "admin"); INSERT INTO usuarios (idusuario, usuario, password) VALUES (2, "user", "user"); CREATE TABLE `clientes` ( `nif` INT(11) NOT NULL, `nombre_cliente` VARCHAR(20) NOT NULL, `apellido` VARCHAR(10) NOT NULL, PRIMARY KEY (`nif`) ); INSERT INTO clientes (nif, nombre_cliente, apellido) VALUES (0985858, "Juan", "Perez"); INSERT INTO clientes (nif, nombre_cliente, apellido) VALUES (0088883, "Pepe", "Ortega"); INSERT INTO clientes (nif, nombre_cliente, apellido) VALUES (0555555, "Raul", "Jiménez"); INSERT INTO clientes (nif, nombre_cliente, apellido) VALUES (0123456, "Jose", "Carrasco"); CREATE TABLE `bicis` ( `id_bici` INT(3) NOT NULL AUTO_INCREMENT, `marca` VARCHAR(20) NOT NULL, `color` VARCHAR(10) NOT NULL, fk_cliente INT(11), PRIMARY KEY (`id_bici`), foreign key (fk_cliente) references clientes(nif) ); INSERT INTO bicis (id_bici, marca, color) VALUES (1, "rockrider", "naranja"); INSERT INTO bicis (id_bici, marca, color) VALUES (2, "lapierre", "negro"); INSERT INTO bicis (id_bici, marca, color) VALUES (3, "trek", "azul"); INSERT INTO bicis (id_bici, marca, color) VALUES (4, "bh", "rojo"); INSERT INTO bicis (id_bici, marca, color) VALUES (5, "ktm", "blanco"); INSERT INTO bicis (id_bici, marca, color) VALUES (6, "specialized", "amarillo"); INSERT INTO bicis (id_bici, marca, color) VALUES (7, "shimano", "verde"); INSERT INTO bicis (id_bici, marca, color) VALUES (8, "merida", "rosa"); INSERT INTO bicis (id_bici, marca, color) VALUES (9, "orbea", "morado"); INSERT INTO bicis (id_bici, marca, color) VALUES (10, "giant", "gris"); CREATE TABLE `piezas` ( `nombre_pieza` varchar(15) NOT NULL, `precio` INT(5) NOT NULL, `cantidad` INT(3) NOT NULL, fk_bici INT(2), PRIMARY KEY (`nombre_pieza`), foreign key (fk_bici) references bicis(id_bici) ); INSERT INTO piezas (nombre_pieza, precio, cantidad) VALUES ("cuadro", 250, 30); INSERT INTO piezas (nombre_pieza, precio, cantidad) VALUES ("manillar", 40, 30); INSERT INTO piezas (nombre_pieza, precio, cantidad) VALUES ("sillin", 30, 20); INSERT INTO piezas (nombre_pieza, precio, cantidad) VALUES ("cambios", 50, 10); INSERT INTO piezas (nombre_pieza, precio, cantidad) VALUES ("cadena", 60, 15); INSERT INTO piezas (nombre_pieza, precio, cantidad) VALUES ("suspensión", 100, 5); INSERT INTO piezas (nombre_pieza, precio, cantidad) VALUES ("frenos", 55, 25); INSERT INTO piezas (nombre_pieza, precio, cantidad) VALUES ("rueda", 35, 12); INSERT INTO piezas (nombre_pieza, precio, cantidad) VALUES ("cubierta", 20, 60);
-- phpMyAdmin SQL Dump -- version 5.0.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Mar 04, 2021 at 12:02 AM -- Server version: 10.4.14-MariaDB -- PHP Version: 7.4.10 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!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 utf8mb4 */; -- -- Database: `examination_app` -- -- -------------------------------------------------------- -- -- Table structure for table `institutions` -- CREATE TABLE IF NOT EXISTS `institutions` ( `institudeId` int(3) NOT NULL AUTO_INCREMENT, `institutionName` varchar(100) NOT NULL, `institutionLocation` varchar(100) NOT NULL, `dateCreated` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`institudeId`) ) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `institutions` -- INSERT INTO `institutions` (`institudeId`, `institutionName`, `institutionLocation`, `dateCreated`) VALUES (1, 'Auburn University at Montgomery', 'Alabama, USA', '2021-03-01 05:00:00'), (4, 'Birmingham Southern College', 'Alabama, USA', '2021-03-01 05:00:00'), (5, 'Jacksonville State University', 'Alabama, USA', '2021-03-01 20:49:57'), (6, 'Oakwood University', 'Alabama, USA', '2021-03-01 20:49:57'), (7, 'Instituto Tecnológico de Buenos Aires', 'Argentina', '2021-03-01 20:50:57'), (8, 'Universidad Católica de Salta *', 'Argentina', '2021-03-01 20:50:57'), (9, 'Brock University', 'Canada', '2021-03-01 20:51:55'), (10, 'Burman University', 'Canada', '2021-03-01 20:51:55'), (11, 'Canadian Mennonite University', 'Canada', '2021-03-01 20:52:33'), (12, 'Cambrian College', 'Canada', '2021-03-01 20:52:33'), (13, 'Centennial College', 'Canada', '2021-03-01 20:53:20'), (14, 'City University of Seattle, Canada', 'Canada', '2021-03-01 20:53:20'), (15, 'University of Alberta', 'Canada', '2021-03-01 20:54:23'), (16, 'University of British Columbia, Okanagan campus - Postgraduate', 'Canada', '2021-03-01 20:54:23'), (17, 'University of Calgary', 'Canada', '2021-03-01 20:54:56'), (18, 'University of Guelph', 'Canada', '2021-03-01 20:54:56'), (19, 'University of Regina - Graduate', 'Canada', '2021-03-01 20:55:29'), (20, 'University of Saskatchewan - Graduate', 'Canada', '2021-03-01 20:55:29'), (21, 'Vancouver Island University', 'Canada', '2021-03-01 20:55:58'), (22, 'University of Windsor', 'Canada', '2021-03-01 20:55:58'), (23, 'Yorkville University', 'Canada', '2021-03-01 20:56:40'), (24, 'York University Graduate Programs', 'Canada', '2021-03-01 20:56:40'); -- -------------------------------------------------------- -- -- Table structure for table `result` -- CREATE TABLE IF NOT EXISTS `result` ( `resultId` int(3) NOT NULL AUTO_INCREMENT, `grade` float NOT NULL, `userId` int(3) NOT NULL, `isPractice` tinyint(1) NOT NULL DEFAULT 1, `createdDate` timestamp NOT NULL DEFAULT current_timestamp(), PRIMARY KEY (`resultId`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- Table structure for table `useranswers` -- CREATE TABLE IF NOT EXISTS `useranswers` ( `answerId` int(3) NOT NULL AUTO_INCREMENT, `userId` int(3) NOT NULL, `userAnswer` varchar(100) NOT NULL, `created` date NOT NULL, PRIMARY KEY (`answerId`), KEY `userId` (`userId`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE IF NOT EXISTS `users` ( `userId` int(3) NOT NULL AUTO_INCREMENT, `fullName` varchar(20) NOT NULL, `password` varchar(20) NOT NULL, `address` varchar(100) DEFAULT NULL, `dob` date DEFAULT NULL, `email` varchar(20) NOT NULL, `image` text NOT NULL, `userCreated` date NOT NULL, `userModified` date DEFAULT NULL, `isPurchased` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`userId`), UNIQUE KEY `email` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `users` -- INSERT INTO `users` (`userId`, `fullName`, `password`, `address`, `dob`, `email`, `image`, `userCreated`, `userModified`, `isPurchased`) VALUES (1, 'admin', 'admin', 'abcd', '1997-12-23', 'admin@gmail.com', '', '2021-02-22', NULL, 1), (2, 'user', 'user', 'dcba', '1997-12-23', 'user@gmail.com', '', '2021-02-22', NULL, 0), (5, 'Test User', 'test', 'AV Van Horne', '1995-01-12', 'test@gmail.com', 'null', '2021-03-02', NULL, 0); -- -- Constraints for dumped tables -- -- -- Constraints for table `useranswers` -- ALTER TABLE `useranswers` ADD CONSTRAINT `userId` FOREIGN KEY (`userId`) REFERENCES `users` (`userId`); 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 */;
SELECT e.*, CONCAT(m.FirstName, ' ', m.MiddleName, ' ', m.LastName) as ManagerName, a.AddressText,a.TownID FROM Employees as e INNER JOIN Employees as m ON e.ManagerID = m.EmployeeID INNER JOIN Addresses as a ON e.AddressID = a.AddressID
create table users ( id bigserial not null, username text not null, firstname text not null, lastname text not null, email text not null, role text not null, access_token text null, created_at timestamptz DEFAULT now(), updated_at timestamptz DEFAULT now(), constraint users_pkey primary key (id) ) with (OIDS = FALSE); create index IF NOT EXISTS users_id on users(id); create index IF NOT EXISTS users_email_index on users(email); create index IF NOT EXISTS users_username_index on users(username); insert into users ( username, firstname, lastname, email, role ) values ( 'kemalelmizan', 'Kemal', 'Elmizan', 'kemalelmizan@gmail.com', 'admin' ), ( 'seller01', 'Seller', '01', 'seller01@gmail.com', 'seller' ), ( 'buyer01', 'Buyer', '01', 'buyer01@gmail.com', 'buyer' );
-- MySQL dump 10.13 Distrib 5.7.17, for Win64 (x86_64) -- -- Host: 127.0.0.1 Database: reg_data -- ------------------------------------------------------ -- Server version 5.7.21-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `building` -- DROP TABLE IF EXISTS `building`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `building` ( `BABname` varchar(4) COLLATE utf8_unicode_ci NOT NULL, `BTname` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL, `BEname` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL, `FID` int(2) NOT NULL, PRIMARY KEY (`BABname`), KEY `faculty_fk_idx` (`FID`), CONSTRAINT `faculty_fk` FOREIGN KEY (`FID`) REFERENCES `faculty` (`FID`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `building` -- LOCK TABLES `building` WRITE; /*!40000 ALTER TABLE `building` DISABLE KEYS */; /*!40000 ALTER TABLE `building` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `course` -- DROP TABLE IF EXISTS `course`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `course` ( `CID` int(7) NOT NULL, `credit` int(1) DEFAULT NULL, `CTname` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL, `CEname` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL, `CABname` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`CID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `course` -- LOCK TABLES `course` WRITE; /*!40000 ALTER TABLE `course` DISABLE KEYS */; /*!40000 ALTER TABLE `course` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `curriculum` -- DROP TABLE IF EXISTS `curriculum`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `curriculum` ( `FID` int(2) NOT NULL, `deptTname` varchar(20) COLLATE utf8_unicode_ci NOT NULL, `cyear` year(4) NOT NULL, PRIMARY KEY (`FID`,`deptTname`), KEY `dep_fk_idx` (`deptTname`), CONSTRAINT `fac_dep_fk` FOREIGN KEY (`FID`, `deptTname`) REFERENCES `department` (`FID`, `depTname`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `curriculum` -- LOCK TABLES `curriculum` WRITE; /*!40000 ALTER TABLE `curriculum` DISABLE KEYS */; /*!40000 ALTER TABLE `curriculum` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `curriculumcourse` -- DROP TABLE IF EXISTS `curriculumcourse`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `curriculumcourse` ( `FID` int(2) NOT NULL, `depTname` varchar(20) COLLATE utf8_unicode_ci NOT NULL, `CID` int(7) NOT NULL, PRIMARY KEY (`FID`,`depTname`,`CID`), KEY `course_fk_idx` (`CID`), CONSTRAINT `course_fk` FOREIGN KEY (`CID`) REFERENCES `course` (`CID`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `cur_fk` FOREIGN KEY (`FID`, `depTname`) REFERENCES `curriculum` (`FID`, `deptTname`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `curriculumcourse` -- LOCK TABLES `curriculumcourse` WRITE; /*!40000 ALTER TABLE `curriculumcourse` DISABLE KEYS */; /*!40000 ALTER TABLE `curriculumcourse` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `department` -- DROP TABLE IF EXISTS `department`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `department` ( `FID` int(2) NOT NULL, `depTname` varchar(20) COLLATE utf8_unicode_ci NOT NULL, `depEname` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`FID`,`depTname`), CONSTRAINT `f_fk` FOREIGN KEY (`FID`) REFERENCES `faculty` (`FID`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `department` -- LOCK TABLES `department` WRITE; /*!40000 ALTER TABLE `department` DISABLE KEYS */; /*!40000 ALTER TABLE `department` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `document` -- DROP TABLE IF EXISTS `document`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `document` ( `DID` int(10) NOT NULL, `type` varchar(45) COLLATE utf8_unicode_ci DEFAULT NULL, `CRXX` int(2) DEFAULT NULL, `docstatus` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `price` int(3) DEFAULT NULL, PRIMARY KEY (`DID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `document` -- LOCK TABLES `document` WRITE; /*!40000 ALTER TABLE `document` DISABLE KEYS */; /*!40000 ALTER TABLE `document` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `education` -- DROP TABLE IF EXISTS `education`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `education` ( `person_ssn` int(13) NOT NULL, `degree` varchar(45) COLLATE utf8_unicode_ci NOT NULL, `field` varchar(45) COLLATE utf8_unicode_ci NOT NULL, `college` varchar(45) COLLATE utf8_unicode_ci NOT NULL, `gradyear` year(4) DEFAULT NULL, PRIMARY KEY (`person_ssn`,`college`,`field`,`degree`), CONSTRAINT `person_fk` FOREIGN KEY (`person_ssn`) REFERENCES `person` (`SSN`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `education` -- LOCK TABLES `education` WRITE; /*!40000 ALTER TABLE `education` DISABLE KEYS */; /*!40000 ALTER TABLE `education` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `exam` -- DROP TABLE IF EXISTS `exam`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `exam` ( `BABname` varchar(4) COLLATE utf8_unicode_ci NOT NULL, `room#` varchar(4) COLLATE utf8_unicode_ci NOT NULL, `CID` int(7) NOT NULL, `academicyear` year(4) NOT NULL, `term` varchar(10) COLLATE utf8_unicode_ci NOT NULL, `examday` char(3) COLLATE utf8_unicode_ci NOT NULL, `starttime` time(4) DEFAULT NULL, `endtime` time(4) DEFAULT NULL, `type` varchar(3) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`BABname`,`room#`,`CID`,`academicyear`,`term`,`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `exam` -- LOCK TABLES `exam` WRITE; /*!40000 ALTER TABLE `exam` DISABLE KEYS */; /*!40000 ALTER TABLE `exam` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `faculty` -- DROP TABLE IF EXISTS `faculty`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `faculty` ( `FID` int(2) NOT NULL, `FTname` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, `FEname` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`FID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `faculty` -- LOCK TABLES `faculty` WRITE; /*!40000 ALTER TABLE `faculty` DISABLE KEYS */; /*!40000 ALTER TABLE `faculty` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `institution` -- DROP TABLE IF EXISTS `institution`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `institution` ( `IEname` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `ITname` varchar(50) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`ITname`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `institution` -- LOCK TABLES `institution` WRITE; /*!40000 ALTER TABLE `institution` DISABLE KEYS */; /*!40000 ALTER TABLE `institution` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `institutionroom` -- DROP TABLE IF EXISTS `institutionroom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `institutionroom` ( `room#` varchar(4) COLLATE utf8_unicode_ci NOT NULL, `BABname` varchar(4) COLLATE utf8_unicode_ci NOT NULL, `ITname` varchar(50) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`room#`,`BABname`,`ITname`), KEY `inroom_fk2` (`ITname`), CONSTRAINT `inroom_fk1` FOREIGN KEY (`room#`, `BABname`) REFERENCES `room` (`room#`, `BABname`), CONSTRAINT `inroom_fk2` FOREIGN KEY (`ITname`) REFERENCES `institution` (`ITname`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `institutionroom` -- LOCK TABLES `institutionroom` WRITE; /*!40000 ALTER TABLE `institutionroom` DISABLE KEYS */; /*!40000 ALTER TABLE `institutionroom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `manage` -- DROP TABLE IF EXISTS `manage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `manage` ( `DID` int(10) NOT NULL, `officer_ssn` int(13) NOT NULL, PRIMARY KEY (`DID`,`officer_ssn`), KEY `manage_fk2_idx` (`officer_ssn`), CONSTRAINT `manage_fk1` FOREIGN KEY (`DID`) REFERENCES `document` (`DID`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `manage_fk2` FOREIGN KEY (`officer_ssn`) REFERENCES `personel` (`SSN`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `manage` -- LOCK TABLES `manage` WRITE; /*!40000 ALTER TABLE `manage` DISABLE KEYS */; /*!40000 ALTER TABLE `manage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `officer` -- DROP TABLE IF EXISTS `officer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `officer` ( `SSN` int(13) NOT NULL, `Institution_IEname` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`SSN`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `officer` -- LOCK TABLES `officer` WRITE; /*!40000 ALTER TABLE `officer` DISABLE KEYS */; /*!40000 ALTER TABLE `officer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `open_course` -- DROP TABLE IF EXISTS `open_course`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `open_course` ( `CID` int(7) NOT NULL, `academicyear` year(4) NOT NULL, `term` varchar(10) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`CID`,`academicyear`,`term`), CONSTRAINT `open_fk` FOREIGN KEY (`CID`) REFERENCES `course` (`CID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `open_course` -- LOCK TABLES `open_course` WRITE; /*!40000 ALTER TABLE `open_course` DISABLE KEYS */; /*!40000 ALTER TABLE `open_course` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `person` -- DROP TABLE IF EXISTS `person`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `person` ( `SSN` int(13) NOT NULL, `TFname` varchar(40) COLLATE utf8_unicode_ci NOT NULL, `TLname` varchar(40) COLLATE utf8_unicode_ci NOT NULL, `EFname` varchar(40) COLLATE utf8_unicode_ci DEFAULT NULL, `ELname` varchar(40) COLLATE utf8_unicode_ci DEFAULT NULL, `nationality` char(3) COLLATE utf8_unicode_ci DEFAULT NULL, `birthplace` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, `religion` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL, `birthdate` date DEFAULT NULL, `TEL` char(10) COLLATE utf8_unicode_ci DEFAULT NULL, `enrollyear` year(4) DEFAULT NULL, `email` varchar(45) COLLATE utf8_unicode_ci DEFAULT '([^@\\s;#%&+=/]+@[a-zA-Z]+(\\.[a-zA-Z]*){1,3})', `password` varchar(16) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`SSN`), UNIQUE KEY `SSN_UNIQUE` (`SSN`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `person` -- LOCK TABLES `person` WRITE; /*!40000 ALTER TABLE `person` DISABLE KEYS */; /*!40000 ALTER TABLE `person` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `personel` -- DROP TABLE IF EXISTS `personel`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `personel` ( `SSN` int(13) NOT NULL, `officeTel` char(10) COLLATE utf8_unicode_ci DEFAULT NULL, `FID` int(2) NOT NULL, `depTname` varchar(20) COLLATE utf8_unicode_ci NOT NULL, `room#` varchar(4) COLLATE utf8_unicode_ci NOT NULL, `BABname` varchar(4) COLLATE utf8_unicode_ci NOT NULL, `teacherflag` tinyint(4) DEFAULT NULL, `officerflag` tinyint(4) DEFAULT NULL, `institution_ITname` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`SSN`), KEY `per_fk2_idx` (`FID`,`depTname`), KEY `per_fk3_idx` (`room#`,`BABname`), KEY `per_fk4_idx` (`institution_ITname`), CONSTRAINT `per_fk1` FOREIGN KEY (`SSN`) REFERENCES `person` (`SSN`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `per_fk2` FOREIGN KEY (`FID`, `depTname`) REFERENCES `department` (`FID`, `depTname`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `per_fk3` FOREIGN KEY (`room#`, `BABname`) REFERENCES `room` (`room#`, `BABname`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `per_fk4` FOREIGN KEY (`institution_ITname`) REFERENCES `institution` (`ITname`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `personel` -- LOCK TABLES `personel` WRITE; /*!40000 ALTER TABLE `personel` DISABLE KEYS */; /*!40000 ALTER TABLE `personel` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `prerequisite` -- DROP TABLE IF EXISTS `prerequisite`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `prerequisite` ( `CID` int(7) NOT NULL, `pre_CID` int(7) NOT NULL, PRIMARY KEY (`CID`,`pre_CID`), KEY `prereq_fk2_idx` (`pre_CID`), CONSTRAINT `prereq_fk1` FOREIGN KEY (`CID`) REFERENCES `course` (`CID`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `prereq_fk2` FOREIGN KEY (`pre_CID`) REFERENCES `course` (`CID`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `prerequisite` -- LOCK TABLES `prerequisite` WRITE; /*!40000 ALTER TABLE `prerequisite` DISABLE KEYS */; /*!40000 ALTER TABLE `prerequisite` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `register` -- DROP TABLE IF EXISTS `register`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `register` ( `student_ssn` int(13) NOT NULL, `CID` int(7) NOT NULL, `academicyear` year(4) NOT NULL, `term` varchar(10) COLLATE utf8_unicode_ci NOT NULL, `sec#` int(2) NOT NULL, `max#student` int(3) DEFAULT NULL, `reg_status` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `grade` varchar(2) COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`student_ssn`,`CID`,`sec#`,`term`,`academicyear`), KEY `reg_fk2` (`CID`,`academicyear`,`term`,`sec#`), CONSTRAINT `reg_fk1` FOREIGN KEY (`student_ssn`) REFERENCES `student` (`SSN`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `reg_fk2` FOREIGN KEY (`CID`, `academicyear`, `term`, `sec#`) REFERENCES `section` (`CID`, `academicyear`, `term`, `sec#`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `register` -- LOCK TABLES `register` WRITE; /*!40000 ALTER TABLE `register` DISABLE KEYS */; /*!40000 ALTER TABLE `register` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `request` -- DROP TABLE IF EXISTS `request`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `request` ( `Student_SSN` int(13) NOT NULL, `Document_id` int(10) NOT NULL, KEY `req_fk2_idx` (`Document_id`), KEY `req_fk1_idx` (`Student_SSN`), CONSTRAINT `req_fk1` FOREIGN KEY (`Student_SSN`) REFERENCES `student` (`SSN`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `req_fk2` FOREIGN KEY (`Document_id`) REFERENCES `document` (`DID`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `request` -- LOCK TABLES `request` WRITE; /*!40000 ALTER TABLE `request` DISABLE KEYS */; /*!40000 ALTER TABLE `request` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `room` -- DROP TABLE IF EXISTS `room`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `room` ( `room#` varchar(4) COLLATE utf8_unicode_ci NOT NULL, `BABname` varchar(4) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`room#`,`BABname`), KEY `room_fk_idx` (`BABname`), CONSTRAINT `room_fk` FOREIGN KEY (`BABname`) REFERENCES `building` (`BABname`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `room` -- LOCK TABLES `room` WRITE; /*!40000 ALTER TABLE `room` DISABLE KEYS */; /*!40000 ALTER TABLE `room` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `section` -- DROP TABLE IF EXISTS `section`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `section` ( `CID` int(7) NOT NULL, `academicyear` year(4) NOT NULL, `term` varchar(10) COLLATE utf8_unicode_ci NOT NULL, `sec#` int(2) NOT NULL, `max#student` int(3) DEFAULT NULL, PRIMARY KEY (`CID`,`academicyear`,`term`,`sec#`), CONSTRAINT `sec_fk` FOREIGN KEY (`CID`, `academicyear`, `term`) REFERENCES `open_course` (`CID`, `academicyear`, `term`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `section` -- LOCK TABLES `section` WRITE; /*!40000 ALTER TABLE `section` DISABLE KEYS */; /*!40000 ALTER TABLE `section` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sectionroom` -- DROP TABLE IF EXISTS `sectionroom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `sectionroom` ( `BABname` varchar(4) COLLATE utf8_unicode_ci NOT NULL, `room#` varchar(4) COLLATE utf8_unicode_ci NOT NULL, `CID` int(7) NOT NULL, `academicyear` year(4) NOT NULL, `term` varchar(10) COLLATE utf8_unicode_ci NOT NULL, `Sday` char(3) COLLATE utf8_unicode_ci NOT NULL, `starttime` time(4) DEFAULT NULL, `endtime` time(4) DEFAULT NULL, `sec#` int(2) NOT NULL, PRIMARY KEY (`BABname`,`room#`,`CID`,`academicyear`,`term`,`Sday`,`sec#`), KEY `sr_fk2_idx` (`CID`,`academicyear`,`term`,`sec#`), CONSTRAINT `sr_fk1` FOREIGN KEY (`BABname`, `room#`) REFERENCES `room` (`BABname`, `room#`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `sr_fk2` FOREIGN KEY (`CID`, `academicyear`, `term`, `sec#`) REFERENCES `section` (`CID`, `academicyear`, `term`, `sec#`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sectionroom` -- LOCK TABLES `sectionroom` WRITE; /*!40000 ALTER TABLE `sectionroom` DISABLE KEYS */; /*!40000 ALTER TABLE `sectionroom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `student` -- DROP TABLE IF EXISTS `student`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `student` ( `SSN` int(13) NOT NULL, `SID` char(10) COLLATE utf8_unicode_ci DEFAULT NULL, `Status` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `AdviserSSN` int(13) NOT NULL, `FID` int(2) NOT NULL, `depTname` varchar(20) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`SSN`), KEY `stu_fk2` (`AdviserSSN`), KEY `stu_fk3` (`FID`,`depTname`), CONSTRAINT `stu_fk2` FOREIGN KEY (`AdviserSSN`) REFERENCES `personel` (`SSN`), CONSTRAINT `stu_fk3` FOREIGN KEY (`FID`, `depTname`) REFERENCES `department` (`FID`, `depTname`), CONSTRAINT `stu_ssn_fk` FOREIGN KEY (`SSN`) REFERENCES `person` (`SSN`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `student` -- LOCK TABLES `student` WRITE; /*!40000 ALTER TABLE `student` DISABLE KEYS */; /*!40000 ALTER TABLE `student` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `teach` -- DROP TABLE IF EXISTS `teach`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `teach` ( `teacher_ssn` int(13) NOT NULL, `CID` int(7) NOT NULL, `academicyear` year(4) NOT NULL, `term` varchar(10) COLLATE utf8_unicode_ci NOT NULL, `sec#` int(2) NOT NULL, PRIMARY KEY (`teacher_ssn`,`CID`,`term`,`sec#`,`academicyear`), KEY `teach_fk2_idx` (`CID`,`academicyear`,`term`,`sec#`), CONSTRAINT `teach_fk1` FOREIGN KEY (`teacher_ssn`) REFERENCES `personel` (`SSN`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `teach_fk2` FOREIGN KEY (`CID`, `academicyear`, `term`, `sec#`) REFERENCES `section` (`CID`, `academicyear`, `term`, `sec#`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `teach` -- LOCK TABLES `teach` WRITE; /*!40000 ALTER TABLE `teach` DISABLE KEYS */; /*!40000 ALTER TABLE `teach` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!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 */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2018-04-09 10:20:24
SELECT * FROM (SELECT CA.CUSTNUM ENTITY_VAL_ID, CAT.CUSTOMER_ID || CAT.CCSEQ ADDR_SID, 'PARTY' ENTITY_TYPE_SID, 'PHYSICAL' "Address Type SID", --PHYSICAL / EMAIL / PHONE CAT.ADDRESS_TYPE_ID "Address Usage Type SID", CAT.ENTDATE "Effective Start Date", CAT.INVALIDATION_DATE "Effective End Date", -------------------DELTA COLUMNS------------------- CAT.MODDATE FROM CUSTOMER_ADDRESS_TYPE CAT, CUSTOMER_ALL CA WHERE CAT.CUSTOMER_ID = CA.CUSTOMER_ID UNION SELECT CA.CUSTNUM ENTITY_VAL_ID, CAT.CUSTOMER_ID || CAT.CCSEQ ADDR_SID, 'PARTY' ENTITY_TYPE_SID, 'EMAIL' "Address Type SID", --PHYSICAL / EMAIL / PHONE CAT.ADDRESS_TYPE_ID "Address Usage Type SID", CAT.ENTDATE "Effective Start Date", CAT.INVALIDATION_DATE "Effective End Date", -------------------DELTA COLUMNS------------------- CAT.MODDATE FROM CUSTOMER_ADDRESS_TYPE CAT, CUSTOMER_ALL CA WHERE CAT.CUSTOMER_ID = CA.CUSTOMER_ID UNION SELECT CA.CUSTNUM ENTITY_VAL_ID, CAT.CUSTOMER_ID || CAT.CCSEQ ADDR_SID, 'PARTY' ENTITY_TYPE_SID, 'PHONE' "Address Type SID", --PHYSICAL / EMAIL / PHONE CAT.ADDRESS_TYPE_ID "Address Usage Type SID", CAT.ENTDATE "Effective Start Date", CAT.INVALIDATION_DATE "Effective End Date", -------------------DELTA COLUMNS------------------- CAT.MODDATE FROM CUSTOMER_ADDRESS_TYPE CAT, CUSTOMER_ALL CA WHERE CAT.CUSTOMER_ID = CA.CUSTOMER_ID UNION SELECT BA.BILLING_ACCOUNT_CODE ENTITY_VAL_ID, BAA.CUSTOMER_ID || BAA.CCSEQ ADDR_SID, 'ACCOUNT' ENTITY_TYPE_SID, 'PHYSICAL' "Address Type SID", --PHYSICAL BAA.ADDRESS_TYPE_ID "Address Usage Type SID", BAA.CREATED_DATE "Effective Start Date", BAA.INVALIDATION_DATE "Effective End Date", -------------------DELTA COLUMNS------------------- BAA.MOD_DATE FROM BILLACC_ADDRESS_ASSIGNMENT BAA, BILLING_ACCOUNT BA WHERE BAA.BILLING_ACCOUNT_ID = BA.BILLING_ACCOUNT_ID UNION SELECT CO.CO_CODE ENTITY_VAL_ID, CAA.CUSTOMER_ID || CAA.CCSEQ ADDR_SID, 'LOS' ENTITY_TYPE_SID, 'PHYSICAL' "Address Type SID", --PHYSICAL CAA.ADDRESS_TYPE_ID "Address Usage Type SID", CAA.CREATED_DATE "Effective Start Date", CAA.INVALIDATION_DATE "Effective End Date", -------------------DELTA COLUMNS------------------- CAA.MOD_DATE FROM CONTRACT_ADDRESS_ASSIGNMENT CAA, CONTRACT_ALL CO WHERE CAA.CO_ID = CO.CO_ID)
PRAGMA foreign_keys=OFF; BEGIN TRANSACTION; CREATE TABLE Wine (_id INTEGER PRIMARY KEY AUTOINCREMENT, Name TEXT NOT NULL, Year SMALLINT CHECK (Year BETWEEN 0 AND 9999), Description TEXT, Color TEXT NOT NULL CHECK (COLOR IN ("Red", "White")), Rating TINYINT NOT NULL DEFAULT 0 CHECK (Rating BETWEEN 0 AND 5), NumRatings INTEGER NOT NULL DEFAULT 0); INSERT INTO "Wine" VALUES(1,'Kunde Estate Zinfandel 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2,'Baileyana Grand Firepeak Cuvee Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3,'d''Arenberg Footbolt Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(4,'Vina Eguia Reserva 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(5,'Terra Andina Reserva Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(6,'Domaine Terlato & Chapoutier Shiraz-Viognier 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(7,'Castillo de Monseran Old Vine Garnacha 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(8,'Catena Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(9,'Lincourt Lindsay''s Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(10,'Banfi Rosso di Montalcino 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(11,'Bodegas Cepa 21 Hito 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(12,'Glen Carlou Grand Classique 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(13,'Pietradolce Archineri Etna Rosso 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(14,'Kunde Estate Zinfandel 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(15,'Kenwood Jack London Vineyard Zinfandel 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(16,'d''Arenberg High Trellis Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(17,'Fattoria Viticcio Toscana Bere 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(18,'Cavit Alta Luna Phases 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(19,'Clarendon Hills Hickinbotham Grenache 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(20,'Ch. Fortia Tradition Chateauneuf-du-Pape 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(21,'Fratelli Revello Barolo 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(22,'La Vieille Ferme Cotes du Ventoux Rouge 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(23,'Lunta Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(24,'DeLille Doyenne Syrah 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(25,'St. Francis Old Vines Zinfandel 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(26,'Convento de las Claras 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(27,'Perrin et Fils Vinsobres Les Cornuds 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(28,'Prunotto Mompertone Monferrato 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(29,'WALT La Brisa Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(30,'Bodegas Volver Tarima Hill 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(31,'Pirouette 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(32,'Dobbes Family Estate Patricia''s Cuvee Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(33,'Concha y Toro Casillero Del Diablo Carmenere 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(34,'Friggiali Brunello di Montalcino 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(35,'Susana Balbo Signature Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(36,'Shoofly Shiraz 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(37,'Las Rocas Garnacha 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(38,'Duboeuf Morgon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(39,'La Posta Cocina Tinto 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(40,'Dog Point Vineyard Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(41,'Banfi Col di Sasso 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(42,'Dom. Grand Veneur Cotes du Rhone Reserve 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(43,'Bodegas Volver La Mancha Tempranillo 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(44,'Jean-Luc Colombo Les Abeilles Cotes du Rhone Rouge 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(45,'Vega Sindoa Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(46,'Il Molino di Grace Il Volano 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(47,'Spice Route Chakalaka 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(48,'Meerlust Rubicon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(49,'Tendril Wine Cellers Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(50,'Bravium Sonoma Coast Pinot Noir (375ML half-bottle) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(51,'St Hallett Gamekeepers Reserve Shiraz-Grenache 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(52,'Gloria Ferrer Carneros Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(53,'Bodegas Alejandro Fernandez Dehesa La Granja 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(54,'Tommasi Ripasso Valpolicella 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(55,'Mayacamas Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(56,'Calina Reserva Carmenere 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(57,'La Crema Sonoma Coast Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(58,'Stags'' Leap Winery Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(59,'Saint Cosme Cotes du Rhone 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(60,'Falernia Syrah Reserva 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(61,'Luca Syrah Laborde Double Select 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(62,'Clarendon Hills Romas Grenache 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(63,'J Vineyards & Winery Russian River Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(64,'Bethel Heights Estate Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(65,'Argiolas Perdera 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(66,'Bodegas Volver Tarima Hill 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(67,'Scilio Etna Rosso 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(68,'Frog''s Leap Zinfandel 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(69,'La Vieille Ferme Cotes du Ventoux Rouge 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(70,'Gerard Bertrand Fitou 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(71,'Irony Napa Valley Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(72,'Te Kairanga Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(73,'Vinos Sin-Ley Graciano GRA2 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(74,'Gary Farrell Russian River Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(75,'Badenhorst Red Blend 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(76,'Gascon Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(77,'Parducci Sustainable Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(78,'Chateau Mont Redon Chateauneuf-du-Pape 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(79,'Jim Barry The Lodge Hill Shiraz 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(80,'Felipe Rutini Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(81,'Alto Moncayo Veraton 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(82,'Guigal Chateauneuf-du-Pape 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(83,'Alamos Red Blend 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(84,'Maquis Carmenere 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(85,'Abadia Retuerta Seleccion Especial 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(86,'Dry Creek Vineyard Old Vines Zinfandel 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(87,'Lincourt Lindsay''s Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(88,'Haras Albis 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(89,'Matchbook Tinto Rey 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(90,'Fattoria Viticcio Chianti Classico 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(91,'La Posta Pizzella Family Vineyard Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(92,'Shoofly Shiraz 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(93,'Marques de Murrieta Castillo Ygay Gran Riserva 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(94,'Smoking Loon Syrah 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(95,'Sequana Russian River Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(96,'Clarendon Hills Romas Grenache 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(97,'Pennywise Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(98,'Mas Sorrer Montsant 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(99,'Gerard Bertrand Grand Terroir Pic Saint Loup 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(100,'Bodegas Hijos de Juan Gil Juan Gil 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(101,'Villa Sant''Anna Chianti Colli Senesi 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(102,'Edgebaston The Pepper Pot 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(103,'Benanti Nerello Mascalese 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(104,'Decoy Zinfandel 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(105,'Borsao Tres Picos Garnacha 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(106,'Val di Suga Brunello di Montalcino 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(107,'Fuligni Brunello di Montalcino Riserva 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(108,'Lucinda & Millie Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(109,'Owen Roe Sinister Hand 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(110,'Tire Pe La Cote 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(111,'Guigal Chateau D''Ampuis Cote Rotie 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(112,'Gallo Signature Series Santa Lucia Highlands Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(113,'Frescobaldi Nipozzano Chianti Riserva 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(114,'Kilikanoon Killerman''s Run Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(115,'Conti Costanti Brunello di Montalcino 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(116,'Elderton Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(117,'d''Arenberg Stump Jump Red 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(118,'Oxford Landing Shiraz 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(119,'StoneCap Syrah 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(120,'Conde de Valdemar Rioja Inspiracion 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(121,'Val di Suga Brunello di Montalcino 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(122,'Lapostolle Casa Grand Selection Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(123,'Maquis Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(124,'Francois Gaunoux Pommard 1er Cru Les Rugiens 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(125,'Haywood Los Chamizal Zinfandel 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(126,'Tenuta Trerose Vino Nobile di Montepulciano 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(127,'Chateau d''Aussieres Corbieres 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(128,'Tire Pe La Cote 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(129,'Chateau Timberlay Bordeaux Superieur 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(130,'Siduri Pisoni Vineyard Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(131,'Saint Cosme Gigondas 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(132,'Chapoutier Cotes du Rhone Belleruche Rouge 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(133,'Jaboulet Parallele 45 Rouge 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(134,'Don Sancho Londono Cortijo Tinto 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(135,'Ernie Els Signature 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(136,'Brancaia Ilatraia 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(137,'Four Vines The Maverick Zinfandel 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(138,'Charles Smith Boom Boom Syrah 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(139,'Santa Margherita Chianti Classico Riserva (375ML half-bottle) 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(140,'d''Arenberg Stump Jump Red 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(141,'Bosquet des Papes Chateauneuf-du-Pape Cuvee Chante Le Merle 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(142,'Lucinda & Millie Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(143,'Veramonte Merlot Reserva 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(144,'Gloria Ferrer Carneros Pinot Noir (375ML half-bottle) 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(145,'Bodegas Triton Avante Mencia 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(146,'La Follette North Coast Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(147,'Amalie Robert Dijon Clones Pinot Noir 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(148,'Gerard Bertrand Tautavel Grand Terroir 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(149,'Cavit Alta Luna Phases 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(150,'Bosquet des Papes Chateauneuf-du-Pape Tradition 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(151,'Stickybeak Syrah 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(152,'Pelissero Long Now Langhe 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(153,'Elderton Shiraz 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(154,'Frei Brothers Reserve Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(155,'Paul Dolan Vineyards Organic Zinfandel 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(156,'La Posta Cocina Tinto 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(157,'Conde de Valdemar Rioja Inspiracion 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(158,'Badenhorst Secateurs Red Blend 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(159,'Avignonesi Desiderio 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(160,'Dom. Pierre Usseglio et Fils Chateauneuf-du-Pape Mon Aieul 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(161,'Rancho Zabaco Monte Rosso Zinfandel 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(162,'Guigal Hermitage Ex Voto Rouge 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(163,'La Valentina Montepulciano d''Abruzzo Spelt 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(164,'Rancho Zabaco Monte Rosso Zinfandel 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(165,'La Posta Angel Paulucci Vineyard Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(166,'Kistler Cuvee Elizabeth Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(167,'Be Friends Be Friends Pinot Noir Village 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(168,'K Vintners Milbrandt Syrah 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(169,'Martin Ray Russian River Pinot Noir 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(170,'Bodegas Triton EntreSuelos Tempranillo 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(171,'Sogrape Callabriga Douro 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(172,'Terra d''Oro Home Vineyard Zinfandel 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(173,'L''Ecole 41 Walla Walla Valley Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(174,'TAZ Santa Barbara County Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(175,'Perrin et Fils Les Christins Vacqueyras 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(176,'Terra Andina Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(177,'Clarendon Hills Blewitt Springs Old Vine Grenache 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(178,'Bravium Sonoma Coast Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(179,'Damilano Barbera d''Asti 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(180,'Pio Cesare Barbera d''Alba 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(181,'Arnoux et Fils Vacqueyras Cuvee Jean-Marie Arnoux 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(182,'Louis Jadot Pommard 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(183,'Domaine de Nizas Coteaux du Languedoc 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(184,'Frescobaldi Remole Toscana Rosso 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(185,'Bodegas Volver Paso A Paso Tinto 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(186,'Bergstrom de Lancellotti Vineyard Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(187,'Luigi Ferrando Carema Etichetta Bianca 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(188,'HobNob Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(189,'Resalte de Penafiel de Restia Crianza Selected Harvest 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(190,'Bouchard Pere & Fils Pommard Premier Cru 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(191,'La Sirena Syrah Barrett Vineyard 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(192,'Les Jamelles Essentiel Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(193,'Bodegas Avante Tineta Ribera Del Duero 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(194,'Ruffino Santedame Romitorio 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(195,'Torres Sangre de Toro Tempranillo 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(196,'Tikves Vranec Special Selection 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(197,'Spice Route Chakalaka 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(198,'Gerard Bertrand Syrah-Carignan Minervois 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(199,'W.H. Smith Hellenthal Vineyard Pinot Noir 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(200,'Patz & Hall Sonoma Coast Pinot Noir (375ML half-bottle) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(201,'Alain Voge Cornas Vieilles Vignes 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(202,'Tahbilk 1860 Vines Shiraz 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(203,'Telmo Rodriguez LZ 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(204,'Ridge Three Valleys Red 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(205,'Seven Hills Ciel du Cheval Vintage Red 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(206,'Les Jamelles Syrah Vins de Pays D''Oc 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(207,'Bodegas Ostatu Rioja 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(208,'Ridge Three Valleys Red 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(209,'Dom. Grand Veneur Chateauneuf-du-Pape 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(210,'Betz Family Winery La Serenne Syrah 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(211,'Michel Torino Don David Malbec Reserve 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(212,'Chateau Tanunda Grand Barossa Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(213,'Conde de Valdemar Rioja Crianza 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(214,'Jacob''s Creek Reserve Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(215,'Perrin et Fils Les Christins Vacqueyras 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(216,'Can Blau Blau 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(217,'Perrin et Fils Gigondas La Gille 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(218,'DeLille Doyenne Syrah 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(219,'Argiolas Perdera 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(220,'Felipe Rutini Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(221,'d''Arenberg High Trellis Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(222,'Williams Selyem Olivet Lane Chardonnay 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(223,'Goats do Roam Goat-Roti 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(224,'Guigal Chateauneuf-du-Pape (375ML half-bottle) 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(225,'Il Feuduccio Montepulciano D''Abruzzo 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(226,'Telmo Rodriguez LZ 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(227,'St. Innocent Freedom Hill Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(228,'Ch. Lamargue Grand Reserve 2003',0,'','Red',0,0); INSERT INTO "Wine" VALUES(229,'Campo Viejo Gran Reserva 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(230,'Recanati Reserve Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(231,'MontGras Antu Ninquen Syrah 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(232,'MontGras Antu Ninquen Syrah 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(233,'DeLille Doyenne Syrah 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(234,'Louis Latour Pommard Epenots 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(235,'Conde de Valdemar Rioja Crianza 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(236,'Lancaster Estate Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(237,'Il Feuduccio Montepulciano D''Abruzzo 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(238,'Ch. de Segries Lirac Cuvee Reservee 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(239,'Baugier Thunevin Cotes du Roussillon 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(240,'Joan d''Anguera Garnatxa Montsant 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(241,'Riglos Gran Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(242,'Trenza Tinto 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(243,'Bouchard Aine & Fils Fixin "La Mazière" 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(244,'Donnafugata Tancredi 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(245,'Verum Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(246,'Bodegas Aletta Granate Garnacha 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(247,'Vinos Sin-Ley Graciano GRA2 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(248,'Falernia Syrah Reserva 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(249,'Santi Amarone 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(250,'Verum Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(251,'Tahbilk Eric Stevens Purbrick Shiraz 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(252,'Middle Sister Wild One Malbec',0,'','Red',0,0); INSERT INTO "Wine" VALUES(253,'Redheads Studio Mohawk Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(254,'Clos de la Niverdiere Chinon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(255,'Deep Purple Zinfandel 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(256,'Mano a Mano Ribota 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(257,'Perrin et Fils Vinsobres Les Cornuds 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(258,'Dry Creek Vineyard Old Vines Zinfandel 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(259,'Tormaresca Torcicoda Primitivo 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(260,'Borgias Valpolicella 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(261,'Ernie Els Signature 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(262,'Pierre Henri Morel Cotes Du Rhone Villages Signargues 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(263,'Bodegas Triton Avante Mencia 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(264,'Altocedro Ano Cero Tempranillo 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(265,'Luigi Ferrando Carema Etichetta Nera 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(266,'Banfi Rosso di Montalcino 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(267,'Gerard Bertrand Grand Terroir Pic Saint Loup 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(268,'K Vintners Milbrandt Syrah 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(269,'Resalte de Penafiel de Restia Crianza Selected Harvest 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(270,'Aubert UV Vineyard Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(271,'Delas St. Esprit Cotes-du-Rhone Rouge 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(272,'Dom. Grand Veneur Chateauneuf-du-Pape Vieilles Vignes 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(273,'Cloudy Bay Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(274,'Casa E. di Mirafiore Barbera d''Alba Superiore 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(275,'Domaine de la Charmaie Nuits-Saint-Georges Les Saint George 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(276,'Stags'' Leap Winery Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(277,'Resalte de Penafiel de Restia Crianza Selected Harvest 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(278,'Jean-Luc Colombo Les Forots Cotes du Rhone 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(279,'Graham Beck The Game Reserve Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(280,'Haras Estate Carmenere 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(281,'Smoking Loon Syrah 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(282,'Baileyana Grand Firepeak Cuvee Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(283,'Patz & Hall Sonoma Coast Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(284,'Yacochuya Malbec 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(285,'Fess Parker Santa Barbara The Big Easy 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(286,'Louis Latour Pommard Epenots 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(287,'Dom. de Beaurenard Chateauneuf-du-Pape 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(288,'Rancho Zabaco Monte Rosso Zinfandel 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(289,'Stonestreet Legacy Meritage Red 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(290,'Vega Sindoa Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(291,'Catena Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(292,'K Vintners Motor City Kitty Syrah 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(293,'Bodegas Volver La Mancha Tempranillo 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(294,'Brancott Terraces Estate Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(295,'Fisher Vineyards Coach Insignia Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(296,'Alban Estate Syrah Reva 1999',0,'','Red',0,0); INSERT INTO "Wine" VALUES(297,'Francis Ford Coppola Director''s Cut Zinfandel 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(298,'Brancott Terraces Estate Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(299,'Saint Cosme Cotes du Rhone Les Deux Albions 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(300,'Maison Nicolas Perrin Crozes-Hermitage 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(301,'Gordon Brothers Tradition Red 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(302,'Graham Beck The Game Reserve Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(303,'Fess Parker Santa Rita Hills Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(304,'Hewitson Ned and Henrys Shiraz 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(305,'Henry''s Drive Parson''s Flat Cabernet Shiraz 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(306,'Saint Cosme St. Joseph 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(307,'Luberri Seis de Luberri 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(308,'Byron Santa Maria Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(309,'Dom. Grand Veneur Chateauneuf-du-Pape Les Origines 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(310,'Bond Matriarch 2001',0,'','Red',0,0); INSERT INTO "Wine" VALUES(311,'Herencia Altes Garnatxa Negra 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(312,'Recanati Reserve Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(313,'Luigi Ferrando Carema Etichetta Nera 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(314,'Veramonte Sauvignon Blanc (La Gloria) 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(315,'Beaulieu Vineyard Coastal Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(316,'Novellum Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(317,'Pacific Rim Organic Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(318,'Geyser Peak Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(319,'Santa Margherita Pinot Grigio 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(320,'Louis Jadot Macon-Villages 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(321,'Benvolio Pinot Grigio 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(322,'Ferrari-Carano Fume Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(323,'Kim Crawford Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(324,'Michel Gassier Costieres de Nimes Nostre Pais White 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(325,'Lincourt Steel Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(326,'Oyster Bay Marlborough Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(327,'Greywacke Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(328,'Dancing Bull Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(329,'Cakebread Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(330,'St Hallett Eden Valley Riesling 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(331,'Yalumba Y Series Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(332,'Kris Pinot Grigio 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(333,'Cupcake Vineyards Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(334,'Burgans Albarino 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(335,'Shannon Ridge High Elevation Collection Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(336,'Joel Gott Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(337,'Broadbent Vinho Verde',0,'','White',0,0); INSERT INTO "Wine" VALUES(338,'Dashwood Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(339,'Giesen Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(340,'J.J. Vincent Pouilly Fuisse "Marie Antoinette" 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(341,'Cloudy Bay Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(342,'Banfi Le Rime Pinot Grigio 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(343,'Villa Pozzi Pinot Grigio 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(344,'Matua Valley Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(345,'Dog Point Vineyard Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(346,'Pacific Rim Dry Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(347,'Oxford Landing Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(348,'Chateau Ste. Michelle Dry Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(349,'Big House White Blend 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(350,'Firestone Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(351,'Errazuriz Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(352,'Parducci Sustainable White 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(353,'Angeline Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(354,'Bonterra Organically Grown Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(355,'Antinori Santa Cristina Pinot Grigio 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(356,'Pewsey Vale Eden Valley Riesling 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(357,'Dom. des Baumard Savennieres 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(358,'Voss Vineyards Napa Valley Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(359,'Hall Napa Valley Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(360,'Pascal Jolivet Sancerre 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(361,'Silverado Miller Ranch Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(362,'Saint Clair Vicar''s Choice Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(363,'Barrymore Pinot Grigio 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(364,'Lapostolle Casa Grand Selection Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(365,'Bartenura Moscato 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(366,'Bayten Buitenverwachting Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(367,'Domane Wachau Federspiel Terrassen Gruner Veltliner 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(368,'Guy Saget La Petite Perriere Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(369,'Dr. Loosen Blue Slate Estate Kabinett 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(370,'Nobilo Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(371,'Dom. Lafage Vin du Pays Cote d''Est 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(372,'Kilikanoon Mort''s Block Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(373,'Decoy Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(374,'Milbrandt Traditions Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(375,'Mirassou Moscato 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(376,'St. Supery Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(377,'Marques de Caceres Deusa Nai Albarino 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(378,'Antica Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(379,'Leeuwin Estate Art Series Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(380,'Goldwater Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(381,'Tangent Paragon Vineyard Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(382,'Argiolas Costamolino Vermentino 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(383,'Layer Cake Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(384,'Principessa Gavia Gavi 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(385,'Hanna Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(386,'Margerum Sybarite Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(387,'Penfolds Koonunga Hill Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(388,'Raymond R Collection Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(389,'Yealands Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(390,'Yellow Tail Sauvignon Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(391,'Matanzas Creek Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(392,'Montinore Pinot Gris 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(393,'Loimer Kamptal Gruner Veltliner 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(394,'Chateau de Sancerre Sancerre 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(395,'Boutari Santorini 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(396,'Michel Redde Pouilly Fume La Moynerie 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(397,'Pieropan Soave 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(398,'Villa Maria Private Bin Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(399,'Flowers Sonoma Coast Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(400,'Dancing Bull Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(401,'Joseph Drouhin Vaudon Chablis 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(402,'Robert Mondavi Fume Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(403,'Clean Slate Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(404,'Craggy Range Winery Te Muna Road Vineyard Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(405,'Pacific Rim Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(406,'Angove Family Winemakers Nine Vines Moscato 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(407,'Mirassou Pinot Grigio 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(408,'Francis Ford Coppola Bianco Pinot Grigio 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(409,'Wairau River Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(410,'Whitehall Lane Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(411,'Kendall-Jackson Vintner''s Reserve Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(412,'Ernie Els Big Easy White 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(413,'Alamos Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(414,'Dr. Thanisch Bernkasteler Badstube Kabinett 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(415,'Middle Sister Drama Queen Pinot Grigio',0,'','White',0,0); INSERT INTO "Wine" VALUES(416,'Marques de Caceres Rioja Blanco 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(417,'Dom. Weinbach Schlossberg Grand Cru Riesling (375ML half-bottle) 2008',0,'','White',0,0); INSERT INTO "Wine" VALUES(418,'Jacob''s Creek Reserve Riesling 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(419,'Saint Cosme Cotes du Rhone Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(420,'d''Arenberg The Hermit Crab Viognier Marsanne 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(421,'Catena Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(422,'Dom. Laroche Saint Martin Chablis 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(423,'Kunde Magnolia Lane Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(424,'Rolf Binder Eden Valley Highness Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(425,'Aveleda Quinta de Aveleda Vinho Verde 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(426,'Philippe Foreau Vouvray Moelleux "Clos Naudin" 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(427,'Murphy-Goode The Fume 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(428,'Frog''s Leap Napa Valley Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(429,'Snoqualmie Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(430,'Zenato Pinot Grigio 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(431,'Roth Sonoma Coast Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(432,'Treana White 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(433,'Vina San Pedro "1865" Single Vineyard Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(434,'Four Vines Santa Barbara Naked Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(435,'S.A. Prum Blue Riesling 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(436,'S.A. Prum Wehlener Sonnenuhr Kabinett Riesling 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(437,'Babich Marlborough Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(438,'Nautilus Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(439,'Simi Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(440,'Brocard Les Clos Grand Cru Chablis 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(441,'J.J. Prum Graacher Himmelreich Auslese 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(442,'Wither Hills Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(443,'La Cana Albarino 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(444,'Brocard Chablis Sainte Claire 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(445,'Dom. de la Perriere Sancerre 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(446,'Mulderbosch Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(447,'Napa Cellars Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(448,'Chateau St. Jean Fume Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(449,'Markus Huber Hugo Gruner Veltliner 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(450,'Pazo de Barrantes Albarino 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(451,'The Beachhouse White Blend 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(452,'Saint Cosme Cotes du Rhone Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(453,'Dry Creek Vineyard Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(454,'Spy Valley Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(455,'Jules Taylor Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(456,'Abbazia di Novacella Pinot Grigio 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(457,'Jam Jar Moscato 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(458,'Maso Canali Pinot Grigio 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(459,'Dr. Loosen Erdener Treppchen Kabinett 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(460,'Plantagenet Hazard Hill Semillon Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(461,'Muga Blanco 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(462,'La Follette Sangiacomo Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(463,'Brancott Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(464,'Villa Maria Cellar Selection Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(465,'The Crossings Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(466,'Pascal Jolivet Sancerre 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(467,'Two Angels Angel''s Secret Sauvignon Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(468,'Alamos Torrontes 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(469,'Arboleda Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(470,'Joseph Drouhin Chablis Vaudon Premier Cru 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(471,'Groth Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(472,'Bisci Verdicchio di Matelica Vigneto Fogliano 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(473,'De Bortoli DB Chardonnay 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(474,'Margerum Sybarite Sauvignon Blanc 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(475,'Southern Right Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(476,'Lucien Crochet Sancerre Le Chene 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(477,'Uriondo Txakoli Bizkaiko Txakolina 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(478,'Justin Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(479,'Brokenwood Semillon 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(480,'Leese-Fitch Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(481,'Whitehaven Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(482,'Ernie Els Big Easy White 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(483,'Los Vascos Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(484,'J. Lohr Carol''s Vineyard Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(485,'Zocker Paragon Vineyard Riesling 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(486,'Vidal-Fleury Cotes-du-Rhone Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(487,'Brassfield Serenity White Blend 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(488,'Couly-Dutheil Les Chanteaux Chinon 2006',0,'','White',0,0); INSERT INTO "Wine" VALUES(489,'Chehalem INOX Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(490,'Barnard Griffin Fume Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(491,'Gustave Lorentz Pinot Blanc Reserve 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(492,'Chateau de la Selve Saint Regis Viognier 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(493,'Cakebread Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(494,'La Cana Albarino (375ML half-bottle) 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(495,'The Seeker Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(496,'Dom. Laroche Chablis 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(497,'Arboleda Sauvignon Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(498,'Matanzas Creek Sauvignon Blanc (375ML half-bottle) 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(499,'Simi Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(500,'Terranoble Reserva Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(501,'Napa Cellars Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(502,'Masseria Li Veli Askos Verdeca 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(503,'Torbreck Woodcutters White 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(504,'Bodega Goulart Torrontes 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(505,'Grand Antoine Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(506,'Dourthe La Grande Cuvee Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(507,'Failla Sonoma Coast Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(508,'Dom. Cailbourdin Cuvee de Boisfleury 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(509,'Wild Rock Sauvignon Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(510,'Trimbach Reserve Riesling 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(511,'Jordan Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(512,'Chanson Vire Clesse 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(513,'Antinori Santa Cristina Orvieto Classico Campogrande 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(514,'Michel Redde Pouilly Fume La Moynerie 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(515,'Telmo Rodriguez Basa White 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(516,'Tangent Paragon Vineyard Pinot Gris 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(517,'Bouchard Aine & Fils Macon-Villages 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(518,'Barnard Griffin Fume Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(519,'Chateau Ste. Michelle Canoe Ridge Estate Vineyard Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(520,'Patient Cottat Sancerre Anciennes Vignes 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(521,'House Of Mandela The Thembu Collection Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(522,'Errazuriz Max Reserva Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(523,'Cono Sur Reserva Especial Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(524,'Toad Hollow Francine''s Selection Unoaked Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(525,'Be Friends Chardonnay 2005',0,'','White',0,0); INSERT INTO "Wine" VALUES(526,'Wente Louis Mel Sauvignon Blanc 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(527,'Markus Huber Hugo Gruner Veltliner 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(528,'Tiefenbrunner Pinot Bianco 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(529,'Francis Ford Coppola Bianco Pinot Grigio 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(530,'Schmitt Sohne Relax Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(531,'Mulderbosch Chenin Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(532,'Rainstorm Pinot Gris 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(533,'Guenoc Lake County Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(534,'Yellow Tail Sauvignon Blanc',0,'','White',0,0); INSERT INTO "Wine" VALUES(535,'Domaine du Clos Roussely Esprit du Clos Sauvignon Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(536,'Wakefield Promised Land Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(537,'Los Vascos Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(538,'Bartenura Moscato 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(539,'Sanford La Rinconada Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(540,'Les Jamelles Sauvingnon Blanc Vins de Pays D''Oc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(541,'Finca de Arantei Albarino Single Vineyard 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(542,'Bertani Velante Pinot Grigio 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(543,'St. Francis WHITE SPLASH 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(544,'Torres Sangre de Toro White 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(545,'Domaine Mittnacht Freres Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(546,'Antica Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(547,'Cave des Vignerons de Buxy Chablis "Fourchaume" 2005',0,'','White',0,0); INSERT INTO "Wine" VALUES(548,'Hirsch Zobing Riesling 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(549,'Terras Gauda Albarino Abadia de San Campio 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(550,'Chateau Timberlay Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(551,'Girard Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(552,'Hermann J. Wiemer Dry Riesling Reserve 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(553,'Attems Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(554,'Caves de Chablis Chablis 2006',0,'','White',0,0); INSERT INTO "Wine" VALUES(555,'Casarena Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(556,'Torre Rosazza Friulano Colli Orientali Friuli 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(557,'Ronco Del Gnemiz Sauvignon Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(558,'Martino Pedro Ximenez 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(559,'Falesco Vitiano Bianco 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(560,'Vina Nora Albarino 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(561,'Bertani Velante Pinot Grigio 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(562,'Cave des Vignerons de Buxy Cave de Chablis "Les Preuses" 2005',0,'','White',0,0); INSERT INTO "Wine" VALUES(563,'Chanson Chablis 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(564,'Tomero Torrontes 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(565,'Egon Muller Sharzhofberger Kabinett Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(566,'Silverado Miller Ranch Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(567,'Hogue Gewurztraminer 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(568,'Clean Slate Riesling 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(569,'Byron Santa Barbara Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(570,'La Playa Estate Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(571,'Vavasour Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(572,'Dom. des Baumard Savennieres 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(573,'Bott-Geyl Les Elements Riesling 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(574,'Pieropan Soave 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(575,'Torbreck Woodcutters White 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(576,'Tabali Sauvignon Blanc Reserva 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(577,'Villa Sparina Monterotondo 2008',0,'','White',0,0); INSERT INTO "Wine" VALUES(578,'Zind-Humbrecht L170 Gewurztraminer 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(579,'Lincourt Courtney''s Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(580,'J Vineyards & Winery California Pinot Gris 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(581,'Jacob''s Creek Reserve Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(582,'d''Arenberg The Hermit Crab Viognier Marsanne 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(583,'Matteo Correggia Arneis 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(584,'Wine Sisterhood Savvy Chardonnay',0,'','White',0,0); INSERT INTO "Wine" VALUES(585,'Principessa Gavia Gavi 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(586,'J.J. Vincent Pouilly Fuisse "Marie Antoinette" 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(587,'Red Tail Ridge Dry Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(588,'Trimbach Reserve Riesling 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(589,'La Follette North Coast Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(590,'Errazuriz Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(591,'Margerum Sybarite Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(592,'Guenoc Lake County Sauvignon Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(593,'Dom. de la Perriere Sancerre 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(594,'Patient Cottat Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(595,'Caves de Lugny Macon Lugny Les Charmes Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(596,'Artner Gruner Veltliner Steinacker 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(597,'Stag''s Leap Wine Cellars Sauvignon Blanc 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(598,'Conundrum 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(599,'Placido Pinot Grigio 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(600,'Saracco Moscato d''Asti 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(601,'King Estate Signature Collection Pinot Gris 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(602,'White Wedding II Proprietary White Blend',0,'','White',0,0); INSERT INTO "Wine" VALUES(603,'Shea Willamette Valley Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(604,'Mer Soleil Silver Unoaked Chardonnay (Ceramic Bottle) 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(605,'Charles Smith Kung Fu Girl Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(606,'Robert Oatley Mudgee Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(607,'Merryvale Starmont Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(608,'Simonnet-Febvre Chablis 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(609,'La Vieille Ferme Cotes du Luberon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(610,'Livio Felluga Pinot Grigio 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(611,'Hello Kitty Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(612,'Dr. Loosen Dr. L Estate QbA 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(613,'Concannon Conservancy Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(614,'Middle Sister Sweet and Sassy Moscato',0,'','White',0,0); INSERT INTO "Wine" VALUES(615,'Baileyana Grand Firepeak Cuvee Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(616,'Joel Gott Unoaked California Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(617,'Veramonte Chardonnay Reserva 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(618,'Craggy Range Winery Kidnappers Vineyard Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(619,'Luna Pinot Grigio 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(620,'King Estate Acrobat Pinot Gris 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(621,'Guigal Cotes du Rhone Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(622,'Pine Ridge Chenin Blanc - Viognier 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(623,'Paco & Lola Albarino 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(624,'Yalumba Organic Viognier 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(625,'Marimar Estate Don Miguel Vineyard Acero Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(626,'Pierre Sparr Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(627,'Ruffino Pinot Grigio Lumina 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(628,'Pacific Rim Sweet Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(629,'Placido Pinot Grigio 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(630,'Maximin Grunhauser Abtsberg Riesling Spatlese 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(631,'Saintsbury Unfiltered Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(632,'Kendall-Jackson Avant Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(633,'Laurenz V Singing Gruner Veltliner 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(634,'Baileyana Grand Firepeak Cuvee Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(635,'Grgich Hills Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(636,'Quivira Dry Creek Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(637,'Columbia Crest H3 Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(638,'Antinori Santa Cristina Orvieto Classico Campogrande 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(639,'Bodegas Botani Moscatel 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(640,'Boutari Moschofilero 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(641,'Anselmi San Vincenzo 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(642,'Bodega Colome Torrontes 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(643,'Ramey Hyde Vineyard Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(644,'Hess Select Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(645,'Evening Land Summum Seven Springs Vineyard Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(646,'Sauvion Sancerre 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(647,'Spring Seed Wine Co. Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(648,'Starborough Sauvignon Blanc Marlborough 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(649,'Barnard Griffin Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(650,'Montevina Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(651,'Chateau Bonnet Entre-Deux-Mers Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(652,'Chehalem 3 Vineyard Pinot Gris 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(653,'Zocker Paragon Vineyard Gruner Veltliner 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(654,'Yalumba Y Series Viognier 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(655,'Ponzi Pinot Gris 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(656,'Gundlach Bundschu Gewurztraminer 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(657,'Concha y Toro Casillero Del Diablo Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(658,'Lucien Albrecht Reserve Pinot Blanc Balthazar 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(659,'Uvaggio Vermentino 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(660,'Yalumba Eden Valley Viognier 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(661,'Wines That Rock Woodstock Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(662,'Polka Dot Sweet Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(663,'Duckhorn Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(664,'A to Z Pinot Gris 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(665,'Cape Mentelle Sauvignon Blanc Semillon 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(666,'Ken Forrester Petit Chenin 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(667,'Gary Farrell Russian River Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(668,'Stag''s Leap Wine Cellars KARIA Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(669,'Merryvale Starmont Chardonnay (375ML half-bottle) 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(670,'Castle Rock Central Coast Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(671,'Hugel Classic Pinot Gris 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(672,'ONEHOPE California Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(673,'Shoofly Chardonnay 2008',0,'','White',0,0); INSERT INTO "Wine" VALUES(674,'Crios de Susana Balbo Torrontes 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(675,'Vega Sindoa Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(676,'Nobilo Icon Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(677,'Kendall-Jackson Vintner''s Reserve Chardonnay 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(678,'Villa Sparina Gavi di Gavi 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(679,'Valley of the Moon Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(680,'Marc Bredif Vouvray 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(681,'Domaines Baron Rothschild Reserve Speciale Bordeaux Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(682,'Guy Saget Vouvray Marie de Beauregard 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(683,'Neil Ellis Groenekloof Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(684,'Poet''s Leap Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(685,'Vasse Felix Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(686,'Louis Jadot Puligny-Montrachet 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(687,'Ladoucette Pouilly-Fume 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(688,'Terlato Chardonnay 2008',0,'','White',0,0); INSERT INTO "Wine" VALUES(689,'Jermann Pinot Grigio 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(690,'Clos LaChance Monterey County Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(691,'Cloudy Bay Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(692,'Trumpeter Torrontes 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(693,'Apothic White Blend 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(694,'Terra d''Oro Pinot Grigio 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(695,'Pazo de Senorans Albarino 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(696,'Batasiolo Gavi 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(697,'Conundrum (375ML half-bottle) 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(698,'J.J. Prum Wehlener Sonnenuhr Kabinett 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(699,'Cave de Pomerols Picpoul de Pinet 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(700,'Oxford Landing Viognier 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(701,'K Vintners Viognier 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(702,'Migration Russian River Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(703,'Amberhill Secret White Blend 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(704,'Chateau La Nerthe Chateauneuf-du-Pape Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(705,'Bravium Thomson Vineyard Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(706,'Hess Collection Napa Valley Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(707,'Pacific Rim Gewurztraminer 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(708,'MezzaCorona Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(709,'Hyland Estate Gewurztraminer 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(710,'J.J. Prum Graacher Himmelreich Kabinett 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(711,'Qupe Bien Nacido Y Block Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(712,'Fess Parker Santa Barbara Chardonnay 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(713,'Ecco Domani Pinot Grigio 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(714,'William Hill Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(715,'Carmel Road Monterey Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(716,'Mouton-Cadet Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(717,'MAN Vintners Chenin Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(718,'Trimbach Pinot Blanc 2008',0,'','White',0,0); INSERT INTO "Wine" VALUES(719,'Cono Sur Bicycle Chardonnay 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(720,'Evening Land Edna Valley Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(721,'Parducci Small Lot Blend Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(722,'La Crema Monterey Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(723,'Zuccardi Serie A Torrontes 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(724,'Willamette Valley Vineyards Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(725,'Solena Estate Pinot Gris 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(726,'Ladera Sagrada Castelo do Papa Godello 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(727,'Chateau Larrivet Haut-Brion Blanc 2005',0,'','White',0,0); INSERT INTO "Wine" VALUES(728,'Maximin Grunhauser Herrenberg Riesling Kabinett 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(729,'Grgich Hills Fume Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(730,'Haras Estate Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(731,'Cloudy Bay Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(732,'Poggio al Tesoro Vermentino Solosole 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(733,'Simonnet-Febvre Chablis 1er Cru Vaillons 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(734,'Goats do Roam White 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(735,'Benton Lane Pinot Gris 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(736,'Markham Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(737,'Oxford Landing Viognier 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(738,'Edna Valley Vineyard Paragon Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(739,'Apaltagua Reserva Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(740,'J. Bookwalter Couplet Chardonnay/Viognier 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(741,'Kenwood Vintage White Wine 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(742,'Merryvale Starmont Rose 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(743,'Jean-Luc Colombo Les Abeilles Cotes du Rhone Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(744,'Banfi Centine Bianco 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(745,'Badenhorst Secateurs Chenin Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(746,'Joseph Drouhin Clos des Mouches Premier Cru Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(747,'Sokol Blosser Evolution White Blend',0,'','White',0,0); INSERT INTO "Wine" VALUES(748,'Chateau Smith Haut Lafitte Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(749,'Argyle Riesling 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(750,'Ken Forrester Reserve Chenin Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(751,'Schloss Vollrads Riesling Spatlese 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(752,'Eyrie Pinot Gris 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(753,'Mouton-Cadet Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(754,'Elk Cove Pinot Gris 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(755,'Chateau de Beaucastel Coudoulet de Beaucastel Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(756,'Rafael Palacios Louro Do Bolo Godello 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(757,'Vino dei Fratelli Moscato d''Asti 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(758,'Martinborough Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(759,'Hermann J. Wiemer Dry Gewurztraminer 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(760,'Frog''s Leap Napa Valley Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(761,'Vaquero All-Steel Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(762,'Adelsheim Pinot Gris 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(763,'Chateau Ste. Michelle Cold Creek Vineyard Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(764,'Shaya Verdejo 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(765,'Santa Ema Reserve Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(766,'Markham Sauvignon Blanc 2008',0,'','White',0,0); INSERT INTO "Wine" VALUES(767,'Robert Oatley Signature Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(768,'Bersano Monteolivo Moscato d''Asti 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(769,'Cavit Alta Luna Pinot Grigio 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(770,'Domaine de Chevalier Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(771,'Bodegas Godeval Vina Godeval Blanco 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(772,'Ladera Sagrada Castelo do Papa Godello 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(773,'Vega Sindoa Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(774,'Morgan Highland Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(775,'Jean-Luc Colombo Les Abeilles Cotes du Rhone Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(776,'Luke Donald Collection Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(777,'Cederberg Chenin Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(778,'Marimar Estate Don Miguel Vineyard Acero Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(779,'Freemark Abbey Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(780,'Charles Smith Kung Fu Girl Riesling 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(781,'Louis Latour Macon-Villages Chameroy 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(782,'Nobilo Icon Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(783,'Pacific Rim Wallula Vineyard Biodynamic Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(784,'Pio Cesare Cortese di Gavi 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(785,'Protocolo Blanco 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(786,'Peter Lehmann Eden Valley Riesling 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(787,'Tangent Paragon Vineyard Viognier 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(788,'Gerard Bertrand Reserve Speciale Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(789,'Greystone Cellars Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(790,'Bravium Reserve Thomson Vineyard Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(791,'Bodegas Ramon Bilbao Valinas Albarino 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(792,'Isabel Mondavi Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(793,'Cristo di Campobello C''D''C'' Bianco 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(794,'S.A. Prum Blue Riesling 2007',0,'','White',0,0); INSERT INTO "Wine" VALUES(795,'Tahbilk Marsanne 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(796,'Chateau de Beaucastel Chateauneuf-du-Pape Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(797,'Heritance Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(798,'Jean-Luc Colombo Viognier La Violette 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(799,'Penfolds Thomas Hyland Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(800,'Punto Nino Reserva Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(801,'Alois Lageder Pinot Grigio 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(802,'Ruffino Libaio 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(803,'Buty Conner Lee Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(804,'Greystone Cellars Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(805,'Decoy Sonoma Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(806,'Lamadrid Torrontes 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(807,'Petaluma Hanlin Hill Clare Valley Riesling 2008',0,'','White',0,0); INSERT INTO "Wine" VALUES(808,'Sauvion Sancerre 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(809,'Bodegas Fillaboa Albarino Rias Baixas 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(810,'DeLoach Russian River Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(811,'Joseph Drouhin Pouilly-Fuisse 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(812,'Louis Jadot Chablis 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(813,'Trimbach Cuvee Frederic Emile Riesling 2006',0,'','White',0,0); INSERT INTO "Wine" VALUES(814,'Peter Lehmann Eden Valley Riesling 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(815,'Bouchard Aine & Fils Bourgogne Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(816,'Villa Matilde Fiano di Avellino 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(817,'Hermann J. Wiemer Dry Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(818,'Los Vascos Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(819,'Bernhard Eifel Maximilian E Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(820,'Chateau de Beaucastel Coudoulet de Beaucastel Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(821,'Bonny Doon Le Cigare Blanc 2008',0,'','White',0,0); INSERT INTO "Wine" VALUES(822,'L''Esprit de Chevalier Pessac Leognan Blanc 1999',0,'','White',0,0); INSERT INTO "Wine" VALUES(823,'Domaine Leroy Meursault 2002',0,'','White',0,0); INSERT INTO "Wine" VALUES(824,'Ritual Casablanca Valley Sauvignon Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(825,'St Hallett Eden Valley Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(826,'Chateau Olivier Blanc 2006',0,'','White',0,0); INSERT INTO "Wine" VALUES(827,'Valley of the Moon Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(828,'Tenuta Polvaro Lison Classico 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(829,'De Bortoli Noble One Botrytis Semillon (375ML half-bottle) 2006',0,'','White',0,0); INSERT INTO "Wine" VALUES(830,'Domaines Schlumberger Princes Abbes Pinot Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(831,'Chateau Marjosse Blanc 2007',0,'','White',0,0); INSERT INTO "Wine" VALUES(832,'Neil Ellis Groenekloof Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(833,'Leitz Dragonstone Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(834,'J.J. Prum Bernkasteler Badstube Spatlese 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(835,'Wakefield Estate Chardonnay Clare Valley 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(836,'Banfi San Angelo Pinot Grigio 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(837,'Star Tree Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(838,'Chateau Monbousquet Blanc 2005',0,'','White',0,0); INSERT INTO "Wine" VALUES(839,'Graham Beck Game Reserve Chenin Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(840,'Domaine Lebrun Pouilly Fume 2006',0,'','White',0,0); INSERT INTO "Wine" VALUES(841,'J.J. Prum Wehlener Sonnenuhr Auslese 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(842,'Chateau Marjosse Blanc 2004',0,'','White',0,0); INSERT INTO "Wine" VALUES(843,'Shaya Verdejo 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(844,'Alexander Valley Vineyards Estate Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(845,'L''Ecole 41 Luminesce Seven Hills Vineyard 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(846,'Mulderbosch Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(847,'Malvira Roero Arneis 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(848,'Stock & Stein Trocken Riesling 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(849,'Montes Alpha Series Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(850,'Schloss Saarstein Riesling QbA 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(851,'Clos du Caillou Chateauneuf-du-Pape Les Safres Blanc 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(852,'Chateau Larrivet Haut-Brion Blanc 2007',0,'','White',0,0); INSERT INTO "Wine" VALUES(853,'Decoy Sonoma Chardonnay 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(854,'Stony Hill Chardonnay 2007',0,'','White',0,0); INSERT INTO "Wine" VALUES(855,'Les Jamelles Chardonnay Vins de Pays D''Oc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(856,'Tyler Florence Sauvignon Blanc 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(857,'Dom. de Rully St. Michel Rully 1er Cru "Raclot" 2006',0,'','White',0,0); INSERT INTO "Wine" VALUES(858,'Baron Herzog Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(859,'Chateau Haut Bergey Blanc 2006',0,'','White',0,0); INSERT INTO "Wine" VALUES(860,'Mastroberardino Greco di Tufo 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(861,'Greg Norman Estates Eden Valley Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(862,'Spring Seed Wine Co. Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(863,'Vino dei Fratelli Moscato d''Asti 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(864,'Louis Latour Meursault Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(865,'Jacob''s Creek Reserve Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(866,'Trimbach Cuvee Frederic Emile Riesling 2005',0,'','White',0,0); INSERT INTO "Wine" VALUES(867,'Louis Latour Pouilly Fuisse 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(868,'Columbia Crest H3 Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(869,'Domaine Cailbourdin Pouilly-Fume "Bois fleury" 2005',0,'','White',0,0); INSERT INTO "Wine" VALUES(870,'Chateau Olivier Blanc 2003',0,'','White',0,0); INSERT INTO "Wine" VALUES(871,'Jack Nicklaus Private Reserve White 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(872,'K Vintners Viognier 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(873,'Ladoucette Pouilly-Fume 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(874,'Chateau de Fieuzal Blanc 2005',0,'','White',0,0); INSERT INTO "Wine" VALUES(875,'Dr. Konstantin Frank Finger Lakes Pinot Gris 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(876,'Duchineri Pinot Grigio 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(877,'Chateau St. Jean La Petite Etoile Fume Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(878,'Justin Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(879,'Morgadio Legado del Conde Albarino 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(880,'Chateau de Beaucastel Coudoulet de Beaucastel Blanc 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(881,'Simonnet-Febvre Chablis 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(882,'Chateau de Fieuzal Blanc 2004',0,'','White',0,0); INSERT INTO "Wine" VALUES(883,'Joseph Drouhin St. Veran 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(884,'Morgan Highland Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(885,'Chateau Smith Haut Lafitte Blanc 2003',0,'','White',0,0); INSERT INTO "Wine" VALUES(886,'Barnard Griffin Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(887,'PARIPASO Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(888,'Hamilton Russell Chardonnay 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(889,'Recanati Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(890,'Wines That Rock Woodstock Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(891,'Terlato Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(892,'Chateau Larrivet Haut-Brion Blanc 2003',0,'','White',0,0); INSERT INTO "Wine" VALUES(893,'Ladoucette Pouilly-Fume 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(894,'Freestone Vineyards Fogdog Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(895,'Graham Beck Game Reserve Chenin Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(896,'Hermann J. Wiemer Dry Riesling 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(897,'Amberhill Secret White Blend 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(898,'Sanford Flor de Campo Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(899,'Guy Saget Vouvray Marie de Beauregard 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(900,'Cave de Pomerols Picpoul de Pinet 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(901,'House Of Mandela The Thembu Collection Chardonnay 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(902,'Angove Family Winemakers Nine Vines Viognier 2008',0,'','White',0,0); INSERT INTO "Wine" VALUES(903,'Good Daughter Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(904,'La Crema Monterey Pinot Gris 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(905,'Bucci Verdicchio Classico dei Castelli di Jesi 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(906,'House Of Mandela Royal Reserve Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(907,'J. Bookwalter Couplet Chardonnay/Viognier 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(908,'Chateau La Nerthe Chateauneuf-du-Pape Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(909,'Quivira Dry Creek Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(910,'Pacific Rim Gewurztraminer 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(911,'Chateau St. Jean La Petite Etoile Fume Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(912,'Fess Parker Santa Barbara Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(913,'Pacific Rim Wallula Vineyard Biodynamic Riesling 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(914,'Chateau Malartic-Lagraviere Blanc (Futures Pre-sale) 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(915,'Marimar Estate Don Miguel Vinyard Albarino 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(916,'Olivier Leflaive Les Setilles 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(917,'Domaines Schlumberger Princes Abbes Pinot Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(918,'Bouchard Pere & Fils Reserve Bourgogne Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(919,'Merryvale Starmont Sauvignon Blanc 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(920,'Domaine de Chevalier Blanc (Futures Pre-sale) 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(921,'Dr. Loosen Dr. L Estate QbA 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(922,'Heinz Eifel Riesling Spatlese 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(923,'Bravium Thomson Vineyard Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(924,'Trimbach Pinot Blanc 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(925,'Bouchard Pere & Fils Reserve Bourgogne Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(926,'Chateau Smith Haut Lafitte Blanc (Futures Pre-sale) 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(927,'La Playa Estate "Un-Oaked" Chardonnay 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(928,'Apothic White Blend 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(929,'Stag''s Leap Wine Cellars KARIA Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(930,'Rafael Palacios Louro Do Bolo Godello 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(931,'Bernhard Eifel Alex E Riesling 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(932,'Chamisal Vineyards Stainless Chardonnay 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(933,'Teruzzi & Puthod Terre di Tufi 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(934,'Pacific Rim Wallula Vineyard Biodynamic Riesling 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(935,'Kendall-Jackson Grand Reserve Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(936,'Mirassou Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(937,'Buena Vista Carneros Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(938,'Cakebread Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(939,'Sonoma-Cutrer Sonoma Coast Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(940,'Chalk Hill Sauvignon Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(941,'Mer Soleil Barrel Fermented Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(942,'Shafer Red Shoulder Ranch Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(943,'Gainey Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(944,'DeLoach Heritage Reserve Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(945,'Ferrari-Carano Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(946,'MacRostie Sonoma Coast Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(947,'Beringer Private Reserve Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(948,'Clos Pegase Mitsukos Vineyard Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(949,'Far Niente Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(950,'Browne Family Vineyards Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(951,'Peter Lehmann Layers White 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(952,'Clos du Val Carneros Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(953,'Chateau Montelena Napa Valley Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(954,'Cupcake Vineyards Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(955,'Cupcake Vineyards Riesling 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(956,'Plantagenet Hazard Hill Semillon Sauvignon Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(957,'Talbott Logan Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(958,'Gundlach Bundschu Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(959,'Neyers Carneros Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(960,'Jordan Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(961,'Fess Parker Santa Barbara Viognier 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(962,'Buehler Russian River Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(963,'Rodney Strong Chalk Hill Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(964,'Glen Carlou Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(965,'Leeuwin Estate Art Series Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(966,'Sonoma-Cutrer Sonoma Coast Chardonnay (375ML half-bottle) 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(967,'Marimar Estate Don Miguel Vineyard La Masia Chardonnay 2008',0,'','White',0,0); INSERT INTO "Wine" VALUES(968,'Frei Brothers Reserve Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(969,'Columbia Crest Grand Estates Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(970,'Roots Run Deep Educated Guess Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(971,'Philippe Foreau Vouvray Moelleux "Clos Naudin" 2008',0,'','White',0,0); INSERT INTO "Wine" VALUES(972,'Firestone Santa Ynez Valley Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(973,'Ridge Estate Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(974,'Dom. J Pillot Chassagne Montrachet 1er Cru "Caillerets" 2008',0,'','White',0,0); INSERT INTO "Wine" VALUES(975,'Yalumba Eden Valley Wild Ferment Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(976,'Chateau Ste. Michelle Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(977,'Clos du Bois Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(978,'Cuvaison Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(979,'Raymond Reserve Selection Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(980,'Louis Latour Montagny 1er Cru La Grande Roche 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(981,'Alderbrook Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(982,'Louis Latour Puligny-Montrachet 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(983,'Errazuriz Wild Ferment Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(984,'Martin Ray Russian River Valley Chardonnay 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(985,'Louis Jadot Chassagne-Montrachet 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(986,'Lapostolle Cuvee Alexandre Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(987,'Newton Unfiltered Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(988,'Irony Napa Valley Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(989,'Iron Horse Estate Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(990,'Sonoma-Cutrer The Cutrer Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(991,'Black Stallion Winery Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(992,'Beringer Napa Valley Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(993,'Sebastiani Sonoma Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(994,'Jermann Vintage Tunina 2008',0,'','White',0,0); INSERT INTO "Wine" VALUES(995,'Tasca d''Almerita Leone d''Almerita 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(996,'Lake Sonoma Russian River Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(997,'DeLille Chaleur Estate Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(998,'Sbragia Home Ranch Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(999,'Joseph Carr Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1000,'Rochioli Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1001,'Matanzas Creek Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1002,'Rombauer Chardonnay (375ML half-bottle) 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1003,'Oxford Landing Chardonnay 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(1004,'Leeuwin Estate Prelude Vineyards Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1005,'Vine Cliff Los Carneros Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1006,'Pahlmeyer Sonoma Coast Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1007,'Concha y Toro Marques de Casa Concha Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1008,'Sonoma-Cutrer The Cutrer Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1009,'J. Lohr Riverstone Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1010,'St. Francis Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1011,'Francis Ford Coppola Director''s Cut Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1012,'Hartford Court Russian River Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1013,'Domaine Drouhin Oregon Chardonnay Arthur 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1014,'Cambria Katherine''s Vineyard Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1015,'Tramin Pinot Grigio 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1016,'Geyser Peak Chardonnay 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(1017,'J.L. Chave Hermitage Blanc 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(1018,'Stags'' Leap Winery Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1019,'Marcassin Three Sisters Vineyard Chardonnay 2007',0,'','White',0,0); INSERT INTO "Wine" VALUES(1020,'Schug Sonoma Coast Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1021,'Nickel & Nickel Truchard Vineyard Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1022,'Ramey Russian River Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1023,'Flowers Camp Meeting Ridge Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1024,'Kistler Vine Hill Chardonnay 2002',0,'','White',0,0); INSERT INTO "Wine" VALUES(1025,'Catena Alta Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1026,'Top Chef Quickfire Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1027,'Rochioli South River Vineyard Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1028,'Tabali Chardonnay Reserva Especial 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1029,'Wyndham Bin 222 Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1030,'Aubert UV-SL Vineyard Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1031,'Chateau St. Jean Sonoma County Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1032,'Cupcake Vineyards Riesling 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(1033,'Napa Cellars Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1034,'Hartford Court Four Hearts Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1035,'Wente Morning Fog Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1036,'Schug Sonoma Coast Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1037,'The Dreaming Tree Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1038,'Chateau La Colline Semillon 2006',0,'','White',0,0); INSERT INTO "Wine" VALUES(1039,'Bethel Heights Estate Grown Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1040,'Melville Verna''s Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1041,'St. Innocent Freedom Hill Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1042,'Chateau d''Yquem "Y" 2005',0,'','White',0,0); INSERT INTO "Wine" VALUES(1043,'Garnet Sonoma Coast Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1044,'Sine Qua Non The Monkey 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1045,'Stonestreet Broken Road Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1046,'Stonestreet Upper Barn Vineyard Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1047,'Gallo Signature Series Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1048,'Cambria Katherine''s Vineyard Chardonnay (half-bottle) 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1049,'Artesa Carneros Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1050,'Joseph Drouhin Montrachet Marquis de Laguiche 2006',0,'','White',0,0); INSERT INTO "Wine" VALUES(1051,'Rutherford Ranch Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1052,'Foxglove Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1053,'Marcassin Marcassin Vineyard Chardonnay 2008',0,'','White',0,0); INSERT INTO "Wine" VALUES(1054,'Jermann Capo Martino (1.5 Liter Magnum) 2006',0,'','White',0,0); INSERT INTO "Wine" VALUES(1055,'St. Clement Napa Valley Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1056,'WALT La Brisa Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1057,'Sbragia Gamble Ranch Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(1058,'Vina Cobos Felino Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1059,'Merryvale Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1060,'DeLille Chaleur Estate Blanc 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(1061,'Charles Krug Carneros Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1062,'Louis Latour Montagny 1er Cru La Grande Roche 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1063,'Rutherford Hill Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1064,'Chateau Monbousquet Blanc 2003',0,'','White',0,0); INSERT INTO "Wine" VALUES(1065,'Aubert Lauren Vineyard Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1066,'DeLille Chaleur Estate Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1067,'Tramin Pinot Grigio 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(1068,'Freestone Vineyards by Joseph Phelps Sonoma Coast Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1069,'Les Jamelles Essentiel Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1070,'Hayman & Hill Russian River Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1071,'Beringer Founders'' Estate Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1072,'Bridesmaid White 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(1073,'Bayten Buitenverwachting Chardonnay 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(1074,'Cakebread Chardonnay (375ML half-bottle) 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1075,'Groth Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1076,'Santa Rita Medalla Real Chardonnay 2008',0,'','White',0,0); INSERT INTO "Wine" VALUES(1077,'Novelty Hill Stillwater Creek Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1078,'Terredora Greco di Tufo Loggia della Serra 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1079,'L''Ecole 41 Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1080,'Cupcake Vineyards Riesling 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1081,'Entwine Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(1082,'Wyndham Bin 222 Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(1083,'De Martino Legado Reserva Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1084,'Montes Alpha Series Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(1085,'Foley Santa Rita Hills Rancho Santa Rosa Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1086,'Dutton Goldfield Dutton Ranch Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(1087,'Fess Parker Santa Barbara Viognier 2008',0,'','White',0,0); INSERT INTO "Wine" VALUES(1088,'Chateau Valandraud Blanc de Valandraud No. 2 2005',0,'','White',0,0); INSERT INTO "Wine" VALUES(1089,'Wolf Blass Gold Label Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(1090,'Chateau St. Jean Sonoma County Reserve Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1091,'Gallo Signature Series Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(1092,'Roots Run Deep Educated Guess Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1093,'La Follette North Coast Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1094,'Chapoutier Chante Alouette Hermitage Blanc 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1095,'Marcassin Three Sisters Vineyard Chardonnay 2008',0,'','White',0,0); INSERT INTO "Wine" VALUES(1096,'Patz & Hall Hyde Vineyard Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1097,'Aubert UV Vineyard Pinot Noir (1.5L Magnum) 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1098,'Geyser Peak Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1099,'Ramey Sonoma Coast Chardonnay 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1100,'Santa Rita Medalla Real Chardonnay 2009',0,'','White',0,0); INSERT INTO "Wine" VALUES(1101,'Louis Latour Puligny-Montrachet 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1102,'Dom. Vincent Girardin Corton Charlemagne Grand Cru 2010',0,'','White',0,0); INSERT INTO "Wine" VALUES(1103,'Iron Horse Green Valley Chinese Cuvee 2004',0,'','White',0,0); INSERT INTO "Wine" VALUES(1104,'Clos du Bois Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1105,'Au Bon Climat Santa Barbara Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1106,'Tabali Chardonnay Reserva Especial 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1107,'Peter Lehmann Layers White 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1108,'Chapoutier Chante Alouette Hermitage Blanc 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1109,'Smoking Loon Chardonnay 2012',0,'','White',0,0); INSERT INTO "Wine" VALUES(1110,'Flowers Sonoma Coast Chardonnay 2011',0,'','White',0,0); INSERT INTO "Wine" VALUES(1111,'Sine Qua Non Tarantella 1999',0,'','White',0,0); INSERT INTO "Wine" VALUES(1112,'Lucky II Proprietary Red Blend',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1113,'Mount Veeder Winery Reserve Red 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1114,'Silver Oak Alexander Valley Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1115,'Silver Oak Napa Valley Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1116,'Santa Rita Triple C 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1117,'The Prisoner 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1118,'Cameron Hughes Lot 316 Napa Valley Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1119,'Concha y Toro Don Melchor Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1120,'Clarendon Hills Bakers Gully Syrah 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1121,'Villa Pozzi Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1122,'Seghesio Sonoma Zinfandel 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1123,'Antinori Tignanello 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1124,'Chateau Pipeau 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1125,'Mollydooker Carnival of Love 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1126,'Mount Veeder Winery Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1127,'Root 1 Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1128,'Clos du Val Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1129,'St. Supery Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1130,'Seven Hills Cabernet Sauvignon Seven Hills Vineyard 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1131,'Il Poggione Brunello di Montalcino 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1132,'Beringer Napa Valley Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1133,'Frescobaldi Nipozzano Chianti Riserva 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1134,'Chateau Monbousquet 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1135,'DAOU Vineyards Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1136,'Cakebread Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1137,'Catena Nicolas Catena Zapata 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1138,'Geyser Peak Walking Tree Vineyard Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1139,'Atlas Peak Napa Valley Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1140,'Beringer Quantum Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1141,'Castello di Monsanto Chianti Classico Riserva 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1142,'Antigal Uno Malbec 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1143,'La Colliere Rasteau 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1144,'Antica Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1145,'Chateau Haut Bergey 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1146,'Kunde Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1147,'Clarendon Hills Hickinbotham Vineyard Syrah 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1148,'Benziger Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1149,'Dominus Estate (375ML half-bottle) 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1150,'Tenuta Sette Ponti Oreno 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1151,'Leonetti Reserve 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1152,'Nativa Reserva Carmenere 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1153,'Lapostolle Canto de Apalta Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1154,'Andrew Murray Syrah Tous les Jours 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1155,'Raymond Reserve Selection Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1156,'Zenato Amarone 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1157,'Quintessa 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1158,'Lapostolle Clos Apalta 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1159,'Veramonte Cabernet Sauvignon (El Cabellero) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1160,'Chateau Marjosse 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1161,'Chateau Montelena Napa Valley Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1162,'Groth Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1163,'Pahlmeyer Napa Valley Proprietary Red 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1164,'Vinos Jeromin Zestos 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1165,'Four Vines Biker Paso Robles Zinfandel 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1166,'Ruffino Greppone Mazzi Brunello di Montalcino 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1167,'Seghesio Old Vine Zinfandel 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1168,'Bogle Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1169,'Silver Oak Napa Valley Cabernet Sauvignon 2001',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1170,'Chateau Haut-Beausejour 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1171,'Errazuriz Don Maximiano Founder''s Reserva 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1172,'Robert Mondavi Reserve Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1173,'Layer Cake Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1174,'Shafer Napa Valley Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1175,'Grgich Hills Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1176,'Chateau Leoville Las Cases 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1177,'Avalon California Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1178,'La Cartuja Priorat 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1179,'Mollydooker Enchanted Path 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1180,'Quivira Dry Creek Valley Zinfandel 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1181,'Frescobaldi Castelgiocondo Brunello di Montalcino 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1182,'Chateau Ste. Michelle Cold Creek Vineyard Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1183,'Robert Mondavi Reserve Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1184,'Merryvale Starmont Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1185,'Stags'' Leap Winery Petite Syrah 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1186,'Tabali Reserva Syrah 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1187,'Layer Cake Primitivo 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1188,'Almaviva 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1189,'Anderson''s Conn Valley Vineyards Cabernet Sauvignon Reserve (375ML half-bottle) 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1190,'Gundlach Bundschu Mountain Cuvee 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1191,'Avalon Sauvignon Blanc 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1192,'Chateau Lynch-Bages 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1193,'Frescobaldi Mormoreto 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1194,'Aurielle Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1195,'Primus "The Blend" 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1196,'Chateau Pavie 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1197,'Chateau Ste. Michelle Indian Wells Vineyard Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1198,'Ramey Sonoma Coast Syrah 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1199,'Roots Run Deep Hypothesis Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1200,'Gerard Bertrand Cotes du Roussillon Tautavel Hommage aux Vignerons 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1201,'Groth Reserve Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1202,'Domaines Baron Rothschild Reserve Speciale Bordeaux Rouge 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1203,'Frankland Estate Isolation Ridge Shiraz 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1204,'Clarendon Hills Piggott Range Vineyard Syrah 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1205,'Roots Run Deep Educated Guess Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1206,'Qupe Central Coast Syrah 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1207,'Duckhorn Howell Mountain Cabernet Sauvignon 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1208,'Gorman The Bully Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1209,'Bodega Colome Estate Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1210,'Clarendon Hills Astralis Syrah 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1211,'Rodney Strong Estate Alexander Valley Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1212,'Mitolo The Jester Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1213,'Dom. de Mourchon Cotes du Rhone Villages Seguret Grande Reserve 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1214,'Chateau Haut Bergey 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1215,'Ramblin'' Man Petite Sirah 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1216,'Torres Celeste 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1217,'Stag''s Leap Wine Cellars Artemis Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1218,'Ridge Geyserville 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1219,'La Carraia Sangiovese Umbria 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1220,'Gnarly Head Old Vine Zinfandel 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1221,'Robert Mondavi Napa Valley Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1222,'Columbia Crest Reserve Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1223,'Ernie Els Big Easy Red Blend 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1224,'Clarendon Hills Moritz Syrah 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1225,'Catena Alta Malbec 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1226,'Chimney Rock Stags Leap Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1227,'Kilikanoon Attunga 1865 Shiraz 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1228,'Peter Lehmann Shiraz 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1229,'Montes Alpha Series Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1230,'Cline Ancient Vines Zinfandel 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1231,'Merryvale Profile 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1232,'Two Hands Angels'' Share Shiraz 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1233,'Dunn Howell Mountain Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1234,'Clarendon Hills Sandown Vineyard Cabernet Sauvignon 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1235,'d''Arenberg Wild Pixie Shiraz Rousanne 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1236,'Chateau La Mondotte 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1237,'Chateau Grand Puy Lacoste 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1238,'Thorn-Clarke Shotfire Quartage 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1239,'DAOU Vineyards Petite Sirah 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1240,'Haras Character Cabernet Sauvignon-Carmenere 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1241,'DeLoach Russian River Zinfandel 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1242,'7 Deadly Zins Zinfandel 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1243,'Two Hands Lily''s Garden Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1244,'John Duval Entity Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1245,'Hahn Estates Meritage Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1246,'Mollydooker Blue Eyed Boy Shiraz 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1247,'Produttori del Barbaresco Barbaresco Paje Riserva 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1248,'Ricasoli Chianti Classico Castello di Brolio (375ML) 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1249,'Two Hands Gnarly Dudes Shiraz 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1250,'Castle Rock Lake County Petite Sirah 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1251,'Kaiken Ultra Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1252,'Travaglini Gattinara 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1253,'Hahn Estates GSM 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1254,'Tait The Ball Buster 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1255,'Altesino Montosoli Brunello di Montalcino 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1256,'Glenelly Grand Vin de Glenelly 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1257,'Evans Wine Company Nine Stones Barossa Shiraz 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1258,'Dom. du Vieux Lazaret Chateauneuf-du-Pape Cuvee Exceptionelle 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1259,'Pio Cesare Barolo 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1260,'337 Lodi Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1261,'Chateau Rauzan Segla 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1262,'Chateau Smith Haut Lafitte 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1263,'Vinos Sin-Ley Monastrell 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1264,'Far Niente Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1265,'Jean-Luc Colombo Les Ruchets Cornas 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1266,'Tikal Patriota 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1267,'Mollydooker The Boxer Shiraz 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1268,'Clos de los Siete Super Red Blend 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1269,'Grgich Hills Zinfandel 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1270,'Cliff Lede Stags Leap District Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1271,'Tommasi Amarone 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1272,'Fontodi Flaccianello 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1273,'Chateau Fombrauge 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1274,'Wines That Rock Grateful Dead Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1275,'Bodegas Ateca Atteca 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1276,'Dom. Lafage Cuvee Nicolas 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1277,'B.R. Cohn Silver Label Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1278,'Chateau Branaire-Ducru 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1279,'Chateau Duhart-Milon-Rothschild 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1280,'Valley of the Moon Zinfandel 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1281,'Chateau Leoville Poyferre 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1282,'Ghost Block Oakville Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1283,'Bruno Giacosa Barolo Falletto 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1284,'Col Solare 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1285,'Frescobaldi Tenuta di Castiglioni 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1286,'Masi Costasera Classico Amarone 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1287,'Camigliano Brunello di Montalcino 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1288,'Dom. de Beaurenard Rasteau Cotes du Rhone Villages 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1289,'Gerard Bertrand Saint Chinian 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1290,'CADE Howell Mountain Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1291,'Robert Keenan Mernet Reserve 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1292,'Produttori del Barbaresco Barbaresco 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1293,'Hall Napa Valley Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1294,'Luce Della Vite Lucente 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1295,'Wolf Blass Yellow Label Shiraz 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1296,'Bodegas Nieto Senetiner Malbec Reserva 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1297,'Chateau Montelena Estate Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1298,'Mastroberardino Radici Taurasi 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1299,'Gorman The Pixie Red Mountain Syrah 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1300,'Robert Craig Cellars Affinity 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1301,'Chappellet Signature Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1302,'Urraca Primera Reserva 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1303,'Perrin et Fils Cotes du Rhone Villages Rouge 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1304,'Vina Cobos Felino Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1305,'Justin Isosceles 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1306,'Valentin Bianchi Famiglia Bianchi Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1307,'Chateau de Pez 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1308,'Montes Alpha Series Syrah 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1309,'Cameron Hughes Lot 285 Rutherford Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1310,'StoneCap Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1311,'Stag''s Leap Wine Cellars Cask 23 Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1312,'Dom. de Beaurenard Cuvee Boisrenard Chateauneuf-du-Pape 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1313,'Chateau Hosanna 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1314,'Hess Collection Mount Veeder Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1315,'Liber Pater 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1316,'Cordero di Montezemolo Barolo Monfalletto 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1317,'Arnoux et Fils Vacqueyras Cuvee Jean-Marie Arnoux 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1318,'Dunn Howell Mountain Cabernet Sauvignon 2003',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1319,'Sebastiani Sonoma County Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1320,'Chateau Chauvin (1.5 Liter Magnum) 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1321,'Beaulieu Vineyard Reserve Tapestry 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1322,'K Vintners Stoneridge Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1323,'Raineri Barolo Monserra 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1324,'Two Hands Ares Shiraz 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1325,'Chateau St. Jean Sonoma County Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1326,'Ghost Pines Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1327,'Clarendon Hills Hickinbotham Vineyard Cabernet Sauvignon 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1328,'Grgich Hills Merlot 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1329,'Markham Cellar 1879 Napa Valley Red Blend 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1330,'Pahlmeyer Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1331,'Villadoria Barolo 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1332,'Chateau Olivier 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1333,'Penfolds Bin 389 Cabernet-Shiraz 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1334,'Fontodi Flaccianello 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1335,'Ch. Branaire-Ducru St. Julien 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1336,'Altesino Rosso Toscana 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1337,'Vajra Barolo Albe 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1338,'Mollydooker The Maitre d'' Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1339,'Bodegas Vina Magana Baron de Magana 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1340,'Chateau Leoville Barton 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1341,'Stonestreet Monument Ridge Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1342,'Francis Ford Coppola Diamond Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1343,'Pride Mountain Vineyards Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1344,'Louis Martini Napa Valley Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1345,'Crios de Susana Balbo Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1346,'Tardieu-Laurent Les Becs Fins Cotes du Rhone 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1347,'Castello Romitorio Brunello di Montalcino 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1348,'Ciacci Piccolomini d''Aragona Brunello di Montalcino Pianrosso 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1349,'Thorn-Clarke Shotfire Ridge Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1350,'Primus Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1351,'Quilceda Creek Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1352,'Almaviva (375ML half-bottle) 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1353,'Gaja Sperss 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1354,'Chateau Figeac 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1355,'d''Arenberg Coppermine Road Cabernet Sauvignon 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1356,'Jim Barry Cover Drive Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1357,'Merryvale Profile 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1358,'Chateau Lascombes 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1359,'Muga Reserva (375ML half-bottle) 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1360,'Ladera Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1361,'Terra Valentine Spring Mountain District Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1362,'Alto Moncayo Veraton 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1363,'Isole e Olena Cepparello 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1364,'Domus Aurea Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1365,'Felsina Chianti Classico Riserva Rancia 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1366,'Concannon Conservancy Petite Sirah 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1367,'Hess Allomi Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1368,'Torbreck Descendant Shiraz 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1369,'Penfolds St. Henri Shiraz 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1370,'BenMarco Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1371,'Renato Ratti Marcenasco Barolo 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1372,'Alexander Valley Vineyards Redemption Zin 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1373,'Avignonesi Vino Nobile di Montepulciano 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1374,'Murphy-Goode Liars Dice Zinfandel 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1375,'Schild Estate Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1376,'Senorio de Barahonda Sin Madera 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1377,'Quilceda Creek Cabernet Sauvignon 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1378,'Muga Reserva 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1379,'Chateau Talbot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1380,'Duckhorn Napa Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1381,'Finca Luzon Luzon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1382,'Stonestreet Legacy Meritage Red 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1383,'Kilikanoon Killerman''s Run Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1384,'Mollydooker Two Left Feet 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1385,'Gaja Sperss (375ML half-bottle) 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1386,'Carpe Diem Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1387,'Faust Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1388,'Chateau Mouton Rothschild 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1389,'Dominus Napanook Vineyard 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1390,'Chateau Ducru Beaucaillou 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1391,'Yalumba The Scribbler 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1392,'Lapostolle Cuvee Alexandre Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1393,'Penalolen Cabernet Franc 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1394,'Col d''Orcia Rosso di Montalcino 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1395,'Falesco Vitiano Rosso 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1396,'William Hill Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1397,'d''Arenberg The Derelict Vineyard Grenache 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1398,'Haras Estate Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1399,'Bryant Family Bettina Proprietary Red 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1400,'Chalk Hill Estate Red 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1401,'Januik Winery Columbia Valley Red 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1402,'Ravenswood Pickberry Vineyards 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1403,'Leeuwin Estate Art Series Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1404,'Rubicon at Inglenook Rubicon (375ML half-bottle) 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1405,'Midnight Oil Syrah 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1406,'Leonetti Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1407,'Chateau Haut-Bages-Liberal 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1408,'Spottswoode Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1409,'J.L. Chave Hermitage 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1410,'Chateau Angelus 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1411,'Santa Rita Medalla Real Carmenere 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1412,'Guigal Cotes du Rhone Rouge 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1413,'Beaulieu Vineyard Napa Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1414,'Penalolen Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1415,'CADE Napa Cuvee 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1416,'Tahbilk Shiraz 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1417,'Errazuriz Single Vineyard Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1418,'Ornellaia 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1419,'Arnold Palmer Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1420,'Casanova di Neri Brunello di Montalcino Tenuta Nuova 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1421,'Clarendon Hills Kangarilla Grenache 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1422,'Numanthia Numanthia Toro 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1423,'Casa Silva Reserva Carmenere 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1424,'Chateau Malartic-Lagraviere 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1425,'Baron Herzog Special Reserve Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1426,'Errazuriz Single Vineyard Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1427,'Valdicava Brunello Riserva Madonna del Piano 2003',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1428,'Robert Keenan Napa Valley Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1429,'Trumpeter Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1430,'CADE Howell Mountain Cabernet Sauvignon (half-bottle) 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1431,'Henry''s Drive Reserve Shiraz 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1432,'J. Bookwalter Foreshadow Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1433,'Vine Cliff Private Stock Pickett Road Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1434,'Vinedos de Paganos El Puntido 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1435,'Mt. Brave Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1436,'Paul Autard Cote Ronde Chateauneuf-du-Pape 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1437,'Bodegas Barco de Piedra Tempranillo 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1438,'Louis Martini Monte Rosso Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1439,'Torbreck The Struie Barossa Valley 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1440,'Chateau Les Carregades 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1441,'Chateau Malartic-Lagraviere 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1442,'Chateau Lascombes 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1443,'Dom. du Vieux Telegraphe Chateauneuf-du-Pape La Crau 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1444,'Doubleback Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1445,'Paul Dolan Vineyards Organic Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1446,'Tikal Patriota 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1447,'Podere Salicutti Brunello di Montalcino Piaggione 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1448,'Lewis Cellars Reserve Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1449,'Quilceda Creek Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1450,'Mastroberardino Naturalis Historia Taurasi DOCG 2003',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1451,'Chalk Hill Estate Red 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1452,'Betz Family Winery Clos de Betz 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1453,'Tenuta La Badiola 642 Maremma Toscana 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1454,'Teso la Monja Romanico 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1455,'Chateau Lagrange 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1456,'Andrew Will Winery Champoux Vineyard Horse Heaven Hills 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1457,'Chateau Pavie 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1458,'Duckhorn The Discussion 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1459,'Podere Salicutti Rosso di Montalcino 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1460,'KaDieM Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1461,'Neyers Ame Cabernet Sauvignon 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1462,'Torbreck The Factor Shiraz 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1463,'Chateau Lafite-Rothschild 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1464,'Beringer Private Reserve Cabernet Sauvignon (half-bottle) 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1465,'Chateau Malartic-Lagraviere 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1466,'Anderson''s Conn Valley Vineyards Cabernet Sauvignon Reserve 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1467,'Vina Cobos Volturno 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1468,'Quilceda Creek Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1469,'Chateau Olivier 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1470,'Chateau Pesquie Cuvee des Terrasses Cotes du Ventoux Rouge 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1471,'Gnarly Head Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1472,'Oberon Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1473,'DAOU Vineyards Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1474,'Northstar Columbia Valley Merlot 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1475,'Chateau La Grave 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1476,'Paraduxx C Red Blend 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1477,'Fisher Vineyards Mountain Estate Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1478,'Bridlewood Paso Robles Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1479,'Falesco Assisi Rosso 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1480,'Mayacamas Cabernet Sauvignon 2002',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1481,'Calina Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1482,'Chateau Cheval Blanc Le Petit Cheval (3 Liter) 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1483,'Conn Creek Anthology 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1484,'Cigar Zin Old Vine Zinfandel 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1485,'Mas de Boislauzon Chateauneuf-du-Pape 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1486,'Salvioni Brunello di Montalcino 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1487,'Merryvale Napa Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1488,'Ringbolt Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1489,'Uccelliera Brunello di Montalcino Riserva 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1490,'Castello dei Rampolla d''Alceo 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1491,'Andrew Will Winery Sorella 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1492,'Paul Autard Cote Ronde Chateauneuf-du-Pape 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1493,'Melville Santa Rita Hills Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1494,'Chateau Latour 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1495,'Merryvale Starmont Cabernet Sauvignon (375ML half-bottle) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1496,'Renato Corino Barolo Arborina 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1497,'Broquel Bonarda 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1498,'Clos du Val Stags Leap District Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1499,'Dunn Napa Valley Cabernet Sauvignon 2003',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1500,'Penfolds RWT Shiraz 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1501,'Robert Craig Cellars Spring Mountain Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1502,'Vajra Bricco Delle Viole Barolo 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1503,'Chateau St. Jean Cinq Cepages 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1504,'Chateau Ducru Beaucaillou 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1505,'Haras Albis 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1506,'Owen Roe Abbot''s Table 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1507,'M by Michael Mondavi Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1508,'Sterling Three Palms Vineyard Merlot 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1509,'Chateau Haut-Brion 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1510,'Vall Llach Priorat 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1511,'Bodega Norton Barrel Select Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1512,'Fontodi Flaccianello (1.5 Liter Magnum) 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1513,'Figgins Estate Red Wine 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1514,'Chateau de Fieuzal 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1515,'Villadoria Barolo 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1516,'Hidden Ridge 55% Slope Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1517,'Damilano Barolo Lecinquevigne 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1518,'Carmen Gran Reserva Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1519,'Podere Salicutti Brunello di Montalcino Riserva 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1520,'Mapema Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1521,'Penley Estate Reserve Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1522,'Chateau Haut-Bailly 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1523,'Chateau Haut Bergey 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1524,'Penfolds St. Henri Shiraz 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1525,'Azienda Bisceglia Aglianico del Vulture Gudarra 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1526,'Leonetti Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1527,'Charles Krug Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1528,'Maipe Reserve Malbec 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1529,'Silver Oak Napa Valley Cabernet Sauvignon (1.5 Liter Magnum) 2001',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1530,'Fattoria dei Barbi Brunello di Montalcino 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1531,'Chateau Chauvin 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1532,'Chateau La Couspaude 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1533,'Chateau Haut-Brion 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1534,'O''Shaughnessy Howell Mountain Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1535,'Cristiano Van Zeller Rufo 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1536,'Finca Decero Cabernet Sauvignon Remolinos Vineyard 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1537,'Chateau Latour 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1538,'Feather Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1539,'St. Francis Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1540,'Newton Unfiltered Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1541,'Screaming Eagle Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1542,'Neyers Ame Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1543,'Chateau Lynch-Bages 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1544,'Delas Hermitage Les Bessards 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1545,'Costanti Brunello di Montalcino 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1546,'Rubicon at Inglenook CASK Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1547,'Emiliana Coyam (Certified Biodynamic) 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1548,'Luke Donald Collection Claret 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1549,'Merryvale Profile (1.5 Liter Magnum) 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1550,'Dom. d''Andezon Cotes du Rhone Rouge 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1551,'Pio Cesare Il Bricco Barbaresco 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1552,'Chateau Latour 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1553,'Clos des Papes Chateauneuf-du-Pape (1.5 Liter Magnum) 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1554,'Bodega Chakana Estate Selection Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1555,'Verite Le Desir 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1556,'Woodward Canyon Artist Series Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1557,'Clos Pegase Napa Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1558,'Chateau de Beaucastel Hommage Jacques Perrin Chateauneuf-du-Pape (1.5L) 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1559,'Brass Tacks Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1560,'Maybach Family Vineyards Maybach Amoenus 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1561,'Crios de Susana Balbo Syrah-Bonarda 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1562,'Penfolds Kalimna Bin 28 Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1563,'Dom. du Vieux Lazaret Chateauneuf-du-Pape 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1564,'Tardieu-Laurent Gigondas Vielles Vignes 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1565,'Santa Ema Reserve Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1566,'Roth Alexander Valley Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1567,'Spring Valley Frederick Estate Red 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1568,'Two Hands Bella''s Garden Shiraz 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1569,'Les Jamelles Merlot Vins de Pays D''Oc 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1570,'J. Bookwalter Foreshadow Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1571,'Terra Valentine Wurtele Vineyard Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1572,'Saxum Terry Hoage Vineyard 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1573,'Treana Red Blend 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1574,'Raymond Reserve Selection Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1575,'Brazin Old Vine Lodi Zinfandel 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1576,'The Vineyard House Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1577,'J. Runquist 1448 Proprietary Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1578,'Raymond Rutherford Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1579,'Castello dei Rampolla Sammarco 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1580,'Chateau Mouton Rothschild (375ML half-bottle) 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1581,'Chateau de Pez 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1582,'Delas Hermitage Les Bessards 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1583,'Boekenhoutskloof The Chocolate Block Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1584,'Antiyal 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1585,'Brovia Garblet Sue 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1586,'Numanthia Termanthia Toro 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1587,'Andrew Will Winery Ciel du Cheval 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1588,'Septima Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1589,'Casanova di Neri Pietradonice 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1590,'Jack Nicklaus Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1591,'Chateau Gazin 2003',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1592,'Cline Zinfandel 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1593,'Clos Fourtet 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1594,'Beringer Private Reserve Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1595,'W.H. Smith Maritime Vineyard Pinot Noir 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1596,'Mastroberardino Radici Taurasi 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1597,'Shirvington Shiraz 2002',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1598,'Montevertine Le Pergole Torte 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1599,'Zenato Amarone 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1600,'Paul Autard Juline Chateauneuf-du-Pape 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1601,'Flora Springs Trilogy 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1602,'Dancing Bull Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1603,'Elderton Ode To Lorraine 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1604,'Luce Della Vite Luce Toscana 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1605,'Raymond Generations Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1606,'Dom. du Vieux Telegraphe Chateauneuf-du-Pape La Crau 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1607,'Mount Veeder Winery Reserve Red 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1608,'Chateau La Couspaude (1.5 Liter Magnum) 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1609,'Chateau Nenin 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1610,'Blankiet Paradise Hills Vineyard Proprietary Red Wine 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1611,'Valentin Bianchi Famiglia Bianchi Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1612,'Storybook Mountain Mayacamas Range Zinfandel 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1613,'Beringer Private Reserve Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1614,'Aalto 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1615,'Chateau Ducru Beaucaillou 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1616,'Araujo Eisele Vineyard Cabernet Sauvignon 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1617,'Hewitt Vineyard Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1618,'Di Majo Norante Ramitello Rosso 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1619,'Lapostolle Cuvee Alexandre Syrah 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1620,'Chateau Cos d''Estournel Pagodes de Cos 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1621,'Haras Elegance Cabernet Sauvignon 2003',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1622,'Verite La Joie 2002',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1623,'Odfjell Orzada Malbec 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1624,'Chateau Giscours 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1625,'Alban Lorraine Estate Syrah 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1626,'Venta Mazzaron 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1627,'Vine Cliff Napa Valley Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1628,'Altesino Brunello di Montalcino (1.5 Liter Magnum) 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1629,'Domenico Clerico Barolo Ciabot Mentin Ginestra 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1630,'Valdicava Brunello Riserva Madonna del Piano (1.5L Magnum) 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1631,'Beaulieu Vineyard Georges de Latour Private Reserve 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1632,'Chateau Beau-Sejour-Becot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1633,'Chateau Mouton Rothschild 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1634,'Chateau La Couspaude 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1635,'Betz Family Winery Cabernet Sauvignon Pere de Famille 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1636,'Ladera Howell Mountain Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1637,'Chateau Beau-Sejour-Becot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1638,'Palacios Remondo Rioja Propiedad 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1639,'Peter Lehmann Shiraz (1.5 Liter Magnum) 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1640,'Chateau Cos d''Estournel 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1641,'The Lackey Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1642,'Mollydooker Carnival of Love 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1643,'Greg Norman Estates Limestone Coast Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1644,'Langmeil Hangin Snakes Shiraz Viognier 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1645,'Kapcsandy Family Winery State Line Vineyard Proprietary Red Blend 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1646,'Chester-Kidder Red Blend 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1647,'Miner Oakville Cabernet Sauvignon (375ML half-bottle) 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1648,'Verite La Joie 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1649,'Chateau Beau-Sejour-Becot 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1650,'Dom. de Beaurenard Cuvee Boisrenard Chateauneuf-du-Pape 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1651,'Il Poggione Brunello di Montalcino Riserva 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1652,'Mayacamas Cabernet Sauvignon 2000',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1653,'Domaine de Cristia Cuvee Renaissance Chateauneuf-du-Pape 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1654,'Chateau Labegorce (1.5 Liter Magnum) 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1655,'Ciacci Piccolomini d''Aragona Brunello di Montalcino Pianrosso (1.5 Liter) 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1656,'Flora Springs Trilogy 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1657,'Chateau Leoville Las Cases 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1658,'Chateau Trotanoy 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1659,'Neyers Syrah Sonoma Coast Old Lakeville Road 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1660,'Anderson''s Conn Valley Vineyards Eloge (1.5 Liter Magnum) 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1661,'Frescobaldi Castelgiocondo Brunello di Montalcino Riserva 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1662,'Chateau Leoville Poyferre 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1663,'Von Strasser Diamond Mountain Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1664,'Raymond Generations Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1665,'Duckhorn Monitor Ledge Vineyard Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1666,'Ringbolt Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1667,'CARO Amancaya 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1668,'Chateau Certan de May 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1669,'Bodegas Castano Solanera 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1670,'Penfolds RWT Shiraz 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1671,'Raymond Generations Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1672,'Avalon Napa Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1673,'Rombauer Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1674,'Antiyal Kuyen 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1675,'The Vineyard House Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1676,'Terra Valentine Spring Mountain District Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1677,'Sterling Platinum Red Blend 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1678,'Bodegas Ramirez de la Piscina Ramirez de la Piscina Reserva 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1679,'Duckhorn Napa Cabernet Sauvignon (375ML half-bottle) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1680,'Redbank Fighting Flat Shiraz 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1681,'Vina Alicia Paso de Piedra Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1682,'Pride Mountain Vineyards Reserve Claret 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1683,'Lail J. Daniel Cuvee 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1684,'Proprieta Sperino Lessona 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1685,'Domaine Olivier Hillaire Chateauneuf-du-Pape 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1686,'Joseph Phelps Insignia (1.5 Liter Magnum) 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1687,'Conn Creek Herrick Red Blend 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1688,'Middle Sister Mischief Maker Cabernet Sauvignon',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1689,'Atalon Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1690,'Antica Cabernet Sauvignon 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1691,'Schrader RBS To Kalon Vineyard Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1692,'Gordon Brothers Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1693,'Numanthia Termanthia Toro 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1694,'Lapostolle Clos Apalta 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1695,'Bodega Cuarto Domino Chento Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1696,'Girard Artistry 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1697,'Terra d''Oro Zinfandel 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1698,'Finca Allende 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1699,'Gaja Sori San Lorenzo 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1700,'Raymond Rutherford Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1701,'Chateau Pavie (3 Liter) 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1702,'Pine Ridge Stags Leap Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1703,'Vina Cobos Felino Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1704,'Jean-Luc Colombo La Louvee Cornas 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1705,'Rombauer Cabernet Sauvignon (1.5 Liter Magnum) 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1706,'Jaffurs Thompson Vineyard Petite Sirah 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1707,'Andrew Will Winery Two Blondes Vineyard 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1708,'Cayuse En Chamberlin Syrah 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1709,'Rust en Vrede Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1710,'Clos Les Lunelles Cotes de Castillon 2003',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1711,'Sloan Proprietary Red 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1712,'Cliff Lede Poetry Stags Leap District Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1713,'Chateau Charmail Haut-Medoc 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1714,'Bryant Family Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1715,'Chateau Belair-Monange 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1716,'Galardi Terra di Lavoro Roccamonfina 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1717,'Frog''s Leap Rutherford Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1718,'Sloan Asterisk Proprietary Red Blend 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1719,'Chateau Labegorce 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1720,'Argiano Solengo 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1721,'Michele Castellani Cinque Stelle Amarone 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1722,'Owen Roe Ex Umbris Syrah 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1723,'Zenato Amarone (375ML half-bottle) 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1724,'Brovia Rocche 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1725,'Valentin Bianchi Famiglia Bianchi Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1726,'Sloan Proprietary Red 2003',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1727,'Bodega Colome Reserva 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1728,'Sloan Asterisk Proprietary Red Blend 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1729,'Purple Cowboy Tenacious Red Blend 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1730,'Woodward Canyon Old Vines Cabernet Sauvignon 2003',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1731,'Gaja DaGromis Barolo 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1732,'Gaja Barbaresco 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1733,'Renato Ratti Marcenasco Barolo 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1734,'Buehler Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1735,'Tardieu-Laurent Vacqueyras Vielles Vignes 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1736,'Freemark Abbey Bosche Cabernet Sauvignon 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1737,'Mark Ryan Dead Horse Ciel du Cheval Vineyard 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1738,'Silverado Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1739,'Mas Doix Salanques 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1740,'Futo Futo 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1741,'Saxum Rocket Block James Berry Vineyard (1.5L Magnum) 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1742,'Gaja Sori Tildin 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1743,'Gaja Costa Russi 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1744,'Luigi Einaudi Barolo Terlo 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1745,'Fontodi Flaccianello (1.5 Liter Magnum) 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1746,'Les Jamelles Merlot - Vins de Pays D''Oc 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1747,'Chateau Balestard La Tonnelle (1.5 Liter Magnum) 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1748,'Chateau Rollan de By 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1749,'Chateau Sociando-Mallet Haut-Medoc 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1750,'Chateau Pape Clement 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1751,'Vietti Barolo Lazzarito 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1752,'Bodegas Baigorri Crianza 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1753,'Vieille Julienne Chateauneuf-du-Pape 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1754,'Altocedro Reserva Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1755,'Chateau La Mondotte 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1756,'Owen Roe Ex Umbris Syrah 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1757,'Di Majo Norante Ramitello Rosso 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1758,'Sogrape Dao Callabriga 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1759,'Heitz Martha''s Vineyard Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1760,'Chateau Mouton Rothschild 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1761,'Sierra Norte Pasion de Bobal 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1762,'Ghost Pines Red Blend 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1763,'Mollydooker Velvet Glove Shiraz 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1764,'Mayacamas Cabernet Sauvignon 1986',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1765,'Chateau Pavie (1.5 Liter Magnum) 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1766,'Chateau Mouton Rothschild 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1767,'Sierra Cantabria El Bosque 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1768,'Finca El Origen Gran Reserva Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1769,'Chateau Latour (1.5 Liter Magnum) 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1770,'Chateau Saint-Pierre 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1771,'Anderson''s Conn Valley Vineyards Eloge 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1772,'Chateau Haut-Brion (1.5 Liter Magnum) 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1773,'Chateau Haut-Brion 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1774,'Chateau Kirwan 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1775,'Chateau Pichon-Longueville Baron (1.5 Liter Magnum) 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1776,'Umani Ronchi Jorio Montepulciano d''Abruzzo 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1777,'Beaulieu Vineyard Georges de Latour Private Reserve (1.5 Liter) 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1778,'Chateau Leoville Las Cases 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1779,'Anderson''s Conn Valley Vineyards Right Bank Proprietary Red Blend 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1780,'Torbreck Les Amis 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1781,'Ciacci Piccolomini d''Aragona Brunello di Montalcino Pianrosso 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1782,'Chateau La Mission Haut-Brion 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1783,'Damilano Barolo Cannubi 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1784,'Chateau Montrose (1.5 Liter Magnum) 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1785,'Brancaia Chianti Classico 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1786,'Castello dei Rampolla d''Alceo 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1787,'Verite La Muse 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1788,'Sequoia Grove Cabernet Sauvignon (1.5 Liter Magnum) 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1789,'Sensual Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1790,'Anderson''s Conn Valley Vineyards Eloge 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1791,'Benjamin Romeo Predicador 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1792,'Chateau Saint-Pierre 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1793,'Ghost Pines Red Blend 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1794,'Gaja Sperss (1.5 Liter Magnum) 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1795,'Turnbull Old Bull Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1796,'Peter Lehmann Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1797,'Chateau Balestard La Tonnelle 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1798,'Chateau Clos L''Eglise Cotes de Castillon 2003',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1799,'Chateau Hosanna 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1800,'Anderson''s Conn Valley Vineyards Eloge (1.5 Liter Magnum) 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1801,'Gaja Sugarille Brunello di Montalcino 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1802,'Poggio Antico Brunello di Montalcino Altero 2003',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1803,'Hahn Estates Meritage Red Blend 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1804,'Heitz Martha''s Vineyard Cabernet Sauvignon 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1805,'Nickel & Nickel Kelham Vineyard Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1806,'Banfi Brunello di Montalcino 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1807,'Bertani Amarone 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1808,'Maipe Malbec 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1809,'Chateau Haut Condissas 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1810,'Chateau Charmail Haut-Medoc 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1811,'Chateau Canon 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1812,'Etude Napa Valley Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1813,'Agharta Syrah 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1814,'Antica Townsend Vineyard 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1815,'Fuligni Brunello di Montalcino 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1816,'Chateau Pavie 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1817,'Chateau Haut-Brion 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1818,'Goldschmidt Crazy Creek Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1819,'Pine Ridge Napa Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1820,'Anderson''s Conn Valley Vineyards Right Bank Proprietary Red Blend 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1821,'Lewis Cellars Reserve Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1822,'Chateau Ducru Beaucaillou (1.5 Liter Magnum) 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1823,'Vinas del Cenit Venta Mazarron 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1824,'Chateau Olivier (1.5 Liter Magnum) 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1825,'Azienda Bisceglia Aglianico del Vulture Gudarra 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1826,'Alban Lorraine Estate Syrah 2002',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1827,'Sine Qua Non The Duel Grenache 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1828,'Poggio Antico Brunello di Montalcino Altero 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1829,'Mayacamas Cabernet Sauvignon 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1830,'Nickel & Nickel Sullenger Vineyard Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1831,'Luigi Einaudi Barolo Costa Grimaldi 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1832,'Vinos Sin-Ley M5 Monastrell 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1833,'Robert Craig Cellars Howell Mountain Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1834,'Chateau Margaux 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1835,'Staglin Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1836,'Bodegas Carchelo C 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1837,'Frescobaldi Castelgiocondo Brunello di Montalcino Riserva 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1838,'Chateau Cos d''Estournel 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1839,'Root 1 Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1840,'Almaviva (1.5 Liter Magnum) 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1841,'Capanna Brunello di Montalcino Riserva 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1842,'Terra d''Oro Deaver Ranch Old Vine Zinfandel 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1843,'Penfolds Bin 389 Cabernet-Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1844,'Penfolds Bin 407 Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1845,'Duckhorn Napa Cabernet Sauvignon (1.5 Liter Magnum) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1846,'Mayacamas Cabernet Sauvignon 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1847,'Altesino Brunello di Montalcino Riserva 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1848,'Ladera Howell Mountain Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1849,'Chateau La Fleur de Gay 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1850,'Castello di Monsanto Chianti Classico Riserva (1.5 Liter Magnum) 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1851,'Chateau Lynch-Bages (1.5 Liter Magnum) 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1852,'Etude Napa Valley Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1853,'Beringer Howell Mountain Bancroft Ranch Merlot 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1854,'Elvio Cogno Barlolo Bricco Pernice 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1855,'Mapema Primera Zona Malbec 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1856,'Chateau Labegorce Zede (1.5 Liter Magnum) 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1857,'Chateau Lynch Moussas 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1858,'Concha y Toro Marques de Casa Concha Carmenere 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1859,'Tommasi Amarone 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1860,'Gaja Rennina Brunello di Montalcino 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1861,'DeLille D2 Estate Red 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1862,'Tablas Creek Cotes de Tablas Rouge 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1863,'Seghesio Omaggio 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1864,'Poggio Il Castellare Brunello di Montalcino 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1865,'Chateau Canon La Gaffeliere 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1866,'Chateau Patache d''Aux Medoc Cuvee Flora 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1867,'Frescobaldi Tenuta di Castiglioni 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1868,'Chateau Sainte Colombe Cotes de Castillon 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1869,'Ravenswood Pickberry Vineyards 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1870,'Luciano Sandrone Barolo Cannubi Boschis 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1871,'Fabre Montmayou Reserva Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1872,'Hanna Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1873,'Luciano Sandrone Barolo Le Vigne 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1874,'Chateau Desmirail 2003',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1875,'Orma Toscana 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1876,'Maipe Reserve Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1877,'Vinos Sin-Ley VSL Garnacha Madrid 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1878,'Gerard Bertrand Cigalus 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1879,'Chateau de Pez 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1880,'Chateau LaTour Martillac 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1881,'Chateau Colombier Monpelou 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1882,'Clos Les Lunelles Cotes de Castillon 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1883,'Chateau Ste. Michelle Cold Creek Vineyard Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1884,'Rene Boulay Chateauneuf-du-Pape 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1885,'Hall Napa Valley Cabernet Sauvignon (375ML half-bottle) 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1886,'Lyeth Red Meritage 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1887,'Chateau Haut Bergey 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1888,'Cousino Macul Finis Terrae 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1889,'Chateau Croizet Bages 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1890,'Saxum Paderewski Vineyard 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1891,'Sorin Cotes de Provence Tradition Red 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1892,'Dominio de Tares Bembibre 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1893,'Cuvaison Mount Veeder Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1894,'Mayacamas Cabernet Sauvignon 1989',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1895,'Bolla Amarone 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1896,'Anderson''s Conn Valley Vineyards Right Bank Proprietary Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1897,'Charles Smith King Coal Stoneridge Vineyard 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1898,'DeLille Chaleur Estate Red 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1899,'Bodegas Triton Mencia 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1900,'Three Rivers River''s Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1901,'Hartwell Stags Leap District Cabernet Sauvignon 2003',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1902,'Gordon Brothers Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1903,'Arrowood Saralee''s Vineyard Syrah 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1904,'Saggi Red Blend 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1905,'Rombauer Cabernet Sauvignon (375ML half-bottle) 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1906,'Gnarly Head Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1907,'Lisini Brunello di Montalcino 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1908,'Catena Alta Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1909,'Santa Carolina Reserva de Familia Carmenere 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1910,'Le Macchiole Bolgheri Rosso 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1911,'Valentin Bianchi Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1912,'Joseph Carr Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1913,'Qupe Syrah Bien Nacido Hillside Estate Vineyard 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1914,'Moone-Tsai Cabernet Sauvignon 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1915,'Enrique Foster Reserva Malbec 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1916,'Flowers Perennial Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1917,'Just Joshin Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1918,'Sogrape Callabriga Alentejo 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1919,'Chateau Serame Corbieres 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1920,'Maculan Brentino 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1921,'Ravenswood Lodi Zinfandel 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1922,'Ruffino Riserva Ducale Oro Chianti Classico Riserva 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1923,'Maycas del Limari Syrah 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1924,'Valentin Bianchi Famiglia Bianchi Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1925,'Ravenswood Napa Valley Old Vine Zinfandel 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1926,'Ridge East Bench Zinfandel 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1927,'Ch. Fortia Chateauneuf-du-Pape Cuvee du Baron 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1928,'Wente Charles Wetmore Reserve Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1929,'CADE Estate Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1930,'Frescobaldi Montesodi Chianti Rufina 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1931,'Hanna Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1932,'Newton Unfiltered Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1933,'Groth Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1934,'Mayacamas Cabernet Sauvignon 1995',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1935,'Ridge Geyserville (375ML half-bottle) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1936,'Herb Lamb HL Vineyards Cabernet Sauvignon 2000',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1937,'Jaffurs Santa Barbara Syrah 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1938,'Proprieta Sperino Costa della Sesia Uvaggio 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1939,'Atlas Peak Napa Valley Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1940,'Montes Alpha Series Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1941,'Freemark Abbey Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1942,'Two Hands Samantha''s Garden Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1943,'Arcanum Arcanum 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1944,'Castellare I Sodi S. Niccolo 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1945,'Les Forts de Latour (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1946,'Leonetti Reserve 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1947,'Frescobaldi Castelgiocondo Brunello di Montalcino 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1948,'Imprimata Proprietary Red 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1949,'Caparzo Brunello di Montalcino 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1950,'Antinori Pian Delle Vigne Brunello Di Montalcino 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1951,'Errazuriz Max Reserva Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1952,'Achaval-Ferrer Finca Mirador Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1953,'Chateau Lafite-Rothschild (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1954,'Croix de Labrie 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1955,'Herb Lamb HL Vineyards Cabernet Sauvignon 2002',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1956,'Lewis Cellars Reserve Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1957,'Martin Ray Sonoma Mountain Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1958,'Clos Fourtet (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1959,'Gaja Sugarille Brunello di Montalcino 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1960,'Mas Doix Salanques 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1961,'Louis Jadot Gevrey-Chambertin 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1962,'Clos Fourtet 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1963,'Dancing Bull Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1964,'Crocker & Starr Cabernet Sauvignon Stone Place 2003',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1965,'Saxum Booker Vineyard (1.5 Liter Magnum) 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1966,'Sine Qua Non Five Shooter Grenache 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1967,'Gaja Ca''Marcanda Magari 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1968,'Chateau Pavie 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1969,'Telmo Rodriguez Altos de Lanzaga Rioja 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1970,'Nickel & Nickel Quarry Vineyard Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1971,'M. Marengo Barolo Vecchia Vigna Brunate (1.5 Liter Magnum) 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1972,'Chateau Gazin (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1973,'Chateau Lynch-Bages Echo de (Futures Pre-sale) 2011',0,'47% Cabernet Sauvignon, 41% Merlot, 12% Cabernet Franc','Red',0,0); INSERT INTO "Wine" VALUES(1974,'Silverado Cabernet Sauvignon (375ML half-bottle) 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1975,'Vietti Barolo Rocche 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1976,'Salvioni Brunello di Montalcino 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1977,'Saxum James Berry Vineyard (1.5 Liter Magnum) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1978,'Bodegas Ateca Atteca 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1979,'Muga Reserva (375ML half-bottle) 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1980,'Gerard Bertrand Cigalus 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1981,'Errazuriz Don Maximiano Founder''s Reserva 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1982,'Montevertine Rosso di Toscana 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1983,'Silver Oak Napa Valley Cabernet Sauvignon 1996',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1984,'Robert Biale Vineyards Varozza Vineyard Zinfandel 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1985,'Verite Le Desir 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1986,'Saxum Paderewski Vineyard (1.5 Liter Magnum) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1987,'StoneCap Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1988,'Crios de Susana Balbo Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1989,'Benjamin Romeo Predicador 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1990,'Craneford Alysson Parsons Shiraz 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1991,'Chateau Ausone (Futures Pre-sale) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1992,'Montes Alpha M 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1993,'Ornellaia (1.5 Liter Magnum) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1994,'Herb Lamb E II Proprietary Red Blend 2002',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1995,'Vinas del Cenit Aleo 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1996,'Lapostolle Cuvee Alexandre Syrah 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1997,'Muga Prado Enea 2000',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1998,'Chateau Smith Haut Lafitte 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(1999,'Argiano Non Confunditur 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2000,'Paitin Barbaresco Sori Paitin 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2001,'Booker Vineyard Remnant 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2002,'Saxum James Berry Vineyard Bone Rock (1.5 Liter Magnum) 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2003,'Chateau Faugeres 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2004,'Revana St. Helena Cabernet Sauvignon 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2005,'Conn Creek Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2006,'Altesino Brunello di Montalcino (3 Liter) 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2007,'Greenock Creek Roennfeldt Road Shiraz 2001',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2008,'Jacob''s Creek Centenary Hill Shiraz 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2009,'M. Marengo Barolo Vecchia Vigna Brunate 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2010,'Vietti Barolo Lazzarito 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2011,'Penfolds Bin 707 Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2012,'Chateau de Fieuzal 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2013,'Chateau Ducru Beaucaillou (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2014,'Hewitt Vineyard Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2015,'Damilano Barolo Cannubi 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2016,'Sebastiani Sonoma County Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2017,'L''Aventure Cote A Cote 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2018,'Vieille Julienne Chateauneuf-du-Pape Les Trois Sources 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2019,'Damilano Barolo Lecinquevigne 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2020,'Antica Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2021,'Tardieu-Laurent Les Becs Fins Cotes du Rhone 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2022,'Almaviva 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2023,'Round Pond Estate Rutherford Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2024,'Adega Pena das Donas Ribeira Sacra Verdes Matas Mencia 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2025,'Santa Rita Casa Real Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2026,'Saxum Broken Stones Paso Robles (1.5 Liter Magnum) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2027,'Martinelli Jackass Vineyard Zinfandel 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2028,'Durigutti Bonarda 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2029,'Sloan Proprietary Red 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2030,'Santa Rita Casa Real Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2031,'L''Aventure Estate Cuvee 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2032,'Las Rocas Garnacha Vinas Viejas 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2033,'Silver Oak Napa Valley Cabernet Sauvignon (6 Liter) 1999',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2034,'Irony Napa Valley Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2035,'Saxum Booker Vineyard 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2036,'Chateau Branaire-Ducru (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2037,'Chateau Valandraud 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2038,'Robert Biale Vineyards R.W. Moore Vineyard Zinfandel 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2039,'Twenty Bench Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2040,'Ornellaia (3 Liter Magnum) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2041,'Castello di Bossi Corbaia 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2042,'Herb Lamb HL Vineyards Cabernet Sauvignon 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2043,'Sequoia Grove Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2044,'Chateau Certan de May (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2045,'d''Arenberg The Ironstone Pressings 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2046,'Episode 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2047,'House Of Mandela Royal Reserve Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2048,'Futo Futo O.V. 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2049,'Chateau La Mission Haut-Brion (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2050,'Jack Nicklaus Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2051,'Chateau Trotanoy 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2052,'Chateau Gloria (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2053,'Azienda Bisceglia Aglianico del Vulture Gudarra 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2054,'Chateau Larcis-Ducasse (3 Liter) 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2055,'Chateau Palmer Alter Ego de Palmer (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2056,'Red Car Boxcar Syrah 2002',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2057,'Chateau Bellevue-Mondotte (Futures Pre-sale) 2011',0,'Châteaux Bellevue is barrel-aged for six months on its lees (100% new oak) for a total of approximately 24 months. Final blending takes place just before bottling, and the wine is neither fined nor filtered.','Red',0,0); INSERT INTO "Wine" VALUES(2058,'Chateau Lynch-Bages (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2059,'Penfolds Grange (1.5 Liter Magnum) 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2060,'Le Macchiole Bolgheri Rosso 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2061,'Chateau Monbousquet (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2062,'Chateau Saint-Pierre (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2063,'Honig Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2064,'Sine Qua Non Cumulus Vineyard Next of Kyn (1.5L Magnum) 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2065,'Fox Creek Reserve Shiraz 1998',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2066,'Chateau Palmer 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2067,'Pride Mountain Vineyards Syrah 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2068,'J.L. Chave St. Joseph 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2069,'Vieille Julienne Chateauneuf-du-Pape Les Trois Sources (1.5L) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2070,'Chateau Haut-Bages-Liberal (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2071,'Herb Lamb HL Vineyards Cabernet Sauvignon 2001',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2072,'Doubleback Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2073,'Gaja Rennina Brunello di Montalcino 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2074,'Two Hands Ares Shiraz 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2075,'Pahlmeyer Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2076,'Robert Biale Vineyards Thomann Station Petite Sirah 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2077,'Chapoutier La Sizeranne Hermitage 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2078,'Pine Ridge Stags Leap Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2079,'Glenelly Grand Vin de Glenelly 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2080,'Glaetzer Amon Ra Shiraz 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2081,'Saxum Broken Stones Paso Robles 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2082,'Chateau Duhart-Milon-Rothschild (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2083,'Beringer Napa Valley Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2084,'Chateau Leoville Barton (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2085,'Januik Winery Columbia Valley Red 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2086,'d''Arenberg The Ironstone Pressings 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2087,'Casanova di Neri Pietradonice 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2088,'Chateau Lafleur (Futures Pre-sale) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2089,'Yalumba Y Series Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2090,'Felsina Chianti Classico Riserva Rancia 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2091,'La Spinetta Barbaresco Valeirano 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2092,'Sine Qua Non The Duel Syrah 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2093,'Caparzo Brunello di Montalcino 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2094,'Episode 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2095,'Chateau Margaux Pavillon Rouge (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2096,'Rhys Horseshoe Vineyard Syrah 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2097,'Pine Ridge Tessitura 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2098,'CARO 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2099,'Tensley Syrah OGT (1.5 Liter Magnum) 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2100,'Saxum Booker Vineyard (1.5 Liter Magnum) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2101,'St. Francis Old Vines Zinfandel 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2102,'Chateau Charmail Haut-Medoc (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2103,'Castello di Querceto Chianti Classico Riserva 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2104,'Ch. Julien Black Nova Cabernet Sauvignon 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2105,'Tensley Syrah BMT (1.5 Liter Magnum) 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2106,'Sine Qua Non Five Shooter Syrah 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2107,'Dom. La Garrigue Vacqueyras 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2108,'Conn Creek Anthology 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2109,'Chateau Haut-Brion (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2110,'Belasco de Baquedano AR Guentota Malbec 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2111,'Chateau Malartic-Lagraviere (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2112,'Langmeil The Blacksmith Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2113,'Treana Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2114,'Chateau Calon-Segur (Futures Pre-Sale) 2011',0,'Chateau Calon-Segur 2011 vintage is a blend of 78% Cabernet Sauvignon, 20% Merlot and 2% Petit Verdot.','Red',0,0); INSERT INTO "Wine" VALUES(2115,'Chateau Leoville Las Cases (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2116,'Mapema Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2117,'Herb Lamb HL Vineyards Cabernet Sauvignon 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2118,'Arcanum Valadorna 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2119,'Falesco Vitiano Rosso 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2120,'Domaine de Chevalier (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2121,'Chateau La Tour Carnet Haut Medoc 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2122,'Chateau Lafon-Rochet (Futures Pre-sale) 2011',0,'Chateau Lafon-Rochet has smooth tannins, beautiful balance, a silky texture, and is altogether sensual. Just as grandma''s old apple tree at the bottom of the garden has tastier apples, grapes from old vines product wine with more flavor and concentration. Although they produce less, their fruit reflects the terroir more faithfully. Lafron-Rochet is both simple and complex, with black fruit aromas in most vintages. It exemplifies a smoothness and expression unique to Saint-Estephe, as well as a certain warmth and elegant roundness due to the Merlot grape.','Red',0,0); INSERT INTO "Wine" VALUES(2123,'Schrader CCS Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2124,'DeLoach Russian River Zinfandel 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2125,'Torres Celeste 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2126,'Torres Mas La Plana Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2127,'CADE Howell Mountain Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2128,'Robert Biale Vineyards Napa Ranches Zinfandel 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2129,'Montevertine Le Pergole Torte 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2130,'Vina Cobos Felino Malbec 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2131,'Sequoia Grove Cambium Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2132,'Benjamin Romeo Contador 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2133,'Nickel & Nickel C.C. Ranch Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2134,'Merus Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2135,'Badia a Coltibuono Sangioveto 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2136,'Clos du Val Stags Leap District Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2137,'Bogle Petite Sirah 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2138,'Chateau La Tour Carnet Haut Medoc (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2139,'J. Bookwalter Foreshadow Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2140,'Bodegas Castano Solanera 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2141,'Domenico Clerico Barolo Ciabot Mentin Ginestra (1.5 Liter Magnum) 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2142,'Penfolds Grange 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2143,'Arrowood Saralee''s Vineyard Syrah 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2144,'Robert Biale Vineyards Rocky Ridge Vineyard Zinfandel 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2145,'Francis Ford Coppola Diamond Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2146,'Melka Wines Metisse Jumping Goat Vineyard 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2147,'Delas St. Joseph St. Epine 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2148,'Maipe Reserve Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2149,'Duckhorn Howell Mountain Red Wine 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2150,'Chateau Gruaud Larose (Futures Pre-sale) 2011',0,'59% Cabernet Sauvignon, 28% Merlot, 13% Cabernet Franc','Red',0,0); INSERT INTO "Wine" VALUES(2151,'Chateau Prieure-Lichine (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2152,'Northstar Columbia Valley Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2153,'Langmeil Valley Floor Shiraz 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2154,'Pine Ridge Onyx 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2155,'Jack Nicklaus Golden Bear Reserve (1.5 Liter Magnum) 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2156,'Chateau Faugeres (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2157,'Fisher Vineyards Mountain Estate Cabernet Sauvignon 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2158,'Carruades de Lafite 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2159,'Abreu Vineyard Cappella 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2160,'Altesino Montosoli Brunello di Montalcino (3 Liter) 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2161,'Chateau Palmer (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2162,'Chateau Mouton Rothschild (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2163,'Chateau Haut-Bailly (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2164,'Herb Lamb HL Vineyards Cabernet Sauvignon 1999',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2165,'Fisher Vineyards Mountain Estate Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2166,'Continuum 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2167,'Ridge Geyserville (375ML half-bottle) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2168,'Quilceda Creek Cabernet Sauvignon (1.5L Magnum) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2169,'Screaming Eagle Cabernet Sauvignon 1992',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2170,'Chateau de Fieuzal (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2171,'Telmo Rodriguez Altos de Lanzaga Rioja 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2172,'Martino Old Vine Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2173,'Quivira Dry Creek Valley Zinfandel 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2174,'Chateau Smith Haut Lafitte (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2175,'Chateau Fombrauge 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2176,'Villadoria Barolo 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2177,'Avalon Napa Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2178,'Chateau Pichon-Longueville-Comtesse de Lalande (Futures Pre-sale) 2011',0,'<b>The 1990 vintage of this wine was ranked #6 on the <i>Wine Spectator''s</i> Top 10 Wines of 1993</b><p>','Red',0,0); INSERT INTO "Wine" VALUES(2179,'Chateau Chauvin 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2180,'Robert Biale Vineyards Grande Vineyard Zinfandel 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2181,'Chateau Gloria 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2182,'Yalumba Y Series Cabernet Sauvignon 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2183,'Podere Salicutti Brunello di Montalcino Piaggione 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2184,'Pine Ridge Onyx 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2185,'Trinchero Haystack Vineyard Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2186,'Luke Donald Collection Claret 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2187,'Chateau Montrose (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2188,'Chateau Angelus (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2189,'Chateau Haut Bergey (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2190,'Chateau Magrez Fombrauge (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2191,'Gallo Signature Series Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2192,'Chateau Pontet-Canet (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2193,'Pine Ridge Onyx 2003',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2194,'Antiyal 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2195,'Sine Qua Non Cumulus Vineyard Next of Kyn 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2196,'Lapostolle Clos Apalta 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2197,'Dry Creek Vineyard Cabernet Sauvignon (375ML half-bottle) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2198,'Vietti Barolo Brunate 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2199,'Innocent Bystander Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2200,'Bouchard Aine & Fils Bourgogne Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2201,'Mirassou Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2202,'RouteStock Route 99W Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2203,'Duboeuf Moulin-a-Vent 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2204,'Cono Sur Bicycle Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2205,'Smoking Loon Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2206,'Jam Jar Sweet Shiraz 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2207,'A to Z Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2208,'Escarpment Over the Edge Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2209,'Cloudline Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2210,'Valle Reale Vigne Nuove Montepulciano d''Abruzzo 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2211,'Adelsheim Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2212,'Henry Fessy Fleurie 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2213,'Tortoise Creek Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2214,'Castle Rock Monterey Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2215,'Jam Jar Sweet Shiraz 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2216,'Joel Gott Zinfandel 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2217,'Tablas Creek Patelin de Tablas Rouge 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2218,'Cuvaison Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2219,'Delas Cotes du Ventoux 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2220,'Benton Lane Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2221,'Fattoria del Cerro Chianti Colli Senesi 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2222,'Duboeuf Chiroubles 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2223,'Duboeuf Beaujolais Villages 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2224,'Louis Bernard Cotes du Rhone Villages 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2225,'Recanati Yasmin Red Blend 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2226,'Castle Rock Monterey Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2227,'Cune Vina Real Crianza 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2228,'Sebastiani Sonoma Coast Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2229,'Mirassou Pinot Noir 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2230,'Sierra Cantabria Rioja Tinto 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2231,'Lamadrid Bonarda 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2232,'La Posta Glorieta Vineyard Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2233,'Louis Bernard Cotes du Rhone Villages 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2234,'Louis Bernard Cotes du Rhone Villages 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2235,'Chanson Bourgogne Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2236,'Duboeuf Beaujolais Villages 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2237,'RouteStock Route 99W Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2238,'Telmo Rodriguez Ribera del Duero Gazur 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2239,'JCB N°22 Pinot Noir 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2240,'Henry Fessy Fleurie 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2241,'Castello di Verrazzano Rosso 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2242,'Borgo Magredo Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2243,'Marc Bredif Chinon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2244,'Amberhill Secret Red Blend 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2245,'Domaine Collin Bourisset Dom. des Hospices Civils de Lyon Village 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2246,'Duboeuf Moulin-a-Vent 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2247,'Cuvaison Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2248,'Vidal-Fleury Cotes-du-Rhone Rose 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2249,'Antinori Villa Toscana 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2250,'Concha y Toro Marques de Casa Concha Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2251,'Liberty School Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2252,'Zuccardi Serie A Bonarda 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2253,'14 Hands Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2254,'Tilia Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2255,'Castle Rock Columbia Valley Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2256,'Angove Family Winemakers Nine Vines Shiraz Viognier 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2257,'Belle Glos Meiomi Pinot Noir 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2258,'Cameron Hughes Lot 337 Meritage 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2259,'Tilia Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2260,'Jordan Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2261,'Conundrum Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2262,'Jim Barry The Lodge Hill Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2263,'Columbia Crest Two Vines Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2264,'Chehalem 3 Vineyard Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2265,'Cusumano Nero d''Avola 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2266,'Delas St. Esprit Cotes-du-Rhone Rouge 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2267,'Flowers Sea View Ridge Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2268,'Waterbrook Winery Reserve Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2269,'Fattoria del Cerro Vino Nobile di Montepulciano 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2270,'Etude Carneros Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2271,'James Oatley Tic Tok Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2272,'Monte Antico Rosso 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2273,'Dry Creek Vineyard Heritage Zinfandel 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2274,'Tilia Merlot 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2275,'Razor''s Edge Shiraz 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2276,'Belle Glos Las Alturas Vineyard Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2277,'Parducci Small Lot Blend Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2278,'Salentein Reserve Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2279,'Falesco Merlot Umbria 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2280,'Penley Estate Phoenix Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2281,'Heritance Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2282,'Villa Pozzi Nero d''Avola 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2283,'Schug Sonoma Coast Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2284,'Allegrini Palazzo della Torre 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2285,'DeLoach Russian River Pinot Noir (375ML half-bottle) 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2286,'Col d''Orcia Brunello di Montalcino 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2287,'Montes Twins Red Blend 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2288,'Antinori Santa Cristina Sangiovese 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2289,'Irony Monterey Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2290,'Clarendon Hills Brookman Vineyard Cabernet Sauvignon 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2291,'Hamilton Russell Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2292,'King Estate Acrobat Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2293,'Marchesi di Barolo Maraia Barbera di Monferrato 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2294,'Vina Zaco 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2295,'Punto Final Malbec Classico 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2296,'Peter Lehmann Art Series Shiraz-Cabernet 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2297,'Montebuena Rioja 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2298,'Ken Forrester Petit Cabernet Sauvignon/Merlot 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2299,'Zolo Reserva Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2300,'Domaine Clavel Chusclan Cordelia 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2301,'Milbrandt Traditions Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2302,'Domaine Serene Evenstad Reserve Pinot Noir 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2303,'Tablas Creek Esprit de Beaucastel Rouge 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2304,'Folonari Chianti 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2305,'Decoy Red 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2306,'Terrabianca Campaccio 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2307,'Tormaresca Neprica 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2308,'Kings Ridge Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2309,'Duckhorn Napa Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2310,'Bodega Colome Amalaya 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2311,'Belle Glos Clark & Telephone Vineyard Pinot Noir 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2312,'Can Blau Celler Can Blau 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2313,'Evodia Old Vine Grenache 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2314,'La Maialina Chianti Classico Riserva 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2315,'Hogue Genesis Syrah 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2316,'Duboeuf Moulin-a-Vent Domaine des Rosiers 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2317,'Edmeades Mendocino Zinfandel 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2318,'Decoy Sonoma Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2319,'Bodegas Beronia Rioja Gran Reserva 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2320,'Roco Willamette Valley Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2321,'Il Poggione Rosso di Montalcino 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2322,'Chateau La Croix De Gay 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2323,'Dierberg Santa Maria Valley Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2324,'Excelsior Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2325,'Bodegas Castano Monastrell 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2326,'Menage a Trois Red Blend 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2327,'Cline Cashmere 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2328,'Elvis Presley Wine Cellars Jailhouse Rock Merlot 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2329,'Torbreck Woodcutters Shiraz 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2330,'Buena Vista The Count Red Blend 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2331,'d''Arenberg The Custodian Grenache 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2332,'Poggio Scalette Il Carbonaione 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2333,'Chateau la Vieille Cure 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2334,'Pelissero Barbera d''Alba Piani 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2335,'Bogle Old Vines Zinfandel 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2336,'Finca Decero Malbec Remolinos Vineyard 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2337,'Napa Cellars Zinfandel 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2338,'Tikal Natural Organic Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2339,'Sequana Sundawg Ridge Vineyard Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2340,'Cherry Pie Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2341,'Bodegas Ramon Bilbao Limited Edition Rioja 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2342,'Catena Malbec (375ML half-bottle) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2343,'Villa Pozzi Nero d''Avola 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2344,'Robert Oatley Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2345,'Almira Los Dos Grenache Syrah 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2346,'Duboeuf Brouilly 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2347,'Donum Carneros Estate Grown Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2348,'Josh Cellars Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2349,'Hahn Estates California Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2350,'Borsao Berola 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2351,'Descendientes de Jose Palacios Petalos 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2352,'Luca Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2353,'Decoy Sonoma Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2354,'Dona Paula Mendoza Estate Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2355,'Joel Gott Blend No. 815 Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2356,'Black Stallion Winery Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2357,'Angeline Reserve Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2358,'Chateau La Fleur Cardinale 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2359,'Columbia Crest H3 Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2360,'Beringer Knights Valley Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2361,'Whitehall Lane Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2362,'Ferrari-Carano Siena 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2363,'Silverado Mt. George Merlot 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2364,'Raymond Field Blend R Collection 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2365,'The Show Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2366,'Firestone Santa Ynez Valley Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2367,'St Hallett Blackwell Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2368,'Markham Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2369,'Zaccagnini Il Vino Dal Tralcetto Montepulciano d''Abruzzo 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2370,'Taltarni T Series Shiraz 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2371,'Marimar Estate Dona Margarita Vineyard Mas Cavalls Pinot Noir 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2372,'Perrin et Fils Reserve Cotes du Rhone Rouge 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2373,'Chateau Hosanna 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2374,'Artezin Mendocino Zinfandel 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2375,'Chateau Ste. Michelle Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2376,'Tilia Malbec 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2377,'Veramonte Pinot Noir Reserva 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2378,'The Crossings Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2379,'Alta Vista Classic Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2380,'Three Rivers River''s Red Blend 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2381,'Banfi Centine Toscana 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2382,'Frog''s Leap Napa Valley Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2383,'Mazzoni Toscana Rosso 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2384,'Argyle Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2385,'Las Rocas Red Blend 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2386,'Montes Alpha Series Carmenere 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2387,'St. Francis RED SPLASH 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2388,'Antinori Chianti Classico Riserva 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2389,'Black Chook Sparkling Shiraz',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2390,'Chateau La Fleur Cardinale 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2391,'Chateau Bernadotte 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2392,'ONEHOPE California Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2393,'Rombauer Merlot 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2394,'Layer Cake Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2395,'14 Hands Hot to Trot Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2396,'Guigal Gigondas Rouge 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2397,'Valdicava Brunello di Montalcino 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2398,'Angove Family Winemakers Red Belly Black Shiraz 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2399,'Durigutti Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2400,'Mulderbosch Faithful Hound 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2401,'Chateau Puynormond Montagne de St Emilion 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2402,'St Hallett Faith Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2403,'Wines That Rock Rolling Stones Forty Licks Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2404,'Layer Cake Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2405,'Chateau de Beaucastel Chateauneuf-du-Pape 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2406,'Oxford Landing Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2407,'Cakebread Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2408,'Banfi Chianti Superiore 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2409,'Bodegas Jimenez Landi Sotorrondero 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2410,'Paraduxx Z Red Blend 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2411,'Tilia Bonarda 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2412,'Renato Ratti Barbera d''Asti 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2413,'Chateau Hosanna 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2414,'Rodney Strong Estate Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2415,'Chateau Beychevelle 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2416,'Trumpeter Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2417,'Beringer California Collection Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2418,'Fonterutoli Chianti Classico 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2419,'Castello di Volpaia Chianti Classico Riserva 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2420,'Red Diamond Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2421,'Concha y Toro Casillero Del Diablo Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2422,'Michele Chiarlo Barbera d''Asti 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2423,'Cycles Gladiator Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2424,'Buena Vista Carneros Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2425,'Flowers Sonoma Coast Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2426,'Concannon Selected Vineyards Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2427,'DeLoach Heritage Reserve Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2428,'Cupcake Vineyards Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2429,'Bodegas Lan Rioja Reserva 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2430,'Ruffino Ducale Chianti Classico Riserva 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2431,'Willamette Valley Vineyards Whole Cluster Pinot Noir 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2432,'Mark West California Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2433,'Clarendon Hills Brookman Vineyard Syrah 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2434,'Bodega Norton Malbec Reserva 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2435,'Westrey Justice Vineyard Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2436,'Tasca d''Almerita Lamuri Nero d''Avola Sicilia 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2437,'Zinfandelic Amador County Old Vine Zinfandel 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2438,'Zuccardi Q Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2439,'Castello di Querceto Chianti Classico 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2440,'Falernia Carmenere Reserva 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2441,'Los Vascos Grande Reserve Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2442,'Hartford Court Russian River Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2443,'Raymond R Collection Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2444,'Henry Fessy Morgon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2445,'Di Majo Norante Sangiovese 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2446,'Raptor Ridge Willamette Valley Reserve Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2447,'Goldeneye Anderson Valley Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2448,'Alamos Malbec 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2449,'Louis Jadot Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2450,'d''Arenberg Stump Jump Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2451,'Penfolds Koonunga Hill Shiraz 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2452,'Hawk Crest Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2453,'Rombauer Zinfandel 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2454,'Primus Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2455,'Belasco de Baquedano Llama Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2456,'Dom. Lafage Bastide Miraflors Vieilles Vignes 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2457,'DeLoach Russian River Estate Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2458,'Big House Red Blend 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2459,'Atalaya La Atalaya 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2460,'Argyle Nuthouse Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2461,'Hello Kitty California Red Wine 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2462,'d''Arenberg Laughing Magpie Shiraz Viognier 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2463,'Fontanafredda Serralunga d''Alba Barolo 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2464,'Au Bon Climat Santa Barbara Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2465,'Duckhorn Napa Merlot (375ML half-bottle) 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2466,'Caricature Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2467,'Carmel Road Monterey Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2468,'John Duval Plexus 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2469,'The Dreaming Tree Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2470,'Feudi di San Gregorio Lacryma Christi Rosso 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2471,'Tenuta di Arceno Chianti Classico Riserva 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2472,'Hess Select Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2473,'Beso de Vino Seleccion 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2474,'Clarendon Hills Brookman Merlot 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2475,'Carletto Ricco Rosso 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2476,'Chateau Bonnet Rouge 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2477,'Duboeuf Julienas Chateau des Capitans 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2478,'Achaval-Ferrer Mendoza Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2479,'Arnaldo Caprai Montefalco Rosso 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2480,'Cupcake Vineyards Merlot 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2481,'Nita 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2482,'Santa Ema Amplus Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2483,'Chateau Lafleur-Gazin 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2484,'Passopisciaro Passopisciaro 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2485,'Twomey Cellars by Silver Oak Merlot 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2486,'Torbreck RunRig 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2487,'Campos Reales La Mancha 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2488,'Francis Ford Coppola Diamond Claret 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2489,'Dona Paula Estate Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2490,'Penley Estate Hyland Shiraz 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2491,'Saint Clair Vicar''s Choice Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2492,'Aia Vecchia Lagone Toscana 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2493,'Castello di Volpaia Chianti Classico 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2494,'Chateau Puy Blanquet 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2495,'Yalumba Y Series Shiraz + Viognier 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2496,'Greg Norman Estates Limestone Coast Cabernet/Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2497,'Achaval-Ferrer Finca Bella Vista Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2498,'Piccini Chianti Classico Riserva 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2499,'Ruffino Chianti 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2500,'Blackbird Vineyards Illustration Proprietary Red (375ML half-bottle) 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2501,'King Estate Signature Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2502,'Brass Tacks Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2503,'La Spinetta Barbera d''Asti Ca Di Pian 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2504,'Pesquera Ribera del Duero Tinto 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2505,'Penfolds Koonunga Hill Shiraz-Cabernet 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2506,'Cupcake Vineyards Red Velvet 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2507,'Colosi Colosi Nero d''Avola 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2508,'Chateau Ste. Michelle Indian Wells Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2509,'Bodegas Izadi Rioja Reserva 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2510,'Twomey Cellars by Silver Oak Anderson Valley Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2511,'Da Vinci Chianti 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2512,'Duboeuf Morgon Domaine des Versauds 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2513,'MacMurray Ranch Central Coast Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2514,'Penner-Ash Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2515,'Mitolo The Jester Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2516,'d''Arenberg d''Arrys Original Shiraz/Grenache 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2517,'Ponzi Willamette Valley Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2518,'Garnet Monterey Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2519,'Haras Estate Carmenere 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2520,'La Maialina Chianti 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2521,'Woop Woop Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2522,'Estancia Reserve Meritage 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2523,'Milbrandt Traditions Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2524,'Yalumba Barossa Patchwork Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2525,'Vignole Chianti Classico 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2526,'Rocca di Frassinello Ornello 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2527,'Santa Ema Reserve Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2528,'Henry''s Drive Shiraz 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2529,'Vega Sindoa El Chaparral Grenache 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2530,'Gerard Bertrand Corbieres 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2531,'Antinori Guado al Tasso 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2532,'Frei Brothers Reserve Russian River Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2533,'Duboeuf Moulin-a-Vent Domaine de la Vigne Romaine 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2534,'Spellbound Petite Sirah 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2535,'Concannon Selected Vineyards Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2536,'Josh Cellars Merlot 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2537,'Regaleali Nero d''Avola 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2538,'Morgan Twelve Clones Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2539,'Duboeuf Fleurie Domaine des Quatre Vents 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2540,'Bodegas Bilbainas Vina Pomal Reserva 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2541,'Beaux Freres Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2542,'Schug Sonoma Coast Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2543,'Rust en Vrede Merlot 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2544,'Matua Valley Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2545,'Schug Heritage Reserve Pinot Noir 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2546,'Ferrari-Carano Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2547,'Lamadrid Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2548,'Justin Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2549,'Kim Crawford Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2550,'Hess 19 Block Cuvee Mt Veeder 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2551,'Paraduxx (1.5 Liter Magnum) 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2552,'Formidable Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2553,'Francis Ford Coppola Diamond Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2554,'Chateau Ste. Michelle Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2555,'Penfolds Thomas Hyland Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2556,'Hamilton Russell Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2557,'Peter Lehmann Layers Red 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2558,'The Crossings Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2559,'Flichman Paisaje de Barrancas Red Blend 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2560,'Luca Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2561,'Buena Vista Sonoma Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2562,'Prelius Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2563,'BearBoat Sonoma Coast Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2564,'Freemark Abbey Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2565,'Terranoble Reserva Carmenere 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2566,'The Seeker Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2567,'Bodega Cuarto Domino Tolentino Winemaker''s Selection Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2568,'Punto Final Malbec Reserva 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2569,'Vidal-Fleury Cotes-du-Rhone 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2570,'Rodney Strong Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2571,'Clos du Caillou Chateauneuf-du-Pape Reserve 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2572,'Swanson Oakville Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2573,'Frescobaldi Castiglioni Chianti 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2574,'Arboleda Carmenere 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2575,'Jean-Luc Colombo Les Fees Brunes Crozes Hermitage 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2576,'Mouton-Cadet Bordeaux Rouge 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2577,'Bodegas Dinastia Vivanco Rioja Seleccion de Familia Crianza 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2578,'Middle Sister Goodie Two Shoes Pinot Noir',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2579,'Behrens & Hitchcock Ode to Picasso Red 1999',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2580,'Finca Sophenia Reserve Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2581,'Duboeuf Morgon Jean Descombes 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2582,'Peter Lehmann Layers Red 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2583,'Columbia Crest Two Vines Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2584,'Boedecker Cellars Stewart Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2585,'Estancia Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2586,'Clos Manou Bordeaux 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2587,'The Show Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2588,'Chateau Ste. Michelle Artist Series Meritage 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2589,'Poggio San Polo Rubio 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2590,'Charles Smith Chateau Smith 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2591,'Chateau Paradis Casseuil Bordeaux Rouge 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2592,'Lapostolle Casa Grand Selection Carmenere 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2593,'Descendientes de Jose Palacios Corullon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2594,'Bravium Volamus Vineyard Pinot Noir (375ML half-bottle) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2595,'Kim Crawford Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2596,'Concha y Toro Terrunyo Carmenere 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2597,'Louis Latour Domaine de Valmoissine Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2598,'Chateau Lagrange 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2599,'Descendientes de Jose Palacios Corullon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2600,'Beyond Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2601,'Cryptic Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2602,'Pillar Box Padthaway Red 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2603,'Punto Final Malbec Reserva 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2604,'Argiolas Costera 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2605,'Chateau Lassegue Les Cadrans de Lassegue St. Emilion 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2606,'Luna Sangiovese 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2607,'Almira Los Dos Grenache Syrah 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2608,'Duckhorn Three Palms Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2609,'Archery Summit Red Hills Estate Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2610,'Primus Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2611,'Sanford Santa Rita Hills Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2612,'Antinori Solaia 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2613,'Renato Ratti Barbera d''Alba 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2614,'Rex Hill Willamette Valley Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2615,'Ladera Sagrada A Portela Mencia 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2616,'Wolf Blass Yellow Label Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2617,'Belle Glos Dairyman Vineyard Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2618,'Milbrandt Traditions Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2619,'Chateau Meyney 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2620,'Chateau Pichon-Longueville-Comtesse de Lalande Reserve de la Comtesse 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2621,'Plantagenet Omrah Shiraz 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2622,'Sartori Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2623,'Clarendon Hills Clarendon Grenache Old Vines 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2624,'St. Francis Merlot 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2625,'Louis Jadot Morgon Ch. des Jacques 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2626,'Stags'' Leap Winery Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2627,'Ruffino Modus 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2628,'Mastroberardino Campania Aglianico 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2629,'Hedges Family Estate CMS Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2630,'Louis Bernard Cotes du Rhone 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2631,'Ponzi Pinot Noir Tavola 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2632,'Yalumba Eden Valley Shiraz + Viognier 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2633,'Domaine Drouhin Oregon Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2634,'BV Century Cellars Merlot 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2635,'Allegrini Valpolicella Classico 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2636,'Quilceda Creek Cabernet Sauvignon 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2637,'Angove Family Winemakers Red Belly Black Shiraz 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2638,'Ken Forrester Petit Cabernet Sauvignon/Merlot 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2639,'ONEHOPE California Merlot 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2640,'Freestone Vineyards by Joseph Phelps Sonoma Coast Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2641,'Ponzi Reserve Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2642,'Yalumba Organic Shiraz 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2643,'Banfi Chianti Classico Riserva 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2644,'Bodegas Carchelo Altico A Syrah 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2645,'Mossback Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2646,'Castello di Terriccio Capannina 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2647,'Catena La Consulta Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2648,'Bodegas Sierra Salinas Puerto Salinas 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2649,'Raymond Reserve Selection Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2650,'Badia a Coltibuono Chianti Classico 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2651,'Bodegas Lan Rioja Crianza 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2652,'Geyser Peak Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2653,'Kenwood Vintage Red Blend 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2654,'Henry Fessy Morgon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2655,'Terrabianca Campaccio (375ML half-bottle) 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2656,'Novelty Hill Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2657,'Edna Valley Vineyard Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2658,'Domaine Serene Yamhill Cuvee Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2659,'Rivera Violante Nero di Troia 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2660,'Feudo Maccari Nero d''Avola 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2661,'Vesevo Beneventano Aglianico 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2662,'Duboeuf Morgon Cote Du Py 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2663,'Chateau Bellevue-Mondotte 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2664,'Outlier Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2665,'Antinori Guado al Tasso 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2666,'Charles Smith Velvet Devil Merlot 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2667,'Chateau La Dominique 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2668,'Guardian Peak Frontier 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2669,'J. Hofstatter Meczan Pinot Nero 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2670,'Kris Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2671,'Greystone Cellars Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2672,'Guenoc Lake County Petite Sirah 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2673,'Atalaya La Atalaya 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2674,'Shea Estate Pinot Noir Shea Vineyard 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2675,'Chateau L''Eglise Clinet 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2676,'Robert Oatley Tempranillo 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2677,'Leonetti Merlot 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2678,'Castellare Chianti Classico 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2679,'Plantagenet Hazard Hill Shiraz 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2680,'Wines That Rock The Police Synchronicity Red Wine Blend 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2681,'Tasca d''Almerita Lamuri Nero d''Avola Sicilia 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2682,'Tablas Creek Esprit de Beaucastel Rouge (375ML half-bottle) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2683,'The Seeker Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2684,'Bibi Graetz Casamatta Rosso 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2685,'Palacios Remondo La Montesa 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2686,'Rodney Strong Rockaway Single Vineyard Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2687,'Palacios Remondo Rioja Vendimia 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2688,'Chateau Brillette Moulis en Medoc 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2689,'Montes Alpha Series Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2690,'Poggiotondo Chianti Superiore 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2691,'Castello di Verrazzano Rosso 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2692,'Dom. Grand Veneur Cotes du Rhone Les Champauvins 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2693,'Bodegas Y Vinedos O. Fournier Urban Uco Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2694,'Donum Russian River Valley Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2695,'Feudo Maccari Grillo 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2696,'Chateau La Fleur de Gay 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2697,'Tangley Oaks Cabernet Sauvignon 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2698,'Talbott Pinot Noir Cuvee RFT Diamond T 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2699,'Renzo Masi Chianti Reserva 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2700,'Tin Roof Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2701,'Conde de Valdemar Rioja Reserva 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2702,'Chateau d''Aussieres Blason d''Aussières AOC Corbières 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2703,'Cheval des Andes 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2704,'Francis Ford Coppola Director''s Cut Zinfandel 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2705,'Lamadrid Bonarda Reserva 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2706,'Columbia Crest Grand Estates Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2707,'Falernia Carmenere Reserva 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2708,'Piattelli Premium Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2709,'CARO Aruma 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2710,'Sierra Cantabria Unica 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2711,'La Gerla Brunello de Montalcino 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2712,'Buena Vista Carneros Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2713,'Susana Balbo Signature Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2714,'Byron Pinot Noir Santa Barbara County 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2715,'Hecht & Bannier Minervois 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2716,'BenMarco Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2717,'Wild Horse Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2718,'Taltarni Pyrenees Shiraz 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2719,'Wines That Rock Rolling Stones Forty Licks Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2720,'Gaja Sito Moresco 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2721,'Elios Mediterranean Red 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2722,'Alamos Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2723,'Elio Grasso Dolcetto d''Alba Dei Grassi 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2724,'Mitolo G.A.M. 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2725,'The Seeker Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2726,'Valle Reale Montepulciano d''Abruzzo 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2727,'Hogue Reserve Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2728,'Middle Sister Rebel Red Blend',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2729,'Tikal Amorio Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2730,'Mr. Riggs The Gaffer Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2731,'Archery Summit Arcus Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2732,'Yering Station Little Yering Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2733,'Provenance Vineyards Rutherford Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2734,'Chateau Brillette Moulis en Medoc (1.5 Liter Magnum) 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2735,'Alamos Cabernet Sauvignon 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2736,'Tablas Creek Esprit de Beaucastel Rouge (1.5 Liter Magnum) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2737,'Capezzana Barco Reale 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2738,'Bodegas Castano Hecula 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2739,'Forefront by Pine Ridge Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2740,'Haras Estate Carmenere 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2741,'Septima Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2742,'Argyle Reserve Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2743,'Langmeil Valley Floor Shiraz 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2744,'Rocca di Frassinello Le Sughere di Frassinello 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2745,'Plantagenet Omrah Shiraz 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2746,'Angove Family Winemakers The Medhyk 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2747,'Tardieu-Laurent Hermitage 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2748,'Firesteed Oregon Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2749,'Luigi Pira Dolcetto d''Alba 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2750,'Outlier Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2751,'Hewitson Miss Harry G.S.M. 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2752,'Ricardo Santos Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2753,'Hartford Court Far Coast Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2754,'Falesco Merlot Umbria 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2755,'Plantagenet Omrah Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2756,'Newton Claret 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2757,'Oxford Landing Merlot 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2758,'House Of Mandela The Thembu Collection Cabernet Sauvignon 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2759,'Beast Wildebeest Red Blend 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2760,'Ernie Els Proprietor''s Blend 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2761,'Hogue Genesis Syrah 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2762,'Pedestal Merlot 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2763,'WillaKenzie Estate Pierre Leon Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2764,'Wairau River Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2765,'Felsina Chianti Classico Riserva 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2766,'Pegasus Bay Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2767,'Kenwood Russian River Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2768,'Marimar Estate Don Miguel Vineyard La Masia Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2769,'Bodega Colome Amalaya 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2770,'Vega Sicilia Unico Gran Reserva Tinto 2000',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2771,'Sokol Blosser Dundee Hills Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2772,'Wairau River Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2773,'Peter Lehmann Eight Songs Shiraz 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2774,'Terlato Syrah 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2775,'Frog''s Leap Napa Valley Cabernet Sauvignon (375ML half-bottle) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2776,'Quilceda Creek Cabernet Sauvignon 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2777,'Santa Ema Selected Terroir Carmenere 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2778,'Guenoc Victorian Claret 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2779,'Wente Sandstone Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2780,'First Drop Mother''s Milk Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2781,'Chapoutier La Bernardine Chateauneuf-du-Pape 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2782,'Shirvington Shiraz 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2783,'Batasiolo Barbera d''Alba Sovrana 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2784,'Hangtime Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2785,'Apaltagua Reserva Malbec 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2786,'Lancaster Sophia''s Hillside Cuvee 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2787,'Mas de la Dame La Gourmande 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2788,'Chateau Cap de Faugeres Cotes de Castillon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2789,'Chateau Mont Redon Cotes-du-Rhone 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2790,'Amberhill Secret Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2791,'Yangarra Estate Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2792,'Luna Lunatic Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2793,'Terrabianca Campaccio 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2794,'Kilikanoon Killerman''s Run Shiraz/Grenache 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2795,'Parducci Small Lot Blend Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2796,'Three Saints Syrah 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2797,'Bernardus Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2798,'Hall Napa Valley Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2799,'La Maialina Chianti 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2800,'Cimicky Trumps Shiraz 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2801,'Pirie Tasmania South Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2802,'Buena Vista Sonoma Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2803,'Iona The Gunnar 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2804,'Sequana Santa Lucia Highlands Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2805,'Penley Estate Hyland Shiraz 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2806,'Neudorf Moutere Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2807,'Eberle Vineyard Selection Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2808,'d''Arenberg Stump Jump Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2809,'promisQous Red Blend',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2810,'Saxum Heart Stone Vineyard 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2811,'L''Ecole 41 Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2812,'Paul Dolan Vineyards Organic Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2813,'Franciscan Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2814,'Bodegas Palacio Especial Reserva 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2815,'Henry Fessy Brouilly 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2816,'Lamadrid Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2817,'High Note Elevated Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2818,'Casanova di Neri Brunello di Montalcino White Label 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2819,'Roger Sabon Chateaneuf-du-Pape Les Olivets 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2820,'Bravium Volamus Vineyard Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2821,'Capcanes Mas Donis Barrica 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2822,'Bravium Thomson Vineyard Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2823,'Vajra Dolcetto d''Alba 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2824,'Dom. Pierre Usseglio et Fils Chateauneuf-du-Pape Tradition 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2825,'Langmeil Three Gardens GSM 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2826,'Oliverhill Red Silk Shiraz 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2827,'Campo Viejo Tempranillo 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2828,'Atalaya La Atalaya 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2829,'Sonoma-Cutrer Pinot Noir 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2830,'Zolo Reserva Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2831,'Yalumba The Signature Cabernet/Shiraz 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2832,'Llai Llai Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2833,'Rombauer Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2834,'Buena Vista Sonoma Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2835,'Tenuta Sette Ponti Crognolo 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2836,'Aubert UV-SL Vineyard Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2837,'Uvaggio Primitivo 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2838,'Tua Rita Syrah 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2839,'d''Arenberg The Ironstone Pressings 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2840,'Numanthia Termes 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2841,'Willamette Valley Vineyards Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2842,'Charles & Charles Red Blend 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2843,'Lake Sonoma Dry Creek Valley Zinfandel 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2844,'Penfolds Koonunga Hill Cabernet-Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2845,'Alexander Valley Vineyards Cyrus (375ML half-bottle) 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2846,'Duboeuf Fleurie Domaine des Quatre Vents 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2847,'Cardinale Red Meritage 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2848,'Faustino VII 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2849,'Fantinel Sant''Helena Pinot Grigio 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2850,'Brancaia Tre 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2851,'Enrique Foster Ique Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2852,'Marques de Caceres Rioja Reserva 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2853,'Benton Lane First Class Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2854,'Raymond R Collection Merlot 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2855,'Castello di Bossi Chianti Classico 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2856,'Dominio de Tares Mencia Baltos 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2857,'Novelty Hill Syrah 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2858,'Antinori Guado al Tasso 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2859,'Jack Nicklaus Private Reserve 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2860,'Concha y Toro Marques de Casa Concha Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2861,'Folie a Deux Alexander Valley Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2862,'Leone de Castris Salice Salentino Riserva 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2863,'Novelty Hill Royal Slope Red Blend 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2864,'Emilio Moro Finca Resalso 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2865,'Chateau de Chantegrive 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2866,'Robert Stemmler Carneros Estate Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2867,'Terrabianca Chianti Classico Riserva Croce 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2868,'High Note Elevated Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2869,'Craggy Range Winery Te Muna Road Vineyard Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2870,'Rust en Vrede Stellenbosch Estate Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2871,'Querciabella Chianti Classico 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2872,'Cardinale Red Meritage 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2873,'Arboleda Syrah 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2874,'Laurel Glen Counterpoint Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2875,'Yealands Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2876,'Masi Passo Doble Red 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2877,'Murphy-Goode Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2878,'Quinta do Crasto Douro Red 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2879,'Poggio San Polo Brunello di Montalcino Riserva 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2880,'Banfi Centine Toscana 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2881,'Robert Stemmler Carneros Estate Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2882,'Santa Rita Medalla Real Carmenere 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2883,'Greg Norman Estates Limestone Coast Shiraz 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2884,'Rancho Zabaco Heritage Vines Zinfandel 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2885,'Napa Cellars Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2886,'Chateau Greysac Medoc 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2887,'Santa Rita Carmenere Reserva 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2888,'Chateau Barde Haut 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2889,'Lapostolle Casa Grand Selection Carmenere 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2890,'Chateau Poujeaux Moulis en Medoc 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2891,'Domaine Du Castel Petit Castel 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2892,'Penfolds Thomas Hyland Shiraz 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2893,'Woodward Canyon Old Vines Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2894,'Chateau L''Evangile 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2895,'Chateau La Gaffeliere 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2896,'Louis Latour Volnay 1er Cru En Chevret 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2897,'Chateau La Nerthe Chateauneuf-du-Pape Rouge 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2898,'Pegasus Bay Pinot Noir 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2899,'Chateau Berliquet (1.5 Liter Magnum) 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2900,'Petrolo Galatrona 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2901,'Woodward Canyon Old Vines Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2902,'Bodegas Filon Calatayud 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2903,'Davis Bynum Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2904,'Luna Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2905,'Wine Spots Carneros Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2906,'Chateau Cos Labory 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2907,'Argiano Brunello di Montalcino 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2908,'Tabali Late Harvest Muscat (375ML half-bottle) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2909,'Chateau Maucaillou Moulis en Medoc 2003',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2910,'Recanati Merlot 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2911,'Paraduxx Z Red Blend 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2912,'Chateau Ste. Michelle Indian Wells Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2913,'Evans Wine Company Nine Stones Barossa Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2914,'Chateau La Commanderie 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2915,'Allegrini Palazzo della Torre 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2916,'Chateau Lusseau 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2917,'DeLoach Van der Kamp Vineyard Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2918,'Mas de la Dame La Gourmande 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2919,'Valentin Bianchi Elsa Malbec 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2920,'Bodega Norton Privada 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2921,'Angove Family Winemakers McLaren Vale Vineyard Select Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2922,'Dutton Goldfield Dutton Ranch Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2923,'Trumpeter Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2924,'Telmo Rodriguez Gaba do Xil Valdeorras Mencia 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2925,'Ruffino Modus 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2926,'Batasiolo Barbera d''Alba Sovrana 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2927,'Antinori Solaia 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2928,'Waterbrook Winery Melange 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2929,'Vina Ventisquero Cabernet Sauvignon Grey Single Block Vineyard 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2930,'Bouchard Aine & Fils Bourgogne Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2931,'The Dreaming Tree Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2932,'Bodegas Ramon Bilbao Crianza 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2933,'Pio Cesare Barbaresco 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2934,'Ksana Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2935,'Markham Merlot 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2936,'Telmo Rodriguez Dehesa Gago 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2937,'Andre Brunel Cotes du Rhone Villages Cuvee Sabrine 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2938,'Cellar Pasanau Ceps Nous Priorat 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2939,'Spy Valley Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2940,'Kosta Browne Sonoma Coast Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2941,'Novelty Hill Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2942,'Guarachi Pinot Noir Sonoma Coast 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2943,'Penfolds Koonunga Hill Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2944,'Carruades de Lafite 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2945,'Domaine Mathieu Coste Coteaux Du Giennois Rouge "Biau" 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2946,'Chateau La Dominique 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2947,'Sequana Sundawg Ridge Vineyard Pinot Noir 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2948,'Mount Eden Vineyards Domaine Eden Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2949,'Cousino Macul Estate Merlot 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2950,'Chateau Pichon-Longueville-Comtesse de Lalande Reserve de la Comtesse 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2951,'Kosta Browne Russian River Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2952,'Don Sancho Londono Cortijo Tinto 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2953,'San Felice Campogiovanni Brunello di Montalcino Il Quercione 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2954,'Ramey Napa Valley Claret 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2955,'Cambria Julia''s Vineyard Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2956,'La Posta Cocina Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2957,'Tenuta la Marchesa Monferrato Rosso 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2958,'Indaba Merlot 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2959,'Chateau Canon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2960,'Montes Twins Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2961,'Marchesi di Barolo Maraia Barbera di Monferrato 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2962,'Clos Saron Cuvee Mysterieuse 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2963,'Duboeuf Julienas 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2964,'Conterno Fantino Barolo Mosconi 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2965,'Dry Creek Vineyard The Mariner (1.5 Liter Magnum) 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2966,'Concha y Toro Marques de Casa Concha Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2967,'Cimicky Trumps Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2968,'Montes Alpha Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2969,'Kaiken Ultra Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2970,'Excelsior Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2971,'Duorum Tons de Duorum Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2972,'Bernardus Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2973,'Henry Fessy Moulin-a-Vent 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2974,'Terlato Pinot Noir 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2975,'Bodegas Muriel Crianza 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2976,'Zenato Valpolicella Superiore Ripassa 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2977,'Sagelands Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2978,'Altocedro Ano Cero Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2979,'Antigal Uno Malbec 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2980,'Domaine de la Vougeraie Gevrey Chambertin Les Evocelles 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2981,'Joseph Drouhin Gevrey-Chambertin 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2982,'Argiolas Costera 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2983,'Chateau Clos L''Eglise Cotes de Castillon 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2984,'Chateau Canon 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2985,'Chateau Berliquet 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2986,'Ambra Carmignano Santa Cristina In Pilli 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2987,'Chateau de la Selve Beaulieu Coteaux de l''Ardeche 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2988,'Domaine de la Charmaie Vosne-Romanee Au Dessus de Malconsort 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2989,'Wine Spots Napa Cabernet Sauvignon 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2990,'Bodegas O. Fournier Urban Ribera 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2991,'Llai Llai Pinot Noir 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2992,'Zenato Merlot Corvina Cormi 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2993,'La Maialina Chianti Classico 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2994,'Tikal Jubilo 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2995,'Domaine Faiveley Nuits-Saint-Georges 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2996,'Zinfandelic Amador County Old Vine Zinfandel 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2997,'Poggio San Polo Brunello di Montalcino 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2998,'MontGras Quatro 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(2999,'Jim Barry Cover Drive Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3000,'Domaine Faiveley Bourgogne Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3001,'MontGras Antu Ninquen Cabernet Sauvignon/Carmenere 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3002,'Etude Carneros Pinot Noir (375ML half-bottle) 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3003,'Exopto Cellars Big Bang 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3004,'Vesevo Beneventano Aglianico 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3005,'Fattoria del Cerro Vino Nobile di Montepulciano 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3006,'Marcarini Barbera d''Alba Ciabot Camerano 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3007,'Rutherford Hill Barrel Select 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3008,'Castello di Querceto Chianti Classico 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3009,'Salentein Killka Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3010,'Maquis Lien 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3011,'Selection Laurence Feraud Cotes du Rhone Villages Seguret 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3012,'Mossback Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3013,'La Spinetta Sassontino 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3014,'MontGras Reserva Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3015,'Guenoc Lake County Petite Sirah 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3016,'Falesco Sangiovese 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3017,'Santadi Cannonau di Sardegna Noras 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3018,'Domaine Terlato & Chapoutier Shiraz-Viognier 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3019,'Marcarini Barbera d''Alba Ciabot Camerano 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3020,'Tormaresca Neprica 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3021,'MontGras Cabernet Sauvignon/Syrah Reserva 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3022,'Alexander Valley Vineyards Estate Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3023,'Sauvion Chinon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3024,'ONEHOPE California Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3025,'Ernie Els Proprietor''s Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3026,'Da Vinci Riserva Chianti 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3027,'Chateau Meyney 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3028,'Stone Cellars by Beringer Merlot 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3029,'Chateau Larrivet Haut-Brion 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3030,'Blackbird Vineyards Arise Napa Valley Proprietary Red (half-bottle) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3031,'Alexander Valley Vineyards Cyrus 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3032,'Hourglass Cabernet Sauvignon 2003',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3033,'Bodegas Castano Hecula 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3034,'Feudi di San Gregorio Aglianico Rubrato 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3035,'Chateau Grand Village 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3036,'Planeta Merlot 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3037,'Jose Maria Da Fonseca Domingos Touriga Nacional & Syrah 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3038,'Maculan Fratta 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3039,'Beau Joubert Cabernet Sauvignon 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3040,'Creta Roble 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3041,'Solar de Urbezo Vina Urbezo 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3042,'Jack Nicklaus Private Reserve 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3043,'Maison Roche de Bellene Bourgogne Vieilles Vignes 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3044,'Chateau Berliquet Saint-Emilion 2004',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3045,'Woodward Canyon Columbia Valley Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3046,'Beaulieu Vineyard Napa Merlot 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3047,'Chateau Bernadotte 2002',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3048,'Fonterutoli Mazzei Badiola Toscana 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3049,'MontGras Quatro 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3050,'Twomey Cellars by Silver Oak Sonoma Coast Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3051,'Benziger Russian River Valley Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3052,'Argyle Spirithouse Pinot Noir 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3053,'Chateau Fonroque 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3054,'Brancaia Il Blu 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3055,'Vidal-Fleury Cotes-du-Rhone 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3056,'Simi Landslide Vineyard Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3057,'Bibi Graetz Casamatta Rosso 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3058,'Poggio San Polo Brunello di Montalcino 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3059,'Numanthia Termes 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3060,'Santa Carolina Reserva de Familia Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3061,'Trapiche Oak Cask Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3062,'Chateau Potensac 1996',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3063,'Domaine Fourrier Gevrey-Chambertin Vielles Vignes 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3064,'Trumpeter Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3065,'La Playa Estate Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3066,'Bouchard Pere & Fils Reserve Bourgogne Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3067,'Torresella Nero d''Avola 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3068,'Finca Sobreno Crianza Toro 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3069,'Mitolo The Jester Shiraz 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3070,'Louis Latour Aloxe Corton 1er Cru Chaillots 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3071,'Bodega Noemia de Patagonia A Lisa 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3072,'Duboeuf Brouilly 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3073,'Guenoc Lake County Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3074,'Duboeuf Moulin-a-Vent Domaine des Rosiers 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3075,'Twomey Cellars by Silver Oak Russian River Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3076,'Durigutti Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3077,'Sequana Sundawg Ridge Vineyard Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3078,'David Arthur Meritaggio 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3079,'Pedroncelli Bench Vineyards Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3080,'Kendall-Jackson Vintner''s Reserve Syrah 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3081,'Pride Mountain Vineyards Cabernet Franc 2002',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3082,'Ch. Saint Sulpice Rouge 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3083,'Fort Ross Symposium Pinot Noir 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3084,'Dom. de la Romanee Conti Echezeaux 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3085,'Saintsbury Sawi Vineyard Syrah 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3086,'Monte Antico Rosso 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3087,'Chateau La Fleur de Gay 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3088,'Kendall-Jackson Highland Estates Taylor Peak Merlot 2006',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3089,'Whitehall Lane Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3090,'Pahlmeyer Jayson Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3091,'O Wines Red Wine Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3092,'Kosta Browne Russian River Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3093,'Allegrini La Grola 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3094,'Podernuovo a Palazzone Sotirio 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3095,'Cardinale Red Meritage 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3096,'Chateau L''Eglise Clinet (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3097,'Henry''s Drive Shiraz 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3098,'Chateau Musar Jeune Red 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3099,'Chateau Meyney 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3100,'Alexander Valley Vineyards Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3101,'Bodegas Lan Rioja Crianza 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3102,'Archery Summit Red Hills Estate Pinot Noir 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3103,'The Dreaming Tree Crush Red Blend 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3104,'Martin Ray Santa Barbara Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3105,'Chateau d''Aussieres Blason d''Aussières AOC Corbières 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3106,'Zinfandelic Amador County Old Vine Zinfandel 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3107,'Kosta Browne Santa Lucia Highlands Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3108,'Isole e Olena Chianti Classico 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3109,'DeLoach Green Valley Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3110,'Dalla Valle Maya Proprietary Red Blend 1998',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3111,'Arleyna Red Blend 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3112,'Sanford Flor de Campo Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3113,'Chateau Branon (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3114,'St Hallett Faith Shiraz 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3115,'Garnet Monterey Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3116,'Rhys Horseshoe Vineyard Syrah 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3117,'MacMurray Ranch Russian River Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3118,'Penfolds Koonunga Hill Shiraz-Cabernet 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3119,'Tabali Reserva Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3120,'Chateau Belle-Vue Haut-Medoc (Futures Pre-Sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3121,'Kosta Browne One Sixteen Chardonnay 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3122,'Hecht & Bannier Minervois 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3123,'Chateau Pichon-Longueville-Comtesse de Lalande Reserve de la Comtesse (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3124,'Guigal Cote Rotie Brune et Blonde 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3125,'Fontanafredda Serralunga d''Alba Barolo 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3126,'Carruades de Lafite 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3127,'Chateau Canon (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3128,'Francis Ford Coppola Diamond Claret 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3129,'Perrin et Fils Reserve Cotes du Rhone Rouge 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3130,'Altocedro Ano Cero Malbec 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3131,'Edna Valley Vineyard Paragon Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3132,'Castello D''Albola Chianti Classico 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3133,'Bouchard Pere & Fils Beaune de Chateau Premier Cru Rouge 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3134,'Telmo Rodriguez Matallana 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3135,'Chateau Cheval Blanc 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3136,'Anomaly Cabernet Sauvignon 2001',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3137,'Luca Beso de Dante 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3138,'Antucura Calcura 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3139,'Chateau Lafleur-Gazin (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3140,'Artesa Estate Reserve Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3141,'Evodia Old Vine Grenache 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3142,'Antinori Chianti Classico Riserva 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3143,'Jordan Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3144,'Lange Winery Willamette Valley Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3145,'Jules Taylor Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3146,'Capezzana Barco Reale 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3147,'Terrazas de los Andes Reserva Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3148,'Buena Vista The Count Red Blend 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3149,'Chateau La Fleur Cardinale (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3150,'Chateau Puech-Haut Coteaux de Languedoc Prestige 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3151,'Raptor Ridge Willamette Valley Reserve Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3152,'Guarachi Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3153,'Yalumba The Signature Cabernet/Shiraz 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3154,'Il Palazzone Brunello di Montalcino 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3155,'Grace Family Blank Cabernet Sauvignon 2002',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3156,'Sartori Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3157,'Running With Bulls Barossa Tempranillo 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3158,'Meyer Family Cellars Bonny''s Vineyard Cabernet Sauvignon 2003',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3159,'Pride Mountain Vineyards Cabernet Franc 1999',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3160,'Louis Bernard Crozes Hermitage 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3161,'Freestone Vineyards Fogdog Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3162,'Podernuovo a Palazzone Therra 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3163,'Chateau Cap de Faugeres Cotes de Castillon (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3164,'Chateau Puy Blanquet (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3165,'Bouchard Pere & Fils Beaune de Chateau Premier Cru Rouge 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3166,'Leeuwin Estate Art Series Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3167,'Enrique Foster Ique Malbec 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3168,'DeLoach Central Coast Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3169,'Duboeuf Morgon Domaine de la Chaponne 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3170,'Spellbound Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3171,'Anomaly Cabernet Sauvignon 2003',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3172,'Kosta Browne Sonoma Coast Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3173,'Tyler Florence Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3174,'Chateau de Sales 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3175,'Angeline Reserve Pinot Noir 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3176,'W.H. Smith Hellenthal Vineyard Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3177,'Chateau Beychevelle (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3178,'Lamadrid Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3179,'PARIPASO Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3180,'Francis Ford Coppola Diamond Merlot 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3181,'Emblem Oso Vineyard Cabernet Sauvignon 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3182,'Erath Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3183,'Borsao Tinto 2012',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3184,'Marques de Caceres Rioja Crianza Red 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3185,'Robert Stemmler Carneros Estate Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3186,'Zuccardi Serie A Malbec 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3187,'DeLoach Green Valley Pinot Noir 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3188,'Conde de Valdemar Rioja Reserva 2007',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3189,'Neudorf Moutere Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3190,'Haras Estate Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3191,'Mulderbosch Faithful Hound 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3192,'Renato Ratti Barbera d''Asti 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3193,'Cambria Julia''s Vineyard Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3194,'Hewitson The Mad Hatter Shiraz 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3195,'Anomaly Cabernet Sauvignon 2002',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3196,'Donum Carneros Estate Grown Pinot Noir 2008',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3197,'Kendall-Jackson Grand Reserve Cabernet Sauvignon 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3198,'Chateau Brane-Cantenac (Futures Pre-sale) 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3199,'Antigal Uno Malbec 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3200,'Wente Southern Hills Cabernet Sauvignon 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3201,'David Arthur Meritaggio 2002',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3202,'Migration Russian River Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3203,'Argyle Reserve Pinot Noir 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3204,'Ornellaia Le Serre Nuove 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3205,'Chateau Greysac Medoc 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3206,'Chapoutier La Bernardine Chateauneuf-du-Pape 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3207,'Sanford Flor de Campo Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3208,'Marcarini Barbera d''Alba Ciabot Camerano 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3209,'Fort Ross Reserve Pinot Noir 2003',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3210,'Terranoble Reserva Carmenere 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3211,'Buena Vista Carneros Merlot 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3212,'Delas Cote Rotie la Landonne 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3213,'Wine Sisterhood Courageous Cabernet Sauvignon',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3214,'Carruades de Lafite 2005',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3215,'Mazzoni Toscana Rosso 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3216,'St. Francis RED SPLASH 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3217,'Tikal Jubilo 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3218,'Fort Ross Reserve Pinot Noir 2002',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3219,'Beso de Vino Seleccion 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3220,'Benton Lane First Class Pinot Noir 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3221,'Leonetti Sangiovese 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3222,'Edmeades Perli Late Harvest Zinfandel (375ML half-bottle) 2010',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3223,'Guardian Peak Shiraz 2011',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3224,'Hartford Court MacLean''s Block Pinot Noir 2009',0,'','Red',0,0); INSERT INTO "Wine" VALUES(3225,'Durigutti Malbec 2012',0,'','Red',0,0); CREATE TABLE Variety (_id INTEGER PRIMARY KEY AUTOINCREMENT, Name TEXT UNIQUE NOT NULL); INSERT INTO "Variety" VALUES(1,'Zinfandel'); INSERT INTO "Variety" VALUES(2,'Pinot Noir'); INSERT INTO "Variety" VALUES(3,'Syrah/Shiraz'); INSERT INTO "Variety" VALUES(4,'Tempranillo'); INSERT INTO "Variety" VALUES(5,'Grenache'); INSERT INTO "Variety" VALUES(6,'Cabernet Sauvignon'); INSERT INTO "Variety" VALUES(7,'Sangiovese'); INSERT INTO "Variety" VALUES(8,'Bordeaux Red Blends'); INSERT INTO "Variety" VALUES(9,'Other Red Wine'); INSERT INTO "Variety" VALUES(10,'Rhone Red Blends'); INSERT INTO "Variety" VALUES(11,'Nebbiolo'); INSERT INTO "Variety" VALUES(12,'Malbec'); INSERT INTO "Variety" VALUES(13,'Mourvedre'); INSERT INTO "Variety" VALUES(14,'Carmenere'); INSERT INTO "Variety" VALUES(15,'Gamay'); INSERT INTO "Variety" VALUES(16,'Merlot'); INSERT INTO "Variety" VALUES(17,'Barbera'); INSERT INTO "Variety" VALUES(18,'Chardonnay'); INSERT INTO "Variety" VALUES(19,'Cabernet Franc'); INSERT INTO "Variety" VALUES(20,'Primitivo'); INSERT INTO "Variety" VALUES(21,'Sauvignon Blanc'); INSERT INTO "Variety" VALUES(22,'Riesling'); INSERT INTO "Variety" VALUES(23,'Pinot Gris/Grigio'); INSERT INTO "Variety" VALUES(24,'Rhone White Blends'); INSERT INTO "Variety" VALUES(25,'Albarino'); INSERT INTO "Variety" VALUES(26,'Other White Wine'); INSERT INTO "Variety" VALUES(27,'Chenin Blanc'); INSERT INTO "Variety" VALUES(28,'Muscat'); INSERT INTO "Variety" VALUES(29,'Gruner Veltliner'); INSERT INTO "Variety" VALUES(30,'Bordeaux White Blends'); INSERT INTO "Variety" VALUES(31,'Torrontes'); INSERT INTO "Variety" VALUES(32,'Semillon'); INSERT INTO "Variety" VALUES(33,'Pinot Blanc'); INSERT INTO "Variety" VALUES(34,'Viognier'); INSERT INTO "Variety" VALUES(35,'Gewurztraminer'); INSERT INTO "Variety" VALUES(36,'Rose'); INSERT INTO "Variety" VALUES(37,'Other Dessert'); INSERT INTO "Variety" VALUES(38,'Vintage'); INSERT INTO "Variety" VALUES(39,'Petite Sirah'); INSERT INTO "Variety" VALUES(40,'Nero d''Avola'); INSERT INTO "Variety" VALUES(41,'Non-Vintage'); INSERT INTO "Variety" VALUES(42,'Dolcetto'); CREATE TABLE Vineyard (_id INTEGER PRIMARY KEY AUTOINCREMENT, Name TEXT UNIQUE NOT NULL, Region TEXT); INSERT INTO "Vineyard" VALUES(1,'Kunde Estate Winery','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(2,'Baileyana Winery','Central Coast, California'); INSERT INTO "Vineyard" VALUES(3,'d''Arenberg','McLaren Vale, Australia'); INSERT INTO "Vineyard" VALUES(4,'Vina Eguia','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(5,'Terra Andina','Chile, South America'); INSERT INTO "Vineyard" VALUES(6,'Domaine Terlato & Chapoutier','Victoria, Australia'); INSERT INTO "Vineyard" VALUES(7,'Castillo de Monseran','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(8,'Catena','Argentina, South America'); INSERT INTO "Vineyard" VALUES(9,'LinCourt Vineyards','Central Coast, California'); INSERT INTO "Vineyard" VALUES(10,'Castello Banfi','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(11,'Bodegas Cepa 21','Ribera del Duero, Spain'); INSERT INTO "Vineyard" VALUES(12,'Glen Carlou','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(13,'Pietradolce','Sicily, Italy'); INSERT INTO "Vineyard" VALUES(14,'Kenwood Vineyards','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(15,'Fattoria Viticcio','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(16,'Cavit','Trentino-Alto Adige, Italy'); INSERT INTO "Vineyard" VALUES(17,'Clarendon Hills','McLaren Vale, Australia'); INSERT INTO "Vineyard" VALUES(18,'Chateau Fortia','Chateauneuf-du-Pape, France - Rhone'); INSERT INTO "Vineyard" VALUES(19,'Fratelli Revello','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(20,'La Vieille Ferme','Other Rhône, France - Rhone'); INSERT INTO "Vineyard" VALUES(21,'Lunta','Argentina, South America'); INSERT INTO "Vineyard" VALUES(22,'DeLille Cellars','Yakima Valley, Washington'); INSERT INTO "Vineyard" VALUES(23,'St. Francis Winery','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(24,'Bodegas Convento de las Claras','Ribera del Duero, Spain'); INSERT INTO "Vineyard" VALUES(25,'Perrin et Fils','Cotes du Rhone, France - Rhone'); INSERT INTO "Vineyard" VALUES(26,'Alfredo Prunotto','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(27,'WALT','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(28,'Bodegas Volver','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(29,'Pirouette','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(30,'Dobbes Family Estate','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(31,'Vina Concha y Toro','Chile, South America'); INSERT INTO "Vineyard" VALUES(32,'Tenuta Friggiali','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(33,'Susana Balbo','Argentina, South America'); INSERT INTO "Vineyard" VALUES(34,'Shoofly','Other Australia, Australia'); INSERT INTO "Vineyard" VALUES(35,'Las Rocas de San Alejandro','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(36,'Georges Duboeuf','Beaujolais, France - Other regions'); INSERT INTO "Vineyard" VALUES(37,'La Posta','Argentina, South America'); INSERT INTO "Vineyard" VALUES(38,'Dog Point Vineyard','Other New Zealand, New Zealand'); INSERT INTO "Vineyard" VALUES(39,'Domaine Grand Veneur','Cotes du Rhone, France - Rhone'); INSERT INTO "Vineyard" VALUES(40,'Jean-Luc Colombo','Cotes du Rhone, France - Rhone'); INSERT INTO "Vineyard" VALUES(41,'Vega Sindoa','Navarra, Spain'); INSERT INTO "Vineyard" VALUES(42,'Il Molino di Grace','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(43,'Spice Route','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(44,'Meerlust','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(45,'Tendril Wine Cellers','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(46,'Bravium','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(47,'St Hallett','Other Australia, Australia'); INSERT INTO "Vineyard" VALUES(48,'Gloria Ferrer Caves & Vineyards','Carneros, California'); INSERT INTO "Vineyard" VALUES(49,'Bodegas Alejandro Fernandez','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(50,'Tommasi','Veneto, Italy'); INSERT INTO "Vineyard" VALUES(51,'Mayacamas Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(52,'Calina','Chile, South America'); INSERT INTO "Vineyard" VALUES(53,'La Crema','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(54,'Stags'' Leap Winery','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(55,'Domaine de Saint Cosme','Cotes du Rhone, France - Rhone'); INSERT INTO "Vineyard" VALUES(56,'Falernia','Chile, South America'); INSERT INTO "Vineyard" VALUES(57,'Luca','Argentina, South America'); INSERT INTO "Vineyard" VALUES(58,'J Vineyards & Winery','Russian River, California'); INSERT INTO "Vineyard" VALUES(59,'Bethel Heights Vineyard','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(60,'Argiolas','Sardinia, Italy'); INSERT INTO "Vineyard" VALUES(61,'Scilio','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(62,'Frog''s Leap','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(63,'Gerard Bertrand','Languedoc-Roussillon, France - Other regions'); INSERT INTO "Vineyard" VALUES(64,'Irony','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(65,'Te Kairanga','Martinborough, New Zealand'); INSERT INTO "Vineyard" VALUES(66,'Vinos Sin-Ley','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(67,'Gary Farrell','Russian River, California'); INSERT INTO "Vineyard" VALUES(68,'Badenhorst','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(69,'Gascon','Argentina, South America'); INSERT INTO "Vineyard" VALUES(70,'Parducci','North Coast, California'); INSERT INTO "Vineyard" VALUES(71,'Chateau Mont Redon','Chateauneuf-du-Pape, France - Rhone'); INSERT INTO "Vineyard" VALUES(72,'Jim Barry','Clare Valley, Australia'); INSERT INTO "Vineyard" VALUES(73,'Felipe Rutini','Argentina, South America'); INSERT INTO "Vineyard" VALUES(74,'Bodegas Alto Moncayo','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(75,'E. Guigal','Chateauneuf-du-Pape, France - Rhone'); INSERT INTO "Vineyard" VALUES(76,'Alamos','Argentina, South America'); INSERT INTO "Vineyard" VALUES(77,'Maquis','Chile, South America'); INSERT INTO "Vineyard" VALUES(78,'Abadia Retuerta','Ribera del Duero, Spain'); INSERT INTO "Vineyard" VALUES(79,'Dry Creek Vineyard','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(80,'Haras de Pirque','Chile, South America'); INSERT INTO "Vineyard" VALUES(81,'Matchbook','Other California, California'); INSERT INTO "Vineyard" VALUES(82,'Marques de Murrieta','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(83,'Smoking Loon','Other California, California'); INSERT INTO "Vineyard" VALUES(84,'Sequana','Russian River, California'); INSERT INTO "Vineyard" VALUES(85,'Pennywise','Other California, California'); INSERT INTO "Vineyard" VALUES(86,'Mas Sorrer','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(87,'Bodegas Hijos de Juan Gil','Jumilla, Spain'); INSERT INTO "Vineyard" VALUES(88,'Villa Sant''Anna','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(89,'Edgebaston','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(90,'Benanti','Sicily, Italy'); INSERT INTO "Vineyard" VALUES(91,'Decoy','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(92,'Borsao','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(93,'Val di Suga','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(94,'Fuligni','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(95,'Lucinda & Millie','North Coast, California'); INSERT INTO "Vineyard" VALUES(96,'Owen Roe','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(97,'Chateau Tire Pe','Other Bordeaux, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(98,'Gallo Signature Series','Central Coast, California'); INSERT INTO "Vineyard" VALUES(99,'Frescobaldi','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(100,'Kilikanoon','Other Australia, Australia'); INSERT INTO "Vineyard" VALUES(101,'Conti Costanti','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(102,'Elderton','Barossa Valley, Australia'); INSERT INTO "Vineyard" VALUES(103,'Oxford Landing','South Australia, Australia'); INSERT INTO "Vineyard" VALUES(104,'StoneCap','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(105,'Conde de Valdemar','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(106,'Lapostolle','Chile, South America'); INSERT INTO "Vineyard" VALUES(107,'Francois Gaunoux','Burgundy, France - Other regions'); INSERT INTO "Vineyard" VALUES(108,'Haywood Winery','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(109,'Tenuta Trerose','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(110,'Chateau d''Aussieres','Languedoc-Roussillon, France - Other regions'); INSERT INTO "Vineyard" VALUES(111,'Chateau Timberlay','Other Bordeaux, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(112,'Siduri','Central Coast, California'); INSERT INTO "Vineyard" VALUES(113,'M. Chapoutier','Cotes du Rhone, France - Rhone'); INSERT INTO "Vineyard" VALUES(114,'Paul Jaboulet and Aine','Cotes du Rhone, France - Rhone'); INSERT INTO "Vineyard" VALUES(115,'Don Sancho Londono','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(116,'Ernie Els','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(117,'Brancaia','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(118,'Four Vines Winery','Sierra Foothills, California'); INSERT INTO "Vineyard" VALUES(119,'Charles Smith','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(120,'Santa Margherita','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(121,'Bosquet des Papes','Chateauneuf-du-Pape, France - Rhone'); INSERT INTO "Vineyard" VALUES(122,'Veramonte','Chile, South America'); INSERT INTO "Vineyard" VALUES(123,'Bodegas Triton','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(124,'La Follette','North Coast, California'); INSERT INTO "Vineyard" VALUES(125,'Amalie Robert','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(126,'Stickybeak','Other California, California'); INSERT INTO "Vineyard" VALUES(127,'Pelissero','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(128,'Frei Brothers','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(129,'Paul Dolan Vineyards','Other California, California'); INSERT INTO "Vineyard" VALUES(130,'Avignonesi','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(131,'Dom. Pierre Usseglio et Fils','Chateauneuf-du-Pape, France - Rhone'); INSERT INTO "Vineyard" VALUES(132,'Rancho Zabaco','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(133,'Fattoria La Valentina','Other Italian, Italy'); INSERT INTO "Vineyard" VALUES(134,'Kistler','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(135,'Be Friends','Burgundy, France - Other regions'); INSERT INTO "Vineyard" VALUES(136,'K Vintners','Walla Walla Valley, Washington'); INSERT INTO "Vineyard" VALUES(137,'Martin Ray','Other California, California'); INSERT INTO "Vineyard" VALUES(138,'Sogrape','Portugal, Portugal'); INSERT INTO "Vineyard" VALUES(139,'Terra d''Oro','Sierra Foothills, California'); INSERT INTO "Vineyard" VALUES(140,'L''Ecole 41','Walla Walla Valley, Washington'); INSERT INTO "Vineyard" VALUES(141,'TAZ','Central Coast, California'); INSERT INTO "Vineyard" VALUES(142,'Damilano','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(143,'Pio Cesare','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(144,'Arnoux et Fils','Vacqueyras, France - Rhone'); INSERT INTO "Vineyard" VALUES(145,'Maison Louis Jadot','Burgundy, France - Other regions'); INSERT INTO "Vineyard" VALUES(146,'Domaine de Nizas','Languedoc-Roussillon, France - Other regions'); INSERT INTO "Vineyard" VALUES(147,'Bergstrom','Other Oregon, Oregon'); INSERT INTO "Vineyard" VALUES(148,'Luigi Ferrando','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(149,'HobNob','Languedoc-Roussillon, France - Other regions'); INSERT INTO "Vineyard" VALUES(150,'Resalte de Penafiel','Ribera del Duero, Spain'); INSERT INTO "Vineyard" VALUES(151,'Bouchard Pere & Fils','Burgundy, France - Other regions'); INSERT INTO "Vineyard" VALUES(152,'La Sirena','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(153,'Les Jamelles','Other French, France - Other regions'); INSERT INTO "Vineyard" VALUES(154,'Bodegas Avante Tineta','Ribera del Duero, Spain'); INSERT INTO "Vineyard" VALUES(155,'Ruffino','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(156,'Miguel Torres','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(157,'Tikves ','None, Various Regional'); INSERT INTO "Vineyard" VALUES(158,'W.H. Smith','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(159,'Patz & Hall','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(160,'Alain Voge','Cornas, France - Rhone'); INSERT INTO "Vineyard" VALUES(161,'Tahbilk','Other Australia, Australia'); INSERT INTO "Vineyard" VALUES(162,'Bodegas Telmo Rodriguez','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(163,'Ridge Vineyards','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(164,'Seven Hills Winery','Walla Walla Valley, Washington'); INSERT INTO "Vineyard" VALUES(165,'Bodegas Ostatu','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(166,'Betz Family Winery ','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(167,'Michel Torino','Argentina, South America'); INSERT INTO "Vineyard" VALUES(168,'Chateau Tanunda','Barossa Valley, Australia'); INSERT INTO "Vineyard" VALUES(169,'Jacob''s Creek','Barossa Valley, Australia'); INSERT INTO "Vineyard" VALUES(170,'Can Blau','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(171,'Williams Selyem Winery ','Russian River, California'); INSERT INTO "Vineyard" VALUES(172,'Goats do Roam','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(173,'Il Feuduccio','Other Italian, Italy'); INSERT INTO "Vineyard" VALUES(174,'St. Innocent Winery','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(175,'Chateau Lamargue','Languedoc-Roussillon, France - Other regions'); INSERT INTO "Vineyard" VALUES(176,'Campo Viejo','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(177,'Recanati','Israel, Israel'); INSERT INTO "Vineyard" VALUES(178,'Vina MontGras','Chile, South America'); INSERT INTO "Vineyard" VALUES(179,'Louis Latour','Burgundy, France - Other regions'); INSERT INTO "Vineyard" VALUES(180,'Lancaster Estate','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(181,'Chateau de Segries','Other Rhône, France - Rhone'); INSERT INTO "Vineyard" VALUES(182,'Baugier Thunevin','Languedoc-Roussillon, France - Other regions'); INSERT INTO "Vineyard" VALUES(183,'Joan d''Anguera','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(184,'Riglos','Argentina, South America'); INSERT INTO "Vineyard" VALUES(185,'Trenza','Central Coast, California'); INSERT INTO "Vineyard" VALUES(186,'Bouchard Aine & Fils','Burgundy, France - Other regions'); INSERT INTO "Vineyard" VALUES(187,'Donnafugata','Sicily, Italy'); INSERT INTO "Vineyard" VALUES(188,'Verum','Argentina, South America'); INSERT INTO "Vineyard" VALUES(189,'Bodegas Aletta','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(190,'Santi','Veneto, Italy'); INSERT INTO "Vineyard" VALUES(191,'Middle Sister','Argentina, South America'); INSERT INTO "Vineyard" VALUES(192,'Redheads Studio','McLaren Vale, Australia'); INSERT INTO "Vineyard" VALUES(193,'Clos de la Niverdiere','Other French, France - Other regions'); INSERT INTO "Vineyard" VALUES(194,'Deep Purple','Other California, California'); INSERT INTO "Vineyard" VALUES(195,'Mano a Mano','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(196,'Tormaresca','Southern Italy, Italy'); INSERT INTO "Vineyard" VALUES(197,'Borgias','Veneto, Italy'); INSERT INTO "Vineyard" VALUES(198,'Pierre Henri Morel','Cotes du Rhone, France - Rhone'); INSERT INTO "Vineyard" VALUES(199,'Altocedro','Argentina, South America'); INSERT INTO "Vineyard" VALUES(200,'Aubert','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(201,'Delas Freres','Cotes du Rhone, France - Rhone'); INSERT INTO "Vineyard" VALUES(202,'Cloudy Bay','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(203,'Casa E. di Mirafiore','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(204,'Domaine de la Charmaie','Burgundy, France - Other regions'); INSERT INTO "Vineyard" VALUES(205,'Graham Beck','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(206,'Yacochuya','Argentina, South America'); INSERT INTO "Vineyard" VALUES(207,'Fess Parker','Central Coast, California'); INSERT INTO "Vineyard" VALUES(208,'Domaine de Beaurenard','Chateauneuf-du-Pape, France - Rhone'); INSERT INTO "Vineyard" VALUES(209,'Stonestreet','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(210,'Brancott','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(211,'Fisher Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(212,'Alban','Central Coast, California'); INSERT INTO "Vineyard" VALUES(213,'Francis Ford Coppola Winery','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(214,'Maison Nicolas Perrin','Other Rhône, France - Rhone'); INSERT INTO "Vineyard" VALUES(215,'Gordon Brothers Cellars','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(216,'Hewitson','Barossa Valley, Australia'); INSERT INTO "Vineyard" VALUES(217,'Henry''s Drive','South Australia, Australia'); INSERT INTO "Vineyard" VALUES(218,'Luberri','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(219,'Byron','Central Coast, California'); INSERT INTO "Vineyard" VALUES(220,'Bond','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(221,'Herencia Altes','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(222,'Beaulieu Vineyard','Other California, California'); INSERT INTO "Vineyard" VALUES(223,'Novellum','Languedoc-Roussillon, France - Other regions'); INSERT INTO "Vineyard" VALUES(224,'Pacific Rim','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(225,'Geyser Peak Winery','Other California, California'); INSERT INTO "Vineyard" VALUES(226,'Benvolio','Friuli-Venezia Giulia, Italy'); INSERT INTO "Vineyard" VALUES(227,'Ferrari-Carano','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(228,'Kim Crawford','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(229,'Michel Gassier','Languedoc-Roussillon, France - Other regions'); INSERT INTO "Vineyard" VALUES(230,'Oyster Bay','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(231,'Greywacke','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(232,'Dancing Bull','Other California, California'); INSERT INTO "Vineyard" VALUES(233,'Cakebread Cellars','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(234,'Yalumba','South Australia, Australia'); INSERT INTO "Vineyard" VALUES(235,'Kris','Friuli-Venezia Giulia, Italy'); INSERT INTO "Vineyard" VALUES(236,'Cupcake Vineyards','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(237,'Burgans','Rias Baixas, Spain'); INSERT INTO "Vineyard" VALUES(238,'Shannon Ridge','North Coast, California'); INSERT INTO "Vineyard" VALUES(239,'Joel Gott','Other California, California'); INSERT INTO "Vineyard" VALUES(240,'Broadbent','Portugal, Portugal'); INSERT INTO "Vineyard" VALUES(241,'Dashwood','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(242,'Giesen Wine Estate','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(243,'J.J. Vincent','Burgundy, France - Other regions'); INSERT INTO "Vineyard" VALUES(244,'Villa Pozzi','Sicily, Italy'); INSERT INTO "Vineyard" VALUES(245,'Matua Valley','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(246,'Chateau Ste. Michelle','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(247,'Big House','Other California, California'); INSERT INTO "Vineyard" VALUES(248,'Firestone Vineyard','Central Coast, California'); INSERT INTO "Vineyard" VALUES(249,'Errazuriz','Chile, South America'); INSERT INTO "Vineyard" VALUES(250,'Angeline','Russian River, California'); INSERT INTO "Vineyard" VALUES(251,'Bonterra','North Coast, California'); INSERT INTO "Vineyard" VALUES(252,'Antinori','Sicily, Italy'); INSERT INTO "Vineyard" VALUES(253,'Pewsey Vale','Barossa Valley, Australia'); INSERT INTO "Vineyard" VALUES(254,'Domaine des Baumard','Loire, France - Other regions'); INSERT INTO "Vineyard" VALUES(255,'Voss Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(256,'Hall','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(257,'Pascal Jolivet','Loire, France - Other regions'); INSERT INTO "Vineyard" VALUES(258,'Silverado Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(259,'Saint Clair','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(260,'Barrymore','Other Italian, Italy'); INSERT INTO "Vineyard" VALUES(261,'Bartenura','Other Italian, Italy'); INSERT INTO "Vineyard" VALUES(262,'Bayten','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(263,'Domane Wachau','Austria, Other Europe'); INSERT INTO "Vineyard" VALUES(264,'Guy Saget','Loire, France - Other regions'); INSERT INTO "Vineyard" VALUES(265,'Dr Loosen','Mosel-Saar-Ruwer, Germany'); INSERT INTO "Vineyard" VALUES(266,'Nobilo','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(267,'Dom. Lafage','Other French, France - Other regions'); INSERT INTO "Vineyard" VALUES(268,'Milbrandt','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(269,'Mirassou Vineyards','Other California, California'); INSERT INTO "Vineyard" VALUES(270,'St. Supery Estate Vineyard & Winery','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(271,'Marques de Caceres','Rias Baixas, Spain'); INSERT INTO "Vineyard" VALUES(272,'Antica','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(273,'Leeuwin Estate','Margaret River, Australia'); INSERT INTO "Vineyard" VALUES(274,'Goldwater','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(275,'Tangent','Central Coast, California'); INSERT INTO "Vineyard" VALUES(276,'Layer Cake','Central Coast, California'); INSERT INTO "Vineyard" VALUES(277,'Principessa Gavia','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(278,'Hanna Winery','Russian River, California'); INSERT INTO "Vineyard" VALUES(279,'Margerum','Central Coast, California'); INSERT INTO "Vineyard" VALUES(280,'Penfolds Wines','South Australia, Australia'); INSERT INTO "Vineyard" VALUES(281,'Raymond Vineyard','Other California, California'); INSERT INTO "Vineyard" VALUES(282,'Yealands','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(283,'Yellow Tail','Other Australia, Australia'); INSERT INTO "Vineyard" VALUES(284,'Matanzas Creek','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(285,'Montinore Vineyards','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(286,'Loimer','Austria, Other Europe'); INSERT INTO "Vineyard" VALUES(287,'Chateau de Sancerre','Loire, France - Other regions'); INSERT INTO "Vineyard" VALUES(288,'Boutari','Greece, Greece'); INSERT INTO "Vineyard" VALUES(289,'Michel Redde','Loire, France - Other regions'); INSERT INTO "Vineyard" VALUES(290,'Pieropan','Veneto, Italy'); INSERT INTO "Vineyard" VALUES(291,'Villa Maria','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(292,'Flowers','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(293,'Maison Joseph Drouhin','Chablis, France - Other regions'); INSERT INTO "Vineyard" VALUES(294,'Robert Mondavi Winery','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(295,'Clean Slate','Mosel-Saar-Ruwer, Germany'); INSERT INTO "Vineyard" VALUES(296,'Craggy Range Winery','Martinborough, New Zealand'); INSERT INTO "Vineyard" VALUES(297,'Angove Family Winemakers','South Australia, Australia'); INSERT INTO "Vineyard" VALUES(298,'Wairau River','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(299,'Whitehall Lane Winery','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(300,'Kendall-Jackson','Other California, California'); INSERT INTO "Vineyard" VALUES(301,'Dr. Thanisch','Mosel-Saar-Ruwer, Germany'); INSERT INTO "Vineyard" VALUES(302,'Domaine Weinbach','Alsace, France - Other regions'); INSERT INTO "Vineyard" VALUES(303,'Domaine Laroche','Chablis, France - Other regions'); INSERT INTO "Vineyard" VALUES(304,'Rolf Binder','Barossa Valley, Australia'); INSERT INTO "Vineyard" VALUES(305,'Aveleda','Portugal, Portugal'); INSERT INTO "Vineyard" VALUES(306,'Philippe Foreau','Loire, France - Other regions'); INSERT INTO "Vineyard" VALUES(307,'Murphy-Goode','North Coast, California'); INSERT INTO "Vineyard" VALUES(308,'Snoqualmie','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(309,'Zenato','Veneto, Italy'); INSERT INTO "Vineyard" VALUES(310,'Roth','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(311,'Treana Winery','Central Coast, California'); INSERT INTO "Vineyard" VALUES(312,'Vina San Pedro','Chile, South America'); INSERT INTO "Vineyard" VALUES(313,'S.A. Prum','Mosel-Saar-Ruwer, Germany'); INSERT INTO "Vineyard" VALUES(314,'Babich','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(315,'Nautilus Estate','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(316,'Simi','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(317,'Brocard','Chablis, France - Other regions'); INSERT INTO "Vineyard" VALUES(318,'JJ Prum','Mosel-Saar-Ruwer, Germany'); INSERT INTO "Vineyard" VALUES(319,'Wither Hills','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(320,'La Cana','Rias Baixas, Spain'); INSERT INTO "Vineyard" VALUES(321,'Caves du Clos de la Perriere','Loire, France - Other regions'); INSERT INTO "Vineyard" VALUES(322,'Mulderbosch','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(323,'Napa Cellars','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(324,'Chateau St. Jean','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(325,'Markus Huber','Austria, Other Europe'); INSERT INTO "Vineyard" VALUES(326,'Pazo de Barrantes','Rias Baixas, Spain'); INSERT INTO "Vineyard" VALUES(327,'The Beachhouse','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(328,'Spy Valley','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(329,'Jules Taylor','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(330,'Abbazia di Novacella','Trentino-Alto Adige, Italy'); INSERT INTO "Vineyard" VALUES(331,'Jam Jar','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(332,'Maso Canali','Trentino-Alto Adige, Italy'); INSERT INTO "Vineyard" VALUES(333,'Plantagenet','Other Australia, Australia'); INSERT INTO "Vineyard" VALUES(334,'Bodegas Muga','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(335,'The Crossings','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(336,'Two Angels','North Coast, California'); INSERT INTO "Vineyard" VALUES(337,'Arboleda','Chile, South America'); INSERT INTO "Vineyard" VALUES(338,'Groth Vineyards & Winery','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(339,'Bisci','Other Italian, Italy'); INSERT INTO "Vineyard" VALUES(340,'De Bortoli','Other Australia, Australia'); INSERT INTO "Vineyard" VALUES(341,'Southern Right','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(342,'Lucien Crochet','Loire, France - Other regions'); INSERT INTO "Vineyard" VALUES(343,'Uriondo Txakoli','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(344,'Justin','Central Coast, California'); INSERT INTO "Vineyard" VALUES(345,'Brokenwood','Hunter Valley, Australia'); INSERT INTO "Vineyard" VALUES(346,'Leese-Fitch','Other California, California'); INSERT INTO "Vineyard" VALUES(347,'Whitehaven ','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(348,'Los Vascos','Chile, South America'); INSERT INTO "Vineyard" VALUES(349,'J. Lohr Winery','Central Coast, California'); INSERT INTO "Vineyard" VALUES(350,'Zocker','Central Coast, California'); INSERT INTO "Vineyard" VALUES(351,'Vidal-Fleury','Cotes du Rhone, France - Rhone'); INSERT INTO "Vineyard" VALUES(352,'Brassfield Estate Winery','North Coast, California'); INSERT INTO "Vineyard" VALUES(353,'Couly-Dutheil','Loire, France - Other regions'); INSERT INTO "Vineyard" VALUES(354,'Chehalem','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(355,'Barnard Griffin Winery','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(356,'Gustave Lorentz','Alsace, France - Other regions'); INSERT INTO "Vineyard" VALUES(357,'Chateau de la Selve','Other Rhône, France - Rhone'); INSERT INTO "Vineyard" VALUES(358,'The Seeker','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(359,'Terranoble','Chile, South America'); INSERT INTO "Vineyard" VALUES(360,'Masseria','Other Italian, Italy'); INSERT INTO "Vineyard" VALUES(361,'Torbreck','Barossa Valley, Australia'); INSERT INTO "Vineyard" VALUES(362,'Bodega Goulart','Argentina, South America'); INSERT INTO "Vineyard" VALUES(363,'Grand Antoine','Other Bordeaux, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(364,'Dourthe','Other Bordeaux, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(365,'Failla','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(366,'Domaine Cailbourdin','Loire, France - Other regions'); INSERT INTO "Vineyard" VALUES(367,'Wild Rock','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(368,'Trimbach','Alsace, France - Other regions'); INSERT INTO "Vineyard" VALUES(369,'Jordan Vineyard & Winery','Russian River, California'); INSERT INTO "Vineyard" VALUES(370,'Chanson','Burgundy, France - Other regions'); INSERT INTO "Vineyard" VALUES(371,'Patient Cottat','Loire, France - Other regions'); INSERT INTO "Vineyard" VALUES(372,'House Of Mandela','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(373,'Cono Sur','Chile, South America'); INSERT INTO "Vineyard" VALUES(374,'Toad Hollow','North Coast, California'); INSERT INTO "Vineyard" VALUES(375,'Wente Vineyards','Central Coast, California'); INSERT INTO "Vineyard" VALUES(376,'Tiefenbrunner','Trentino-Alto Adige, Italy'); INSERT INTO "Vineyard" VALUES(377,'Schmitt Sohne ','Mosel-Saar-Ruwer, Germany'); INSERT INTO "Vineyard" VALUES(378,'Rainstorm','Umpqua Valley, Oregon'); INSERT INTO "Vineyard" VALUES(379,'Guenoc Estate Vineyards','North Coast, California'); INSERT INTO "Vineyard" VALUES(380,'Domaine du Clos Roussely','Loire, France - Other regions'); INSERT INTO "Vineyard" VALUES(381,'Wakefield','Clare Valley, Australia'); INSERT INTO "Vineyard" VALUES(382,'Sanford Winery','Central Coast, California'); INSERT INTO "Vineyard" VALUES(383,'Finca de Arantei','Rias Baixas, Spain'); INSERT INTO "Vineyard" VALUES(384,'Bertani','Veneto, Italy'); INSERT INTO "Vineyard" VALUES(385,'Domaine Mittnacht Freres','Alsace, France - Other regions'); INSERT INTO "Vineyard" VALUES(386,'Cave des Vignerons de Buxy','Chablis, France - Other regions'); INSERT INTO "Vineyard" VALUES(387,'Weingut Hirsch','Austria, Other Europe'); INSERT INTO "Vineyard" VALUES(388,'Terras Gauda','Rias Baixas, Spain'); INSERT INTO "Vineyard" VALUES(389,'Girard','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(390,'Hermann J. Wiemer','New York, Other US'); INSERT INTO "Vineyard" VALUES(391,'Attems','Friuli-Venezia Giulia, Italy'); INSERT INTO "Vineyard" VALUES(392,'Caves de Chablis ','Chablis, France - Other regions'); INSERT INTO "Vineyard" VALUES(393,'Casarena','Argentina, South America'); INSERT INTO "Vineyard" VALUES(394,'Torre Rosazza','Friuli-Venezia Giulia, Italy'); INSERT INTO "Vineyard" VALUES(395,'Ronco Del Gnemiz','Friuli-Venezia Giulia, Italy'); INSERT INTO "Vineyard" VALUES(396,'Fincas Don Martino','Argentina, South America'); INSERT INTO "Vineyard" VALUES(397,'Falesco','Southern Italy, Italy'); INSERT INTO "Vineyard" VALUES(398,'Bodega Vina Nora','Rias Baixas, Spain'); INSERT INTO "Vineyard" VALUES(399,'Tomero','Argentina, South America'); INSERT INTO "Vineyard" VALUES(400,'Egon Muller','Mosel-Saar-Ruwer, Germany'); INSERT INTO "Vineyard" VALUES(401,'The Hogue Cellars','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(402,'La Playa','Chile, South America'); INSERT INTO "Vineyard" VALUES(403,'Vavasour','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(404,'Bott-Geyl','Alsace, France - Other regions'); INSERT INTO "Vineyard" VALUES(405,'Tabali','Chile, South America'); INSERT INTO "Vineyard" VALUES(406,'Villa Sparina','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(407,'Zind-Humbrecht','Alsace, France - Other regions'); INSERT INTO "Vineyard" VALUES(408,'Matteo Correggia','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(409,'Wine Sisterhood','Other California, California'); INSERT INTO "Vineyard" VALUES(410,'Red Tail Ridge','New York, Other US'); INSERT INTO "Vineyard" VALUES(411,'Caves de Lugny','Burgundy, France - Other regions'); INSERT INTO "Vineyard" VALUES(412,'Artner','Austria, Other Europe'); INSERT INTO "Vineyard" VALUES(413,'Stag''s Leap Wine Cellars','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(414,'Conundrum','Other California, California'); INSERT INTO "Vineyard" VALUES(415,'Placido','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(416,'Saracco','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(417,'King Estate','Other Oregon, Oregon'); INSERT INTO "Vineyard" VALUES(418,'White Wedding','Other California, California'); INSERT INTO "Vineyard" VALUES(419,'Shea Wine Cellars','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(420,'Mer Soleil','Central Coast, California'); INSERT INTO "Vineyard" VALUES(421,'Robert Oatley','Other Australia, Australia'); INSERT INTO "Vineyard" VALUES(422,'Merryvale Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(423,'Simonnet-Febvre','Chablis, France - Other regions'); INSERT INTO "Vineyard" VALUES(424,'Livio Felluga','Friuli-Venezia Giulia, Italy'); INSERT INTO "Vineyard" VALUES(425,'Hello Kitty','Other California, California'); INSERT INTO "Vineyard" VALUES(426,'Concannon','Other California, California'); INSERT INTO "Vineyard" VALUES(427,'Luna Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(428,'Pine Ridge','Other California, California'); INSERT INTO "Vineyard" VALUES(429,'Paco & Lola','Rias Baixas, Spain'); INSERT INTO "Vineyard" VALUES(430,'Marimar Estate','Russian River, California'); INSERT INTO "Vineyard" VALUES(431,'Pierre Sparr','Alsace, France - Other regions'); INSERT INTO "Vineyard" VALUES(432,'Maximin Grunhauser','Mosel-Saar-Ruwer, Germany'); INSERT INTO "Vineyard" VALUES(433,'Saintsbury','Carneros, California'); INSERT INTO "Vineyard" VALUES(434,'Laurenz V','Austria, Other Europe'); INSERT INTO "Vineyard" VALUES(435,'Grgich Hills Cellar','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(436,'Quivira Vineyards','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(437,'Columbia Crest','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(438,'Bodegas Botani','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(439,'Anselmi','Veneto, Italy'); INSERT INTO "Vineyard" VALUES(440,'Bodega Colome','Argentina, South America'); INSERT INTO "Vineyard" VALUES(441,'Ramey','Carneros, California'); INSERT INTO "Vineyard" VALUES(442,'The Hess Collection','Central Coast, California'); INSERT INTO "Vineyard" VALUES(443,'Evening Land','Other Oregon, Oregon'); INSERT INTO "Vineyard" VALUES(444,'Sauvion','Loire, France - Other regions'); INSERT INTO "Vineyard" VALUES(445,'Spring Seed Wine Co.','McLaren Vale, Australia'); INSERT INTO "Vineyard" VALUES(446,'Starborough','Marlborough, New Zealand'); INSERT INTO "Vineyard" VALUES(447,'Montevina Winery','Other California, California'); INSERT INTO "Vineyard" VALUES(448,'Chateau Bonnet','Other Bordeaux, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(449,'Ponzi Vineyards','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(450,'Gundlach Bundschu','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(451,'Lucien Albrecht','Alsace, France - Other regions'); INSERT INTO "Vineyard" VALUES(452,'Uvaggio','Other California, California'); INSERT INTO "Vineyard" VALUES(453,'Wines That Rock','North Coast, California'); INSERT INTO "Vineyard" VALUES(454,'Polka Dot','Other German, Germany'); INSERT INTO "Vineyard" VALUES(455,'Duckhorn Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(456,'A to Z','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(457,'Cape Mentelle','Margaret River, Australia'); INSERT INTO "Vineyard" VALUES(458,'Ken Forrester','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(459,'Castle Rock Winery','Central Coast, California'); INSERT INTO "Vineyard" VALUES(460,'Hugel','Alsace, France - Other regions'); INSERT INTO "Vineyard" VALUES(461,'ONEHOPE','Other California, California'); INSERT INTO "Vineyard" VALUES(462,'Crios de Susana Balbo','Argentina, South America'); INSERT INTO "Vineyard" VALUES(463,'Valley of the Moon Winery','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(464,'Marc Bredif','Loire, France - Other regions'); INSERT INTO "Vineyard" VALUES(465,'Domaines Baron Rothschild','Other Bordeaux, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(466,'Neil Ellis Wines','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(467,'Poet''s Leap','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(468,'Vasse Felix','Margaret River, Australia'); INSERT INTO "Vineyard" VALUES(469,'Ladoucette','Loire, France - Other regions'); INSERT INTO "Vineyard" VALUES(470,'Terlato Family Vineyards','Russian River, California'); INSERT INTO "Vineyard" VALUES(471,'Jermann','Friuli-Venezia Giulia, Italy'); INSERT INTO "Vineyard" VALUES(472,'Clos LaChance','Central Coast, California'); INSERT INTO "Vineyard" VALUES(473,'Trumpeter','Argentina, South America'); INSERT INTO "Vineyard" VALUES(474,'Apothic','Other California, California'); INSERT INTO "Vineyard" VALUES(475,'Pazo de Senorans','Rias Baixas, Spain'); INSERT INTO "Vineyard" VALUES(476,'Beni di Batasiolo','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(477,'Cave de Pomerols','Languedoc-Roussillon, France - Other regions'); INSERT INTO "Vineyard" VALUES(478,'Migration','Russian River, California'); INSERT INTO "Vineyard" VALUES(479,'Amberhill','Other California, California'); INSERT INTO "Vineyard" VALUES(480,'Chateau La Nerthe','Chateauneuf-du-Pape, France - Rhone'); INSERT INTO "Vineyard" VALUES(481,'MezzaCorona','Trentino-Alto Adige, Italy'); INSERT INTO "Vineyard" VALUES(482,'Hyland Estate','Other Oregon, Oregon'); INSERT INTO "Vineyard" VALUES(483,'Qupe','Central Coast, California'); INSERT INTO "Vineyard" VALUES(484,'Ecco Domani','Trentino-Alto Adige, Italy'); INSERT INTO "Vineyard" VALUES(485,'William Hill Winery','Central Coast, California'); INSERT INTO "Vineyard" VALUES(486,'Carmel Road','Central Coast, California'); INSERT INTO "Vineyard" VALUES(487,'Mouton-Cadet','Other Bordeaux, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(488,'MAN Vintners','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(489,'Zuccardi','Argentina, South America'); INSERT INTO "Vineyard" VALUES(490,'Willamette Valley Vineyards','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(491,'Solena Estate','Other Oregon, Oregon'); INSERT INTO "Vineyard" VALUES(492,'Ladera Sagrada','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(493,'Chateau Larrivet Haut-Brion','Pessac-Leognan, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(494,'Poggio al Tesoro','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(495,'Benton Lane','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(496,'Markham Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(497,'Edna Valley Vineyard','Central Coast, California'); INSERT INTO "Vineyard" VALUES(498,'Apaltagua','Chile, South America'); INSERT INTO "Vineyard" VALUES(499,'J. Bookwalter','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(500,'Sokol Blosser','Other Oregon, Oregon'); INSERT INTO "Vineyard" VALUES(501,'Château Smith Haut Lafitte','Pessac-Leognan, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(502,'Argyle','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(503,'Schloss Vollrads','Rheingau, Germany'); INSERT INTO "Vineyard" VALUES(504,'Eyrie','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(505,'Elk Cove Vineyard','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(506,'Chateau de Beaucastel','Other Rhône, France - Rhone'); INSERT INTO "Vineyard" VALUES(507,'Rafael Palacios','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(508,'Vino dei Fratelli','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(509,'Martinborough','Martinborough, New Zealand'); INSERT INTO "Vineyard" VALUES(510,'Vaquero','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(511,'Adelsheim','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(512,'Shaya','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(513,'Santa Ema Winery','Chile, South America'); INSERT INTO "Vineyard" VALUES(514,'Bersano','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(515,'Domaine de Chevalier','Pessac-Leognan, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(516,'Bodegas Godeval','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(517,'Morgan Winery','Central Coast, California'); INSERT INTO "Vineyard" VALUES(518,'Luke Donald Collection','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(519,'Cederberg','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(520,'Freemark Abbey','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(521,'Protolcolo','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(522,'Peter Lehmann','Barossa Valley, Australia'); INSERT INTO "Vineyard" VALUES(523,'Greystone Cellars','Other California, California'); INSERT INTO "Vineyard" VALUES(524,'Bodegas Ramon Bilbao','Rias Baixas, Spain'); INSERT INTO "Vineyard" VALUES(525,'Isabel Mondavi','Carneros, California'); INSERT INTO "Vineyard" VALUES(526,'Baglio del Cristo di Campobello','Sicily, Italy'); INSERT INTO "Vineyard" VALUES(527,'Heritance','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(528,'Punto Nino','Chile, South America'); INSERT INTO "Vineyard" VALUES(529,'Alois Lageder','Trentino-Alto Adige, Italy'); INSERT INTO "Vineyard" VALUES(530,'Buty','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(531,'Lamadrid','Argentina, South America'); INSERT INTO "Vineyard" VALUES(532,'Petaluma','Clare Valley, Australia'); INSERT INTO "Vineyard" VALUES(533,'Bodegas Fillaboa','Rias Baixas, Spain'); INSERT INTO "Vineyard" VALUES(534,'DeLoach Vineyards','Russian River, California'); INSERT INTO "Vineyard" VALUES(535,'Villa Matilde','Other Italian, Italy'); INSERT INTO "Vineyard" VALUES(536,'Bernhard Eifel','Mosel-Saar-Ruwer, Germany'); INSERT INTO "Vineyard" VALUES(537,'Bonny Doon Vineyard','Central Coast, California'); INSERT INTO "Vineyard" VALUES(538,'L''Esprit de Chevalier ','Pessac-Leognan, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(539,'Domaine Leroy','Burgundy, France - Other regions'); INSERT INTO "Vineyard" VALUES(540,'Ritual','Chile, South America'); INSERT INTO "Vineyard" VALUES(541,'Chateau Olivier','Pessac-Leognan, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(542,'Tenuta Polvaro','Veneto, Italy'); INSERT INTO "Vineyard" VALUES(543,'Domaines Schlumberger','Alsace, France - Other regions'); INSERT INTO "Vineyard" VALUES(544,'Chateau Marjosse','Other Bordeaux, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(545,'Josef Leitz','Rheingau, Germany'); INSERT INTO "Vineyard" VALUES(546,'Star Tree','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(547,'Chateau Monbousquet','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(548,'Domaine Lebrun','Loire, France - Other regions'); INSERT INTO "Vineyard" VALUES(549,'Alexander Valley Vineyards','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(550,'Malvira','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(551,'Stock & Stein','Rheingau, Germany'); INSERT INTO "Vineyard" VALUES(552,'Montes','Chile, South America'); INSERT INTO "Vineyard" VALUES(553,'Schloss Saarstein','Mosel-Saar-Ruwer, Germany'); INSERT INTO "Vineyard" VALUES(554,'Clos Du Caillou','Chateauneuf-du-Pape, France - Rhone'); INSERT INTO "Vineyard" VALUES(555,'Stony Hill','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(556,'Tyler Florence','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(557,'Domaine de Rully St. Michel','Burgundy, France - Other regions'); INSERT INTO "Vineyard" VALUES(558,'Baron Herzog Winery','Other California, California'); INSERT INTO "Vineyard" VALUES(559,'Chateau Haut Bergey','Pessac-Leognan, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(560,'Mastroberardino','Southern Italy, Italy'); INSERT INTO "Vineyard" VALUES(561,'Greg Norman Estates','South Australia, Australia'); INSERT INTO "Vineyard" VALUES(562,'Jack Nicklaus','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(563,'Chateau de Fieuzal','Pessac-Leognan, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(564,'Dr. Konstantin Frank','New York, Other US'); INSERT INTO "Vineyard" VALUES(565,'Duchineri','Friuli-Venezia Giulia, Italy'); INSERT INTO "Vineyard" VALUES(566,'Bodega Morgadio','Rias Baixas, Spain'); INSERT INTO "Vineyard" VALUES(567,'PARIPASO','Central Coast, California'); INSERT INTO "Vineyard" VALUES(568,'Hamilton Russell','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(569,'Freestone Vineyards','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(570,'Good Daughter','Carneros, California'); INSERT INTO "Vineyard" VALUES(571,'Bucci','Other Italian, Italy'); INSERT INTO "Vineyard" VALUES(572,'Oliver Leflaive','Burgundy, France - Other regions'); INSERT INTO "Vineyard" VALUES(573,'Heinz Eifel','Mosel-Saar-Ruwer, Germany'); INSERT INTO "Vineyard" VALUES(574,'Chamisal Vineyards','Central Coast, California'); INSERT INTO "Vineyard" VALUES(575,'Teruzzi & Puthod','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(576,'Buena Vista Winery','Carneros, California'); INSERT INTO "Vineyard" VALUES(577,'Sonoma-Cutrer Vineyards','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(578,'Chalk Hill Winery','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(579,'Shafer Vineyards','Carneros, California'); INSERT INTO "Vineyard" VALUES(580,'The Gainey Vineyard','Central Coast, California'); INSERT INTO "Vineyard" VALUES(581,'Macrostie','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(582,'Beringer Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(583,'Clos Pegase','Carneros, California'); INSERT INTO "Vineyard" VALUES(584,'Far Niente Winery','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(585,'Browne Family Vineyards','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(586,'Clos du Val Wine Co.','Carneros, California'); INSERT INTO "Vineyard" VALUES(587,'Chateau Montelena','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(588,'Talbott','Central Coast, California'); INSERT INTO "Vineyard" VALUES(589,'Neyers','Carneros, California'); INSERT INTO "Vineyard" VALUES(590,'Buehler Vineyards','Russian River, California'); INSERT INTO "Vineyard" VALUES(591,'Rodney Strong Vineyards','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(592,'Roots Run Deep','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(593,'Dom. J Pillot','Burgundy, France - Other regions'); INSERT INTO "Vineyard" VALUES(594,'Clos du Bois Winery','North Coast, California'); INSERT INTO "Vineyard" VALUES(595,'Cuvaison Winery','Carneros, California'); INSERT INTO "Vineyard" VALUES(596,'Alderbrook Vineyards','Russian River, California'); INSERT INTO "Vineyard" VALUES(597,'Newton Vineyard','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(598,'Iron Horse','Russian River, California'); INSERT INTO "Vineyard" VALUES(599,'Black Stallion Winery','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(600,'Sebastiani Sonoma Cask Cellars','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(601,'Tasca d''Almerita','Sicily, Italy'); INSERT INTO "Vineyard" VALUES(602,'Lake Sonoma Winery','Russian River, California'); INSERT INTO "Vineyard" VALUES(603,'Sbragia Family Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(604,'Joseph Carr','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(605,'Rochiolli','Russian River, California'); INSERT INTO "Vineyard" VALUES(606,'Rombauer Vineyards','Carneros, California'); INSERT INTO "Vineyard" VALUES(607,'Vine Cliff Winery','Carneros, California'); INSERT INTO "Vineyard" VALUES(608,'Pahlmeyer','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(609,'Hartford Court','Russian River, California'); INSERT INTO "Vineyard" VALUES(610,'Domaine Drouhin Oregon','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(611,'Cambria Winery','Santa Maria Valley, California'); INSERT INTO "Vineyard" VALUES(612,'Tramin','Trentino-Alto Adige, Italy'); INSERT INTO "Vineyard" VALUES(613,'J.L. Chave Selections','Hermitage, France - Rhone'); INSERT INTO "Vineyard" VALUES(614,'Marcassin','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(615,'Schug Estate Winery','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(616,'Nickel & Nickel','Carneros, California'); INSERT INTO "Vineyard" VALUES(617,'Top Chef ','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(618,'Wyndham Estate','Other Australia, Australia'); INSERT INTO "Vineyard" VALUES(619,'The Dreaming Tree','Central Coast, California'); INSERT INTO "Vineyard" VALUES(620,'Château La Colline','Other French, France - Other regions'); INSERT INTO "Vineyard" VALUES(621,'Melville','Central Coast, California'); INSERT INTO "Vineyard" VALUES(622,'Chateau d''Yquem','Sauternes and Barsac, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(623,'Garnet','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(624,'Sine Qua Non','Other California, California'); INSERT INTO "Vineyard" VALUES(625,'Artesa Vineyards and Winery','Carneros, California'); INSERT INTO "Vineyard" VALUES(626,'Rutherford Ranch','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(627,'Foxglove','Central Coast, California'); INSERT INTO "Vineyard" VALUES(628,'St. Clement Vineyards','Carneros, California'); INSERT INTO "Vineyard" VALUES(629,'Vina Cobos','Argentina, South America'); INSERT INTO "Vineyard" VALUES(630,'Charles Krug','Carneros, California'); INSERT INTO "Vineyard" VALUES(631,'Rutherford Hill Winery','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(632,'Hayman & Hill','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(633,'Bridesmaid','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(634,'Vina Santa Rita','Chile, South America'); INSERT INTO "Vineyard" VALUES(635,'Novelty Hill','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(636,'Terredora','Other Italian, Italy'); INSERT INTO "Vineyard" VALUES(637,'Entwine','Other California, California'); INSERT INTO "Vineyard" VALUES(638,'De Martino','Chile, South America'); INSERT INTO "Vineyard" VALUES(639,'Foley Estate Winery','Santa Maria Valley, California'); INSERT INTO "Vineyard" VALUES(640,'Dutton Goldfield','Russian River, California'); INSERT INTO "Vineyard" VALUES(641,'Chateau Valandraud','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(642,'Wolf Blass','Other Australia, Australia'); INSERT INTO "Vineyard" VALUES(643,'Dom. Vincent Girardin','Burgundy, France - Other regions'); INSERT INTO "Vineyard" VALUES(644,'Au Bon Climat','Central Coast, California'); INSERT INTO "Vineyard" VALUES(645,'Lucky','Other California, California'); INSERT INTO "Vineyard" VALUES(646,'Mount Veeder Winery','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(647,'Silver Oak Alexander Valley','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(648,'Silver Oak Napa Valley','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(649,'The Prisoner','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(650,'Cameron Hughes','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(651,'Seghesio Family Vineyards','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(652,'Château Pipeau','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(653,'Mollydooker','McLaren Vale, Australia'); INSERT INTO "Vineyard" VALUES(654,'Root 1','Chile, South America'); INSERT INTO "Vineyard" VALUES(655,'Il Poggione','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(656,'DAOU Vineyards','Central Coast, California'); INSERT INTO "Vineyard" VALUES(657,'Atlas Peak Winery','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(658,'Castello di Monsanto','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(659,'Antigal','Argentina, South America'); INSERT INTO "Vineyard" VALUES(660,'Domaine La Colliere','Cotes du Rhone, France - Rhone'); INSERT INTO "Vineyard" VALUES(661,'Benziger Family Winery','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(662,'Dominus','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(663,'Tenuta Setti Ponti','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(664,'Leonetti Cellar','Walla Walla Valley, Washington'); INSERT INTO "Vineyard" VALUES(665,'Nativa','Chile, South America'); INSERT INTO "Vineyard" VALUES(666,'Andrew Murray Vineyards','Central Coast, California'); INSERT INTO "Vineyard" VALUES(667,'Quintessa','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(668,'Vinos Jeromin','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(669,'Bogle Vineyards','Central Coast, California'); INSERT INTO "Vineyard" VALUES(670,'Château Haut-Beausejour','St. Estephe, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(671,'Chateau Leoville Las Cases','St-Julien, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(672,'Avalon','Other California, California'); INSERT INTO "Vineyard" VALUES(673,'La Cartuja','Priorat, Spain'); INSERT INTO "Vineyard" VALUES(674,'Almaviva','Chile, South America'); INSERT INTO "Vineyard" VALUES(675,'Anderson''s Conn Valley Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(676,'Chateau Lynch-Bages','Pauillac, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(677,'Aurielle','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(678,'Primus','Chile, South America'); INSERT INTO "Vineyard" VALUES(679,'Chateau Pavie','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(680,'Frankland Estate','Other Australia, Australia'); INSERT INTO "Vineyard" VALUES(681,'Gorman Winery','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(682,'Mitolo','McLaren Vale, Australia'); INSERT INTO "Vineyard" VALUES(683,'Dom. de Mourchon ','Cotes du Rhone, France - Rhone'); INSERT INTO "Vineyard" VALUES(684,'Ramblin'' Man','Central Coast, California'); INSERT INTO "Vineyard" VALUES(685,'La Carraia','Other Italian, Italy'); INSERT INTO "Vineyard" VALUES(686,'Gnarly Head','Other California, California'); INSERT INTO "Vineyard" VALUES(687,'Chimney Rock Winery','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(688,'Cline','Other California, California'); INSERT INTO "Vineyard" VALUES(689,'Two Hands Wines','McLaren Vale, Australia'); INSERT INTO "Vineyard" VALUES(690,'Dunn Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(691,'Chateau La Mondotte','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(692,'Chateau Grand Puy Lacoste','Pauillac, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(693,'Thorn-Clarke','Barossa Valley, Australia'); INSERT INTO "Vineyard" VALUES(694,'7 Deadly Zins','Other California, California'); INSERT INTO "Vineyard" VALUES(695,'John Duval','Barossa Valley, Australia'); INSERT INTO "Vineyard" VALUES(696,'Hahn Estates','Central Coast, California'); INSERT INTO "Vineyard" VALUES(697,'Produttori del Barbaresco','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(698,'Ricasoli','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(699,'Kaiken','Argentina, South America'); INSERT INTO "Vineyard" VALUES(700,'Travaglini','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(701,'Tait','Barossa Valley, Australia'); INSERT INTO "Vineyard" VALUES(702,'Altesino','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(703,'Glenelly','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(704,'Evans Wine Company','Barossa Valley, Australia'); INSERT INTO "Vineyard" VALUES(705,'Domaine du Vieux Lazaret','Chateauneuf-du-Pape, France - Rhone'); INSERT INTO "Vineyard" VALUES(706,'337 ','Other California, California'); INSERT INTO "Vineyard" VALUES(707,'Chateau Rauzan Segla','Margaux, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(708,'Tikal','Argentina, South America'); INSERT INTO "Vineyard" VALUES(709,'Clos de los Siete','Argentina, South America'); INSERT INTO "Vineyard" VALUES(710,'Cliff Lede Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(711,'Fontodi','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(712,'Chateau Fombrauge','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(713,'Bodegas Ateca','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(714,'B.R. Cohn Winery','North Coast, California'); INSERT INTO "Vineyard" VALUES(715,'Chateau Branaire-Ducru','St-Julien, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(716,'Chateau Duhart-Milon-Rothschild','Pauillac, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(717,'Chateau Leoville Poyferre','St-Julien, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(718,'Ghost Block','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(719,'Bruno Giacosa','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(720,'Col Solare','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(721,'Masi','Veneto, Italy'); INSERT INTO "Vineyard" VALUES(722,'Camigliano','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(723,'CADE Winery','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(724,'Robert Keenan','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(725,'Luce Della Vite','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(726,'Bodegas Nieto Senetiner','Argentina, South America'); INSERT INTO "Vineyard" VALUES(727,'Robert Craig Cellars','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(728,'Chappellet Winery','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(729,'Urraca','Argentina, South America'); INSERT INTO "Vineyard" VALUES(730,'Valentin Bianchi','Argentina, South America'); INSERT INTO "Vineyard" VALUES(731,'Château de Pez','Margaux, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(732,'Chateau Hosanna','Pomerol, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(733,'Liber Pater','Graves, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(734,'Cordero di Montezemolo','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(735,'Chateau Chauvin','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(736,'Raineri','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(737,'Ghost Pines','Other California, California'); INSERT INTO "Vineyard" VALUES(738,'Villadoria','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(739,'Ch. Branaire-Ducru','St-Julien, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(740,'G.D. Vajra','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(741,'Bodegas Vina Magana','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(742,'Chateau Leoville Barton','St-Julien, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(743,'Pride Mountain Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(744,'Louis Martini','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(745,'Tardieu-Laurent','Cotes du Rhone, France - Rhone'); INSERT INTO "Vineyard" VALUES(746,'Castello Romitorio','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(747,'Ciacci Piccolomini d''Aragona','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(748,'Quilceda Creek Vintners','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(749,'Angelo Gaja','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(750,'Chateau Figeac','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(751,'Chateau Lascombes','Margaux, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(752,'Ladera','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(753,'Terra Valentine','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(754,'Isole e Elena','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(755,'Domus Aurea','Chile, South America'); INSERT INTO "Vineyard" VALUES(756,'Fattoria di Felsina','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(757,'BenMarco','Argentina, South America'); INSERT INTO "Vineyard" VALUES(758,'Renato Ratti','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(759,'Schild Estate','Barossa Valley, Australia'); INSERT INTO "Vineyard" VALUES(760,'Senorio de Barahonda','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(761,'Chateau Talbot','St-Julien, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(762,'Finca Luzon','Jumilla, Spain'); INSERT INTO "Vineyard" VALUES(763,'Carpe Diem','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(764,'Faust','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(765,'Chateau Mouton Rothschild','Pauillac, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(766,'Chateau Ducru Beaucaillou','St-Julien, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(767,'Vina Penalolen','Chile, South America'); INSERT INTO "Vineyard" VALUES(768,'Col d''Orcia','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(769,'Bryant Family','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(770,'Januik Winery','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(771,'Ravenswood','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(772,'Rubicon at Inglenook','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(773,'Midnight Oil','Central Coast, California'); INSERT INTO "Vineyard" VALUES(774,'Chateau Haut-Bages-Liberal','Pauillac, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(775,'Spottswoode Estate Vineyard & Winery','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(776,'Chateau Angelus','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(777,'Tenuta dell''Ornellaia','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(778,'Arnold Palmer Wines','North Coast, California'); INSERT INTO "Vineyard" VALUES(779,'Casanova di Nieri','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(780,'Numanthia','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(781,'Casa Silva','Chile, South America'); INSERT INTO "Vineyard" VALUES(782,'Chateau Malartic-Lagraviere','Pessac-Leognan, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(783,'Valdicava','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(784,'Vinedos de Paganos','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(785,'Mt. Brave','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(786,'Paul Autard','Chateauneuf-du-Pape, France - Rhone'); INSERT INTO "Vineyard" VALUES(787,'Bodegas Barco de Piedra','Ribera del Duero, Spain'); INSERT INTO "Vineyard" VALUES(788,'Chateau Les Carregades','Medoc, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(789,'Dom. Du Vieux Telegraphe ','Chateauneuf-du-Pape, France - Rhone'); INSERT INTO "Vineyard" VALUES(790,'Doubleback','Walla Walla Valley, Washington'); INSERT INTO "Vineyard" VALUES(791,'Podere Salicutti','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(792,'Lewis Cellars','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(793,'Tenuta La Badiola','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(794,'Teso la Monja','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(795,'Chateau Lagrange','St-Julien, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(796,'Andrew Will Winery','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(797,'KaDieM','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(798,'Chateau Lafite-Rothschild','Pauillac, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(799,'Chateau Pesquie','Other Rhône, France - Rhone'); INSERT INTO "Vineyard" VALUES(800,'Oberon','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(801,'Northstar','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(802,'Chateau La Grave','Medoc, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(803,'Paraduxx','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(804,'Bridlewood Winery','Central Coast, California'); INSERT INTO "Vineyard" VALUES(805,'Chateau Cheval Blanc','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(806,'Conn Creek Winery','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(807,'Cigar Zin','Other California, California'); INSERT INTO "Vineyard" VALUES(808,'Mas de Boislauzon','Chateauneuf-du-Pape, France - Rhone'); INSERT INTO "Vineyard" VALUES(809,'La Cerbaiola di Giulio Salvioni','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(810,'Ringbolt','Margaret River, Australia'); INSERT INTO "Vineyard" VALUES(811,'Uccelliera','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(812,'Castello dei Rampolla','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(813,'Château Latour','Pauillac, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(814,'Renato Corino','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(815,'Broquel','Argentina, South America'); INSERT INTO "Vineyard" VALUES(816,'M by Michael Mondavi','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(817,'Sterling Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(818,'Chateau Haut-Brion','Pessac-Leognan, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(819,'Vall Llach','Priorat, Spain'); INSERT INTO "Vineyard" VALUES(820,'Bodega Norton','Argentina, South America'); INSERT INTO "Vineyard" VALUES(821,'Figgins','Walla Walla Valley, Washington'); INSERT INTO "Vineyard" VALUES(822,'Hidden Ridge','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(823,'Vina Carmen','Chile, South America'); INSERT INTO "Vineyard" VALUES(824,'Mapema','Argentina, South America'); INSERT INTO "Vineyard" VALUES(825,'Penley Estate','Coonawarra, Australia'); INSERT INTO "Vineyard" VALUES(826,'Chateau Haut-Bailly','Pessac-Leognan, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(827,'Azienda Bisceglia','Southern Italy, Italy'); INSERT INTO "Vineyard" VALUES(828,'Maipe','Argentina, South America'); INSERT INTO "Vineyard" VALUES(829,'Fattoria dei Barbi','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(830,'Chateau La Couspaude','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(831,'O''Shaughnessy','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(832,'Cristiano Van Zeller','Portugal, Portugal'); INSERT INTO "Vineyard" VALUES(833,'Finca Decero','Argentina, South America'); INSERT INTO "Vineyard" VALUES(834,'Long Shadows','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(835,'Screaming Eagle','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(836,'Costanti','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(837,'Vinedos Emiliana','Chile, South America'); INSERT INTO "Vineyard" VALUES(838,'Domaine d''Andezon','Cotes du Rhone, France - Rhone'); INSERT INTO "Vineyard" VALUES(839,'Clos des Papes','Chateauneuf-du-Pape, France - Rhone'); INSERT INTO "Vineyard" VALUES(840,'Bodega Chakana','Argentina, South America'); INSERT INTO "Vineyard" VALUES(841,'Verite Estate','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(842,'Woodward Canyon','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(843,'Brass Tacks','Central Coast, California'); INSERT INTO "Vineyard" VALUES(844,'Maybach Family Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(845,'Spring Valley Vineyard','Walla Walla Valley, Washington'); INSERT INTO "Vineyard" VALUES(846,'Saxum','Central Coast, California'); INSERT INTO "Vineyard" VALUES(847,'Brazin','Other California, California'); INSERT INTO "Vineyard" VALUES(848,'The Vineyard House','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(849,'J. Runquist','Sierra Foothills, California'); INSERT INTO "Vineyard" VALUES(850,'Boekenhoutskloof','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(851,'Antiyal','Chile, South America'); INSERT INTO "Vineyard" VALUES(852,'Fratelli Brovia','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(853,'Bodega Septima','Argentina, South America'); INSERT INTO "Vineyard" VALUES(854,'Chateau Gazin','Pomerol, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(855,'Clos Fourtet','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(856,'Shirvington','Other Australia, Australia'); INSERT INTO "Vineyard" VALUES(857,'Montevertine','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(858,'Flora Springs Wine Company','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(859,'Chateau Nenin','Pomerol, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(860,'Blankiet','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(861,'Storybook Mountain Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(862,'Aalto','Ribera del Duero, Spain'); INSERT INTO "Vineyard" VALUES(863,'Araujo','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(864,'Hewitt Vineyard','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(865,'Di Majo Norante','Southern Italy, Italy'); INSERT INTO "Vineyard" VALUES(866,'Chateau Cos d''Estournel','St. Estephe, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(867,'Odfjell','Chile, South America'); INSERT INTO "Vineyard" VALUES(868,'Chateau Giscours','Margaux, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(869,'Venta Mazzaron','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(870,'Domenico Clerico','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(871,'Chateau Beau-Sejour-Becot','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(872,'Palacios Remondo','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(873,'The Lackey','South Australia, Australia'); INSERT INTO "Vineyard" VALUES(874,'Langmeil','Barossa Valley, Australia'); INSERT INTO "Vineyard" VALUES(875,'Kapcsandy Family Winery','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(876,'Chester-Kidder','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(877,'Miner Winery','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(878,'Domaine de Cristia','Chateauneuf-du-Pape, France - Rhone'); INSERT INTO "Vineyard" VALUES(879,'Chateau Labegorce','Margaux, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(880,'Chateau Trotanoy','Pomerol, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(881,'Von Strasser Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(882,'Bodegas Caro','Argentina, South America'); INSERT INTO "Vineyard" VALUES(883,'Chateau Certan de May','Pomerol, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(884,'Bodegas Castano','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(885,'Bodegas Ramirez de la Piscina','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(886,'Redbank','Other Australia, Australia'); INSERT INTO "Vineyard" VALUES(887,'Vina Alicia','Argentina, South America'); INSERT INTO "Vineyard" VALUES(888,'Lail Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(889,'Proprieta Sperino ','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(890,'Domaine Olivier Hillaire','Chateauneuf-du-Pape, France - Rhone'); INSERT INTO "Vineyard" VALUES(891,'Joseph Phelps Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(892,'Atalon','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(893,'Schrader Cellars','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(894,'Bodega Cuarto Domino','Argentina, South America'); INSERT INTO "Vineyard" VALUES(895,'Finca Allende','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(896,'Jaffurs Wine Cellars','Central Coast, California'); INSERT INTO "Vineyard" VALUES(897,'Cayuse','Walla Walla Valley, Washington'); INSERT INTO "Vineyard" VALUES(898,'Rust en Vrede','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(899,'Clos Les Lunelles','Cotes de Castillon, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(900,'Sloan','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(901,'Chateau Charmail','Medoc, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(902,'Chateau Belair-Monange','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(903,'Galardi','Southern Italy, Italy'); INSERT INTO "Vineyard" VALUES(904,'Tenuta di Argiano','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(905,'Michele Castellani','Veneto, Italy'); INSERT INTO "Vineyard" VALUES(906,'Purple Cowboy','Central Coast, California'); INSERT INTO "Vineyard" VALUES(907,'Mark Ryan','Other Washington, Washington'); INSERT INTO "Vineyard" VALUES(908,'Mas Doix','Priorat, Spain'); INSERT INTO "Vineyard" VALUES(909,'Futo','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(910,'Luigi Einaudi','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(911,'Chateau Balestard La Tonnelle','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(912,'Château Rollan de By','Medoc, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(913,'Chateau Sociando-Mallet','Medoc, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(914,'Chateau Pape Clement','Pessac-Leognan, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(915,'Vietti','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(916,'Bodegas Baigorri','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(917,'Domaine de la Vieille Julienne','Chateauneuf-du-Pape, France - Rhone'); INSERT INTO "Vineyard" VALUES(918,'Heitz Wine Cellars','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(919,'Bodega Sierra Norte','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(920,'Sierra Cantabria','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(921,'Finca El Origen','Argentina, South America'); INSERT INTO "Vineyard" VALUES(922,'Chateau Saint-Pierre','St-Julien, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(923,'Château Kirwan','Margaux, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(924,'Chateau Pichon-Longueville Baron','Pauillac, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(925,'Umani Ronchi','Other Italian, Italy'); INSERT INTO "Vineyard" VALUES(926,'Chateau La Mission Haut-Brion','Pessac-Leognan, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(927,'Chateau Montrose','St. Estephe, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(928,'Sequoia Grove Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(929,'Sensual','Argentina, South America'); INSERT INTO "Vineyard" VALUES(930,'Benjamin Romeo','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(931,'Turnbull Wine Cellars','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(932,'Chateau Clos L''Eglise','Cotes de Castillon, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(933,'Poggio Antico','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(934,'Chateau Haut Condissas','Medoc, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(935,'Chateau Canon','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(936,'Etude Wines','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(937,'Agharta','North Coast, California'); INSERT INTO "Vineyard" VALUES(938,'Goldschmidt Vineyard','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(939,'Vinas del Cenit','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(940,'Chateau Margaux','Margaux, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(941,'Staglin Family Vineyard','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(942,'Bodegas Carchelo','Jumilla, Spain'); INSERT INTO "Vineyard" VALUES(943,'Capanna','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(944,'Chateau La Fleur de Gay','Pomerol, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(945,'Elvio Cogno','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(946,'Chateau Labegorce Zede','Margaux, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(947,'Chateau. Lynch Moussas','Pauillac, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(948,'Tablas Creek Vineyard','Central Coast, California'); INSERT INTO "Vineyard" VALUES(949,'Poggio Il Castellare','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(950,'Chateau Canon La Gaffeliere','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(951,'Château Patache d''Aux','Medoc, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(952,'Chateau Sainte Colombe','Cotes de Castillon, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(953,'Luciano Sandrone','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(954,'Fabre Montmayou','Argentina, South America'); INSERT INTO "Vineyard" VALUES(955,'Chateau Desmirail','Margaux, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(956,'Orma','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(957,'Chateau LaTour Martillac','Pessac-Leognan, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(958,'Chateau Colombier Monpelou','Pauillac, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(959,'Rene Boulay','Chateauneuf-du-Pape, France - Rhone'); INSERT INTO "Vineyard" VALUES(960,'Lyeth Winery','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(961,'Cousino Macul','Chile, South America'); INSERT INTO "Vineyard" VALUES(962,'Chateau Croizet Bages','Pauillac, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(963,'Domaine Sorin','Other Rhône, France - Rhone'); INSERT INTO "Vineyard" VALUES(964,'Dominio de Tares','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(965,'Bolla','Veneto, Italy'); INSERT INTO "Vineyard" VALUES(966,'Three Rivers Winery','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(967,'Hartwell','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(968,'Arrowood Vineyards & Winery','Russian River, California'); INSERT INTO "Vineyard" VALUES(969,'Saggi','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(970,'Lisini','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(971,'Vina Santa Carolina','Chile, South America'); INSERT INTO "Vineyard" VALUES(972,'Le Macchiole','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(973,'Moone-Tsai','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(974,'Enrique Foster','Argentina, South America'); INSERT INTO "Vineyard" VALUES(975,'Just Joshin','Other California, California'); INSERT INTO "Vineyard" VALUES(976,'Chateau Serame','Languedoc-Roussillon, France - Other regions'); INSERT INTO "Vineyard" VALUES(977,'Maculan','Veneto, Italy'); INSERT INTO "Vineyard" VALUES(978,'Maycas del Limari','Chile, South America'); INSERT INTO "Vineyard" VALUES(979,'Herb Lamb','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(980,'Arcanum','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(981,'Castellare','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(982,'Imprimata','McLaren Vale, Australia'); INSERT INTO "Vineyard" VALUES(983,'Tenuta Caparzo','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(984,'Achával-Ferrer ','Argentina, South America'); INSERT INTO "Vineyard" VALUES(985,'Chateau Croix de Labrie','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(986,'Crocker & Starr','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(987,'M. Marengo','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(988,'Robert Biale Vineyards','Other California, California'); INSERT INTO "Vineyard" VALUES(989,'Craneford','Other Australia, Australia'); INSERT INTO "Vineyard" VALUES(990,'Paitin','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(991,'Booker Vineyard','Central Coast, California'); INSERT INTO "Vineyard" VALUES(992,'Chateau Faugeres','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(993,'Revana','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(994,'Greenock Creek','Barossa Valley, Australia'); INSERT INTO "Vineyard" VALUES(995,'L''Aventure','Central Coast, California'); INSERT INTO "Vineyard" VALUES(996,'Round Pond','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(997,'Adega Pena das Donas','Ribera del Duero, Spain'); INSERT INTO "Vineyard" VALUES(998,'Martinelli','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(999,'Durigutti','Argentina, South America'); INSERT INTO "Vineyard" VALUES(1000,'Twenty Bench','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1001,'Castello di Bossi','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1002,'Episode','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1003,'Chateau Larcis-Ducasse','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1004,'Red Car Wine Company','Other California, California'); INSERT INTO "Vineyard" VALUES(1005,'Honig Vineyard & Winery','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1006,'Fox Creek Vineyards','Other Australia, Australia'); INSERT INTO "Vineyard" VALUES(1007,'Chateau Palmer','Margaux, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1008,'Glaetzer','Barossa Valley, Australia'); INSERT INTO "Vineyard" VALUES(1009,'La Spinetta','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(1010,'Rhys Vineyards','Santa Cruz Mountains, California'); INSERT INTO "Vineyard" VALUES(1011,'Tensley','Other California, California'); INSERT INTO "Vineyard" VALUES(1012,'Castello di Querceto','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1013,'Chateau Julien','Central Coast, California'); INSERT INTO "Vineyard" VALUES(1014,'Dom. La Garrigue','Cotes du Rhone, France - Rhone'); INSERT INTO "Vineyard" VALUES(1015,'Belasco de Baquedano','Argentina, South America'); INSERT INTO "Vineyard" VALUES(1016,'Chateau La Tour Carnet','Medoc, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1017,'Merus','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1018,'Badia a Coltibuono','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1019,'Melka Wines','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1020,'Carruades de Lafite','Pauillac, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1021,'Abreu Vineyard','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1022,'Continuum','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1023,'Chateau Gloria','St-Julien, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1024,'Trinchero Napa Valley','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1025,'Innocent Bystander','Yarra Valley, Australia'); INSERT INTO "Vineyard" VALUES(1026,'RouteStock','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(1027,'Escarpment Vineyards','Martinborough, New Zealand'); INSERT INTO "Vineyard" VALUES(1028,'Cloudline','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(1029,'Valle Reale','Other Italian, Italy'); INSERT INTO "Vineyard" VALUES(1030,'Henry Fessy','Beaujolais, France - Other regions'); INSERT INTO "Vineyard" VALUES(1031,'Tortoise Creek','Languedoc-Roussillon, France - Other regions'); INSERT INTO "Vineyard" VALUES(1032,'Fattoria del Cerro','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1033,'Louis Bernard','Cotes du Rhone, France - Rhone'); INSERT INTO "Vineyard" VALUES(1034,'Cune','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(1035,'JCB by Jean-Charles Boisset','North Coast, California'); INSERT INTO "Vineyard" VALUES(1036,'Castello di Verrazzano','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1037,'Borgo Magredo','Friuli-Venezia Giulia, Italy'); INSERT INTO "Vineyard" VALUES(1038,'Domaine Collin Bourisset','Beaujolais, France - Other regions'); INSERT INTO "Vineyard" VALUES(1039,'Liberty School','Central Coast, California'); INSERT INTO "Vineyard" VALUES(1040,'14 Hands','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(1041,'Tilia','Argentina, South America'); INSERT INTO "Vineyard" VALUES(1042,'Belle Glos','Other California, California'); INSERT INTO "Vineyard" VALUES(1043,'Cusumano','Sicily, Italy'); INSERT INTO "Vineyard" VALUES(1044,'Waterbrook Winery','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(1045,'James Oatley','Other Australia, Australia'); INSERT INTO "Vineyard" VALUES(1046,'Castello di Monte Antico','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1047,'Razor''s Edge','McLaren Vale, Australia'); INSERT INTO "Vineyard" VALUES(1048,'Bodegas Salentein','Argentina, South America'); INSERT INTO "Vineyard" VALUES(1049,'Allegrini','Veneto, Italy'); INSERT INTO "Vineyard" VALUES(1050,'Marchesi di Barolo','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(1051,'Vina Zaco','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(1052,'Punto Final','Argentina, South America'); INSERT INTO "Vineyard" VALUES(1053,'Montebuena','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(1054,'Zolo','Argentina, South America'); INSERT INTO "Vineyard" VALUES(1055,'Domaine Clavel','Cotes du Rhone, France - Rhone'); INSERT INTO "Vineyard" VALUES(1056,'Domaine Serene','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(1057,'Folonari','Veneto, Italy'); INSERT INTO "Vineyard" VALUES(1058,'Terrabianca','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1059,'Kings Ridge','Other Oregon, Oregon'); INSERT INTO "Vineyard" VALUES(1060,'Evodia','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(1061,'La Maialina','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1062,'Edmeades','North Coast, California'); INSERT INTO "Vineyard" VALUES(1063,'Bodegas Beronia','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(1064,'Roco','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(1065,'Chateau La Croix De Gay','Pomerol, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1066,'Dierberg','Santa Maria Valley, California'); INSERT INTO "Vineyard" VALUES(1067,'Excelsior','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(1068,'Menage a Trois','Other California, California'); INSERT INTO "Vineyard" VALUES(1069,'Elvis Presley Wine Cellars','Other California, California'); INSERT INTO "Vineyard" VALUES(1070,'Poggio Scalette','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1071,'Chateau la Vieille Cure','Fronsac, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1072,'Cherry Pie','Carneros, California'); INSERT INTO "Vineyard" VALUES(1073,'Almira','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(1074,'The Donum Estate','Carneros, California'); INSERT INTO "Vineyard" VALUES(1075,'Josh Cellars','North Coast, California'); INSERT INTO "Vineyard" VALUES(1076,'Descendientes de Jose Palacios','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(1077,'Dona Paula','Argentina, South America'); INSERT INTO "Vineyard" VALUES(1078,'Chateau La Fleur Cardinale','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1079,'The Show','Other California, California'); INSERT INTO "Vineyard" VALUES(1080,'Zaccagnini','Other Italian, Italy'); INSERT INTO "Vineyard" VALUES(1081,'Taltarni','Victoria, Australia'); INSERT INTO "Vineyard" VALUES(1082,'Artezin','North Coast, California'); INSERT INTO "Vineyard" VALUES(1083,'Alta Vista','Argentina, South America'); INSERT INTO "Vineyard" VALUES(1084,'Mazzoni','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1085,'Black Chook','Other Australia, Australia'); INSERT INTO "Vineyard" VALUES(1086,'Chateau Bernadotte','Medoc, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1087,'Chateau Puynormond','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1088,'Bodegas Jimenez Landi','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(1089,'Chateau Beychevelle','St-Julien, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1090,'Castello di Fonterutoli','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1091,'Castello di Volpaia','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1092,'Red Diamond','Other Washington, Washington'); INSERT INTO "Vineyard" VALUES(1093,'Michele Chiarlo','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(1094,'Cycles Gladiator','Other California, California'); INSERT INTO "Vineyard" VALUES(1095,'Bodegas Lan','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(1096,'Mark West','Other California, California'); INSERT INTO "Vineyard" VALUES(1097,'Westrey','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(1098,'Zinfandelic','Sierra Foothills, California'); INSERT INTO "Vineyard" VALUES(1099,'Raptor Ridge Winery','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(1100,'Goldeneye','North Coast, California'); INSERT INTO "Vineyard" VALUES(1101,'Hawk Crest','Other California, California'); INSERT INTO "Vineyard" VALUES(1102,'Atalaya','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(1103,'Fontanafredda','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(1104,'Caricature','Other California, California'); INSERT INTO "Vineyard" VALUES(1105,'Feudi di San Gregorio','Southern Italy, Italy'); INSERT INTO "Vineyard" VALUES(1106,'Tenuta di Arceno','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1107,'Beso de Vino','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(1108,'Carletto','Other Italian, Italy'); INSERT INTO "Vineyard" VALUES(1109,'Arnaldo Caprai Val di Maggio','Other Italian, Italy'); INSERT INTO "Vineyard" VALUES(1110,'Nita','Priorat, Spain'); INSERT INTO "Vineyard" VALUES(1111,'Chateau Lafleur-Gazin','Pomerol, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1112,'Passopisciaro','Sicily, Italy'); INSERT INTO "Vineyard" VALUES(1113,'Twomey Cellars by Silver Oak','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1114,'Campos Reales','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(1115,'Aia Vecchia','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1116,'Chateau Puy Blanquet','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1117,'Piccini','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1118,'Blackbird Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1119,'Colosi','Sicily, Italy'); INSERT INTO "Vineyard" VALUES(1120,'Bodegas Izadi','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(1121,'Cantine Leonardo da Vinci','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1122,'MacMurray Ranch','Central Coast, California'); INSERT INTO "Vineyard" VALUES(1123,'Penner-Ash','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(1124,'Woop Woop','Other Australia, Australia'); INSERT INTO "Vineyard" VALUES(1125,'Estancia','Central Coast, California'); INSERT INTO "Vineyard" VALUES(1126,'Tenuta di Vignole','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1127,'Rocca di Frassinello','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1128,'Spellbound','Other California, California'); INSERT INTO "Vineyard" VALUES(1129,'Regaleali','Sicily, Italy'); INSERT INTO "Vineyard" VALUES(1130,'Bodegas Bilbainas','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(1131,'Beaux Freres Vineyard','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(1132,'Formidable','North Coast, California'); INSERT INTO "Vineyard" VALUES(1133,'Finca Flichman','Argentina, South America'); INSERT INTO "Vineyard" VALUES(1134,'Prelius','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1135,'BearBoat','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(1136,'Swanson','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1137,'Bodegas Dinastia Vivanco','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(1138,'Behrens & Hitchcock','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1139,'Finca Sophenia','Argentina, South America'); INSERT INTO "Vineyard" VALUES(1140,'Boedecker Cellars','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(1141,'Clos Manou','Medoc, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1142,'Poggio San Polo','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1143,'Château Paradis Casseuil','Other Bordeaux, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1144,'Beyond','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(1145,'Cryptic','Other California, California'); INSERT INTO "Vineyard" VALUES(1146,'Pillar Box','South Australia, Australia'); INSERT INTO "Vineyard" VALUES(1147,'Chateau Lassegue','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1148,'Archery Summit Winery','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(1149,'Rex Hill','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(1150,'Chateau Meyney','St. Estephe, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1151,'Chateau Pichon-Longueville-Comtesse de Lalande','Pauillac, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1152,'Sartori','Other Italian, Italy'); INSERT INTO "Vineyard" VALUES(1153,'Hedges Family Estate','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(1154,'BV Century Cellars','Other California, California'); INSERT INTO "Vineyard" VALUES(1155,'Mossback','Russian River, California'); INSERT INTO "Vineyard" VALUES(1156,'Castello di Terriccio','Other Italian, Italy'); INSERT INTO "Vineyard" VALUES(1157,'Bodegas Sierra Salinas','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(1158,'Rivera','Southern Italy, Italy'); INSERT INTO "Vineyard" VALUES(1159,'Feudo Maccari','Sicily, Italy'); INSERT INTO "Vineyard" VALUES(1160,'Vesevo','Other Italian, Italy'); INSERT INTO "Vineyard" VALUES(1161,'Chateau Bellevue-Mondotte','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1162,'Outlier','Carneros, California'); INSERT INTO "Vineyard" VALUES(1163,'Chateau La Dominique','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1164,'Guardian''s Peak','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(1165,'J. Hofstatter','Trentino-Alto Adige, Italy'); INSERT INTO "Vineyard" VALUES(1166,'Chateau L''Eglise Clinet','Pomerol, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1167,'Bibi Graetz','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1168,'Chateau Brillette','Medoc, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1169,'Poggiotondo','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1170,'Bodegas Y Vinedos O. Fournier','Argentina, South America'); INSERT INTO "Vineyard" VALUES(1171,'Tangley Oaks','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1172,'Renzo Masi','Other Italian, Italy'); INSERT INTO "Vineyard" VALUES(1173,'Tin Roof','Other California, California'); INSERT INTO "Vineyard" VALUES(1174,'Cheval des Andes','Argentina, South America'); INSERT INTO "Vineyard" VALUES(1175,'Piattelli','Argentina, South America'); INSERT INTO "Vineyard" VALUES(1176,'La Gerla','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1177,'Hecht & Bannier','Languedoc-Roussillon, France - Other regions'); INSERT INTO "Vineyard" VALUES(1178,'Wild Horse','Central Coast, California'); INSERT INTO "Vineyard" VALUES(1179,'Elios','Greece, Greece'); INSERT INTO "Vineyard" VALUES(1180,'Elio Grasso','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(1181,'Mr. Riggs','Other Australia, Australia'); INSERT INTO "Vineyard" VALUES(1182,'Yering Station','Yarra Valley, Australia'); INSERT INTO "Vineyard" VALUES(1183,'Provenance Vineyards','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1184,'Capezzana','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1185,'Forefront by Pine Ridge','Other California, California'); INSERT INTO "Vineyard" VALUES(1186,'Firesteed','Other Oregon, Oregon'); INSERT INTO "Vineyard" VALUES(1187,'Luigi Pira','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(1188,'Ricardo Santos','Argentina, South America'); INSERT INTO "Vineyard" VALUES(1189,'Beast','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(1190,'Pedestal','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(1191,'WillaKenzie Estate','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(1192,'Pegasus Bay ','Other New Zealand, New Zealand'); INSERT INTO "Vineyard" VALUES(1193,'Bodegas Vega Sicilia','Ribera del Duero, Spain'); INSERT INTO "Vineyard" VALUES(1194,'First Drop','Barossa Valley, Australia'); INSERT INTO "Vineyard" VALUES(1195,'Hangtime','Other California, California'); INSERT INTO "Vineyard" VALUES(1196,'Mas de la Dame','Provence, France - Other regions'); INSERT INTO "Vineyard" VALUES(1197,'Chateau Cap de Faugeres','Cotes de Castillon, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1198,'Yangarra Estate','McLaren Vale, Australia'); INSERT INTO "Vineyard" VALUES(1199,'Three Saints','Central Coast, California'); INSERT INTO "Vineyard" VALUES(1200,'Bernardus','Central Coast, California'); INSERT INTO "Vineyard" VALUES(1201,'Cimicky','Barossa Valley, Australia'); INSERT INTO "Vineyard" VALUES(1202,'Pirie Tasmania','Other Australia, Australia'); INSERT INTO "Vineyard" VALUES(1203,'Iona','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(1204,'Neudorf','Other New Zealand, New Zealand'); INSERT INTO "Vineyard" VALUES(1205,'Eberle Winery','Central Coast, California'); INSERT INTO "Vineyard" VALUES(1206,'promisQous','Other California, California'); INSERT INTO "Vineyard" VALUES(1207,'Franciscan Oakville Estate','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1208,'Bodegas Palacio','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(1209,'High Note','Argentina, South America'); INSERT INTO "Vineyard" VALUES(1210,'Roger Sabon','Chateauneuf-du-Pape, France - Rhone'); INSERT INTO "Vineyard" VALUES(1211,'Capcanes','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(1212,'Oliverhill','McLaren Vale, Australia'); INSERT INTO "Vineyard" VALUES(1213,'Llai Llai','Chile, South America'); INSERT INTO "Vineyard" VALUES(1214,'Tua Rita','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1215,'Charles & Charles','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(1216,'Cardinale','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1217,'Faustino','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(1218,'Fantinel','Friuli-Venezia Giulia, Italy'); INSERT INTO "Vineyard" VALUES(1219,'Folie a Deux Winery','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(1220,'Leone de Castris','Other Italian, Italy'); INSERT INTO "Vineyard" VALUES(1221,'Emilio Moro','Ribera del Duero, Spain'); INSERT INTO "Vineyard" VALUES(1222,'Chateau de Chantegrive','Graves, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1223,'Robert Stemmler','Carneros, California'); INSERT INTO "Vineyard" VALUES(1224,'Querciabella','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1225,'Laurel Glen Vineyards','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(1226,'Quinta do Crasto','Portugal, Portugal'); INSERT INTO "Vineyard" VALUES(1227,'Château Greysac','Medoc, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1228,'Chateau Barde Haut','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1229,'Chateau Poujeaux','Medoc, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1230,'Domaine Du Castel','Israel, Israel'); INSERT INTO "Vineyard" VALUES(1231,'Chateau L''Evangile','Pomerol, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1232,'Chateau La Gaffeliere','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1233,'Chateau Berliquet','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1234,'Petrolo','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1235,'Bodegas Filon ','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(1236,'Davis Bynum','Russian River, California'); INSERT INTO "Vineyard" VALUES(1237,'Wine Spots','Carneros, California'); INSERT INTO "Vineyard" VALUES(1238,'Chateau Cos Labory','St. Estephe, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1239,'Chateau Maucaillou','Medoc, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1240,'Chateau La Commanderie','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1241,'Chateau Lusseau','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1242,'Vina Ventisquero','Chile, South America'); INSERT INTO "Vineyard" VALUES(1243,'Ksana','Argentina, South America'); INSERT INTO "Vineyard" VALUES(1244,'Andre Brunel','Cotes du Rhone, France - Rhone'); INSERT INTO "Vineyard" VALUES(1245,'Cellar Pasanau','Priorat, Spain'); INSERT INTO "Vineyard" VALUES(1246,'Kosta Browne','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(1247,'Guarachi','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(1248,'Domaine Mathieu Coste','Loire, France - Other regions'); INSERT INTO "Vineyard" VALUES(1249,'Mount Eden Vineyards','Santa Cruz Mountains, California'); INSERT INTO "Vineyard" VALUES(1250,'San Felice','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1251,'Tenuta la Marchesa','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(1252,'Indaba','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(1253,'Clos Saron','Sierra Foothills, California'); INSERT INTO "Vineyard" VALUES(1254,'Conterno Fantino','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(1255,'Duorum','Portugal, Portugal'); INSERT INTO "Vineyard" VALUES(1256,'Bodegas Muriel','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(1257,'Sagelands Vineyard','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(1258,'Domaine de la Vougeraie','Burgundy, France - Other regions'); INSERT INTO "Vineyard" VALUES(1259,'Ambra','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1260,'Bodegas O. Fournier','Ribera del Duero, Spain'); INSERT INTO "Vineyard" VALUES(1261,'Domaine Faiveley','Burgundy, France - Other regions'); INSERT INTO "Vineyard" VALUES(1262,'Exopto Cellars ','Rioja, Spain'); INSERT INTO "Vineyard" VALUES(1263,'Marcarini','Piedmont, Italy'); INSERT INTO "Vineyard" VALUES(1264,'Selection Laurence Feraud','Cotes du Rhone, France - Rhone'); INSERT INTO "Vineyard" VALUES(1265,'Cantina Santadi','Sardinia, Italy'); INSERT INTO "Vineyard" VALUES(1266,'Stone Cellars by Beringer','Other California, California'); INSERT INTO "Vineyard" VALUES(1267,'Hourglass','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1268,'Chateau Grand Village','Other Bordeaux, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1269,'Planeta','Southern Italy, Italy'); INSERT INTO "Vineyard" VALUES(1270,'Jose Maria Da Fonseca','Portugal, Portugal'); INSERT INTO "Vineyard" VALUES(1271,'Beau Joubert','South Africa, South Africa'); INSERT INTO "Vineyard" VALUES(1272,'Creta','Ribera del Duero, Spain'); INSERT INTO "Vineyard" VALUES(1273,'Solar de Urbezo','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(1274,'Maison Roche de Bellene','Burgundy, France - Other regions'); INSERT INTO "Vineyard" VALUES(1275,'Château Berliquet','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1276,'Château Fonroque','St-Emilion, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1277,'Trapiche','Argentina, South America'); INSERT INTO "Vineyard" VALUES(1278,'Chateau Potensac','Medoc, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1279,'Domaine Fourrier','Burgundy, France - Other regions'); INSERT INTO "Vineyard" VALUES(1280,'Torresella Winery','Sicily, Italy'); INSERT INTO "Vineyard" VALUES(1281,'Finca Sobreno','Other Spain, Spain'); INSERT INTO "Vineyard" VALUES(1282,'Bodega Noemia de Patagonia','Argentina, South America'); INSERT INTO "Vineyard" VALUES(1283,'David Arthur','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1284,' Pedroncelli Winery','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(1285,'Chateau Saint Sulpice','Other Bordeaux, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1286,'Fort Ross','Sonoma County, California'); INSERT INTO "Vineyard" VALUES(1287,'Domaine de la Romanee Conti','Burgundy, France - Other regions'); INSERT INTO "Vineyard" VALUES(1288,'O Wines','Columbia Valley, Washington'); INSERT INTO "Vineyard" VALUES(1289,'Podernuovo a Palazzone','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1290,'Chateau Musar','Austria, Other Europe'); INSERT INTO "Vineyard" VALUES(1291,'Dalla Valle','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1292,'Arleyna','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1293,'Castello D''Albola','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1294,'Anomaly','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1295,'Antucura','Argentina, South America'); INSERT INTO "Vineyard" VALUES(1296,'Lange Winery','Willamette Valley, Oregon'); INSERT INTO "Vineyard" VALUES(1297,'Terrazas de los Andes','Argentina, South America'); INSERT INTO "Vineyard" VALUES(1298,'Chateau Puech-Haut','Languedoc-Roussillon, France - Other regions'); INSERT INTO "Vineyard" VALUES(1299,'Il Palazzone','Tuscany, Italy'); INSERT INTO "Vineyard" VALUES(1300,'Grace Family','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1301,'Running With Bulls','Barossa Valley, Australia'); INSERT INTO "Vineyard" VALUES(1302,'Meyer Family Cellars','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1303,'Chateau de Sales','Pomerol, France - Bordeaux'); INSERT INTO "Vineyard" VALUES(1304,'Emblem','Napa Valley, California'); INSERT INTO "Vineyard" VALUES(1305,'Erath Vineyards','Other Oregon, Oregon'); CREATE TABLE Descriptor (_id INTEGER PRIMARY KEY AUTOINCREMENT, Name TEXT UNIQUE NOT NULL); INSERT INTO "Descriptor" VALUES(0,'light'); INSERT INTO "Descriptor" VALUES(1,'fruity'); INSERT INTO "Descriptor" VALUES(2,'smooth'); INSERT INTO "Descriptor" VALUES(3,'supple'); INSERT INTO "Descriptor" VALUES(4,'earthy'); INSERT INTO "Descriptor" VALUES(5,'spicy'); INSERT INTO "Descriptor" VALUES(6,'big'); INSERT INTO "Descriptor" VALUES(7,'bold'); INSERT INTO "Descriptor" VALUES(8,'crisp'); INSERT INTO "Descriptor" VALUES(9,'rich'); INSERT INTO "Descriptor" VALUES(10,'creamy'); CREATE TABLE Wine_Variety (_id INTEGER PRIMARY KEY AUTOINCREMENT, Wine_ID INTEGER REFERENCES Wine(ID) ON DELETE CASCADE, Variety_ID INTEGER REFERENCES Variety(ID) ON DELETE CASCADE); INSERT INTO "Wine_Variety" VALUES(1,1,1); INSERT INTO "Wine_Variety" VALUES(2,2,2); INSERT INTO "Wine_Variety" VALUES(3,3,3); INSERT INTO "Wine_Variety" VALUES(4,4,4); INSERT INTO "Wine_Variety" VALUES(5,5,5); INSERT INTO "Wine_Variety" VALUES(6,6,6); INSERT INTO "Wine_Variety" VALUES(7,7,7); INSERT INTO "Wine_Variety" VALUES(8,8,8); INSERT INTO "Wine_Variety" VALUES(9,9,9); INSERT INTO "Wine_Variety" VALUES(10,10,10); INSERT INTO "Wine_Variety" VALUES(11,11,11); INSERT INTO "Wine_Variety" VALUES(12,12,12); INSERT INTO "Wine_Variety" VALUES(13,13,13); INSERT INTO "Wine_Variety" VALUES(14,14,1); INSERT INTO "Wine_Variety" VALUES(15,15,14); INSERT INTO "Wine_Variety" VALUES(16,16,3); INSERT INTO "Wine_Variety" VALUES(17,17,15); INSERT INTO "Wine_Variety" VALUES(18,18,16); INSERT INTO "Wine_Variety" VALUES(19,19,17); INSERT INTO "Wine_Variety" VALUES(20,20,18); INSERT INTO "Wine_Variety" VALUES(21,21,19); INSERT INTO "Wine_Variety" VALUES(22,22,20); INSERT INTO "Wine_Variety" VALUES(23,23,21); INSERT INTO "Wine_Variety" VALUES(24,24,22); INSERT INTO "Wine_Variety" VALUES(25,25,23); INSERT INTO "Wine_Variety" VALUES(26,26,24); INSERT INTO "Wine_Variety" VALUES(27,27,25); INSERT INTO "Wine_Variety" VALUES(28,28,26); INSERT INTO "Wine_Variety" VALUES(29,29,27); INSERT INTO "Wine_Variety" VALUES(30,30,28); INSERT INTO "Wine_Variety" VALUES(31,31,29); INSERT INTO "Wine_Variety" VALUES(32,32,30); INSERT INTO "Wine_Variety" VALUES(33,33,31); INSERT INTO "Wine_Variety" VALUES(34,34,32); INSERT INTO "Wine_Variety" VALUES(35,35,33); INSERT INTO "Wine_Variety" VALUES(36,36,34); INSERT INTO "Wine_Variety" VALUES(37,37,35); INSERT INTO "Wine_Variety" VALUES(38,38,36); INSERT INTO "Wine_Variety" VALUES(39,39,37); INSERT INTO "Wine_Variety" VALUES(40,40,38); INSERT INTO "Wine_Variety" VALUES(41,41,10); INSERT INTO "Wine_Variety" VALUES(42,42,39); INSERT INTO "Wine_Variety" VALUES(43,43,28); INSERT INTO "Wine_Variety" VALUES(44,44,40); INSERT INTO "Wine_Variety" VALUES(45,45,41); INSERT INTO "Wine_Variety" VALUES(46,46,42); INSERT INTO "Wine_Variety" VALUES(47,47,43); INSERT INTO "Wine_Variety" VALUES(48,48,44); INSERT INTO "Wine_Variety" VALUES(49,49,45); INSERT INTO "Wine_Variety" VALUES(50,50,46); INSERT INTO "Wine_Variety" VALUES(51,51,47); INSERT INTO "Wine_Variety" VALUES(52,52,48); INSERT INTO "Wine_Variety" VALUES(53,53,49); INSERT INTO "Wine_Variety" VALUES(54,54,50); INSERT INTO "Wine_Variety" VALUES(55,55,51); INSERT INTO "Wine_Variety" VALUES(56,56,52); INSERT INTO "Wine_Variety" VALUES(57,57,53); INSERT INTO "Wine_Variety" VALUES(58,58,54); INSERT INTO "Wine_Variety" VALUES(59,59,55); INSERT INTO "Wine_Variety" VALUES(60,60,56); INSERT INTO "Wine_Variety" VALUES(61,61,57); INSERT INTO "Wine_Variety" VALUES(62,62,17); INSERT INTO "Wine_Variety" VALUES(63,63,58); INSERT INTO "Wine_Variety" VALUES(64,64,59); INSERT INTO "Wine_Variety" VALUES(65,65,60); INSERT INTO "Wine_Variety" VALUES(66,66,28); INSERT INTO "Wine_Variety" VALUES(67,67,61); INSERT INTO "Wine_Variety" VALUES(68,68,62); INSERT INTO "Wine_Variety" VALUES(69,69,20); INSERT INTO "Wine_Variety" VALUES(70,70,63); INSERT INTO "Wine_Variety" VALUES(71,71,64); INSERT INTO "Wine_Variety" VALUES(72,72,65); INSERT INTO "Wine_Variety" VALUES(73,73,66); INSERT INTO "Wine_Variety" VALUES(74,74,67); INSERT INTO "Wine_Variety" VALUES(75,75,68); INSERT INTO "Wine_Variety" VALUES(76,76,69); INSERT INTO "Wine_Variety" VALUES(77,77,70); INSERT INTO "Wine_Variety" VALUES(78,78,71); INSERT INTO "Wine_Variety" VALUES(79,79,72); INSERT INTO "Wine_Variety" VALUES(80,80,73); INSERT INTO "Wine_Variety" VALUES(81,81,74); INSERT INTO "Wine_Variety" VALUES(82,82,75); INSERT INTO "Wine_Variety" VALUES(83,83,76); INSERT INTO "Wine_Variety" VALUES(84,84,77); INSERT INTO "Wine_Variety" VALUES(85,85,78); INSERT INTO "Wine_Variety" VALUES(86,86,79); INSERT INTO "Wine_Variety" VALUES(87,87,9); INSERT INTO "Wine_Variety" VALUES(88,88,80); INSERT INTO "Wine_Variety" VALUES(89,89,81); INSERT INTO "Wine_Variety" VALUES(90,90,15); INSERT INTO "Wine_Variety" VALUES(91,91,37); INSERT INTO "Wine_Variety" VALUES(92,92,34); INSERT INTO "Wine_Variety" VALUES(93,93,82); INSERT INTO "Wine_Variety" VALUES(94,94,83); INSERT INTO "Wine_Variety" VALUES(95,95,84); INSERT INTO "Wine_Variety" VALUES(96,96,17); INSERT INTO "Wine_Variety" VALUES(97,97,85); INSERT INTO "Wine_Variety" VALUES(98,98,86); INSERT INTO "Wine_Variety" VALUES(99,99,63); INSERT INTO "Wine_Variety" VALUES(100,100,87); INSERT INTO "Wine_Variety" VALUES(101,101,88); INSERT INTO "Wine_Variety" VALUES(102,102,89); INSERT INTO "Wine_Variety" VALUES(103,103,90); INSERT INTO "Wine_Variety" VALUES(104,104,91); INSERT INTO "Wine_Variety" VALUES(105,105,92); INSERT INTO "Wine_Variety" VALUES(106,106,93); INSERT INTO "Wine_Variety" VALUES(107,107,94); INSERT INTO "Wine_Variety" VALUES(108,108,95); INSERT INTO "Wine_Variety" VALUES(109,109,96); INSERT INTO "Wine_Variety" VALUES(110,110,97); INSERT INTO "Wine_Variety" VALUES(111,111,75); INSERT INTO "Wine_Variety" VALUES(112,112,98); INSERT INTO "Wine_Variety" VALUES(113,113,99); INSERT INTO "Wine_Variety" VALUES(114,114,100); INSERT INTO "Wine_Variety" VALUES(115,115,101); INSERT INTO "Wine_Variety" VALUES(116,116,102); INSERT INTO "Wine_Variety" VALUES(117,117,3); INSERT INTO "Wine_Variety" VALUES(118,118,103); INSERT INTO "Wine_Variety" VALUES(119,119,104); INSERT INTO "Wine_Variety" VALUES(120,120,105); INSERT INTO "Wine_Variety" VALUES(121,121,93); INSERT INTO "Wine_Variety" VALUES(122,122,106); INSERT INTO "Wine_Variety" VALUES(123,123,77); INSERT INTO "Wine_Variety" VALUES(124,124,107); INSERT INTO "Wine_Variety" VALUES(125,125,108); INSERT INTO "Wine_Variety" VALUES(126,126,109); INSERT INTO "Wine_Variety" VALUES(127,127,110); INSERT INTO "Wine_Variety" VALUES(128,128,97); INSERT INTO "Wine_Variety" VALUES(129,129,111); INSERT INTO "Wine_Variety" VALUES(130,130,112); INSERT INTO "Wine_Variety" VALUES(131,131,55); INSERT INTO "Wine_Variety" VALUES(132,132,113); INSERT INTO "Wine_Variety" VALUES(133,133,114); INSERT INTO "Wine_Variety" VALUES(134,134,115); INSERT INTO "Wine_Variety" VALUES(135,135,116); INSERT INTO "Wine_Variety" VALUES(136,136,117); INSERT INTO "Wine_Variety" VALUES(137,137,118); INSERT INTO "Wine_Variety" VALUES(138,138,119); INSERT INTO "Wine_Variety" VALUES(139,139,120); INSERT INTO "Wine_Variety" VALUES(140,140,3); INSERT INTO "Wine_Variety" VALUES(141,141,121); INSERT INTO "Wine_Variety" VALUES(142,142,95); INSERT INTO "Wine_Variety" VALUES(143,143,122); INSERT INTO "Wine_Variety" VALUES(144,144,48); INSERT INTO "Wine_Variety" VALUES(145,145,123); INSERT INTO "Wine_Variety" VALUES(146,146,124); INSERT INTO "Wine_Variety" VALUES(147,147,125); INSERT INTO "Wine_Variety" VALUES(148,148,63); INSERT INTO "Wine_Variety" VALUES(149,149,16); INSERT INTO "Wine_Variety" VALUES(150,150,121); INSERT INTO "Wine_Variety" VALUES(151,151,126); INSERT INTO "Wine_Variety" VALUES(152,152,127); INSERT INTO "Wine_Variety" VALUES(153,153,102); INSERT INTO "Wine_Variety" VALUES(154,154,128); INSERT INTO "Wine_Variety" VALUES(155,155,129); INSERT INTO "Wine_Variety" VALUES(156,156,37); INSERT INTO "Wine_Variety" VALUES(157,157,105); INSERT INTO "Wine_Variety" VALUES(158,158,68); INSERT INTO "Wine_Variety" VALUES(159,159,130); INSERT INTO "Wine_Variety" VALUES(160,160,131); INSERT INTO "Wine_Variety" VALUES(161,161,132); INSERT INTO "Wine_Variety" VALUES(162,162,75); INSERT INTO "Wine_Variety" VALUES(163,163,133); INSERT INTO "Wine_Variety" VALUES(164,164,132); INSERT INTO "Wine_Variety" VALUES(165,165,37); INSERT INTO "Wine_Variety" VALUES(166,166,134); INSERT INTO "Wine_Variety" VALUES(167,167,135); INSERT INTO "Wine_Variety" VALUES(168,168,136); INSERT INTO "Wine_Variety" VALUES(169,169,137); INSERT INTO "Wine_Variety" VALUES(170,170,123); INSERT INTO "Wine_Variety" VALUES(171,171,138); INSERT INTO "Wine_Variety" VALUES(172,172,139); INSERT INTO "Wine_Variety" VALUES(173,173,140); INSERT INTO "Wine_Variety" VALUES(174,174,141); INSERT INTO "Wine_Variety" VALUES(175,175,25); INSERT INTO "Wine_Variety" VALUES(176,176,5); INSERT INTO "Wine_Variety" VALUES(177,177,17); INSERT INTO "Wine_Variety" VALUES(178,178,46); INSERT INTO "Wine_Variety" VALUES(179,179,142); INSERT INTO "Wine_Variety" VALUES(180,180,143); INSERT INTO "Wine_Variety" VALUES(181,181,144); INSERT INTO "Wine_Variety" VALUES(182,182,145); INSERT INTO "Wine_Variety" VALUES(183,183,146); INSERT INTO "Wine_Variety" VALUES(184,184,99); INSERT INTO "Wine_Variety" VALUES(185,185,28); INSERT INTO "Wine_Variety" VALUES(186,186,147); INSERT INTO "Wine_Variety" VALUES(187,187,148); INSERT INTO "Wine_Variety" VALUES(188,188,149); INSERT INTO "Wine_Variety" VALUES(189,189,150); INSERT INTO "Wine_Variety" VALUES(190,190,151); INSERT INTO "Wine_Variety" VALUES(191,191,152); INSERT INTO "Wine_Variety" VALUES(192,192,153); INSERT INTO "Wine_Variety" VALUES(193,193,154); INSERT INTO "Wine_Variety" VALUES(194,194,155); INSERT INTO "Wine_Variety" VALUES(195,195,156); INSERT INTO "Wine_Variety" VALUES(196,196,157); INSERT INTO "Wine_Variety" VALUES(197,197,43); INSERT INTO "Wine_Variety" VALUES(198,198,63); INSERT INTO "Wine_Variety" VALUES(199,199,158); INSERT INTO "Wine_Variety" VALUES(200,200,159); INSERT INTO "Wine_Variety" VALUES(201,201,160); INSERT INTO "Wine_Variety" VALUES(202,202,161); INSERT INTO "Wine_Variety" VALUES(203,203,162); INSERT INTO "Wine_Variety" VALUES(204,204,163); INSERT INTO "Wine_Variety" VALUES(205,205,164); INSERT INTO "Wine_Variety" VALUES(206,206,153); INSERT INTO "Wine_Variety" VALUES(207,207,165); INSERT INTO "Wine_Variety" VALUES(208,208,163); INSERT INTO "Wine_Variety" VALUES(209,209,39); INSERT INTO "Wine_Variety" VALUES(210,210,166); INSERT INTO "Wine_Variety" VALUES(211,211,167); INSERT INTO "Wine_Variety" VALUES(212,212,168); INSERT INTO "Wine_Variety" VALUES(213,213,105); INSERT INTO "Wine_Variety" VALUES(214,214,169); INSERT INTO "Wine_Variety" VALUES(215,215,25); INSERT INTO "Wine_Variety" VALUES(216,216,170); INSERT INTO "Wine_Variety" VALUES(217,217,25); INSERT INTO "Wine_Variety" VALUES(218,218,22); INSERT INTO "Wine_Variety" VALUES(219,219,60); INSERT INTO "Wine_Variety" VALUES(220,220,73); INSERT INTO "Wine_Variety" VALUES(221,221,3); INSERT INTO "Wine_Variety" VALUES(222,222,171); INSERT INTO "Wine_Variety" VALUES(223,223,172); INSERT INTO "Wine_Variety" VALUES(224,224,75); INSERT INTO "Wine_Variety" VALUES(225,225,173); INSERT INTO "Wine_Variety" VALUES(226,226,162); INSERT INTO "Wine_Variety" VALUES(227,227,174); INSERT INTO "Wine_Variety" VALUES(228,228,175); INSERT INTO "Wine_Variety" VALUES(229,229,176); INSERT INTO "Wine_Variety" VALUES(230,230,177); INSERT INTO "Wine_Variety" VALUES(231,231,178); INSERT INTO "Wine_Variety" VALUES(232,232,178); INSERT INTO "Wine_Variety" VALUES(233,233,22); INSERT INTO "Wine_Variety" VALUES(234,234,179); INSERT INTO "Wine_Variety" VALUES(235,235,105); INSERT INTO "Wine_Variety" VALUES(236,236,180); INSERT INTO "Wine_Variety" VALUES(237,237,173); INSERT INTO "Wine_Variety" VALUES(238,238,181); INSERT INTO "Wine_Variety" VALUES(239,239,182); INSERT INTO "Wine_Variety" VALUES(240,240,183); INSERT INTO "Wine_Variety" VALUES(241,241,184); INSERT INTO "Wine_Variety" VALUES(242,242,185); INSERT INTO "Wine_Variety" VALUES(243,243,186); INSERT INTO "Wine_Variety" VALUES(244,244,187); INSERT INTO "Wine_Variety" VALUES(245,245,188); INSERT INTO "Wine_Variety" VALUES(246,246,189); INSERT INTO "Wine_Variety" VALUES(247,247,66); INSERT INTO "Wine_Variety" VALUES(248,248,56); INSERT INTO "Wine_Variety" VALUES(249,249,190); INSERT INTO "Wine_Variety" VALUES(250,250,188); INSERT INTO "Wine_Variety" VALUES(251,251,161); INSERT INTO "Wine_Variety" VALUES(252,252,191); INSERT INTO "Wine_Variety" VALUES(253,253,192); INSERT INTO "Wine_Variety" VALUES(254,254,193); INSERT INTO "Wine_Variety" VALUES(255,255,194); INSERT INTO "Wine_Variety" VALUES(256,256,195); INSERT INTO "Wine_Variety" VALUES(257,257,25); INSERT INTO "Wine_Variety" VALUES(258,258,79); INSERT INTO "Wine_Variety" VALUES(259,259,196); INSERT INTO "Wine_Variety" VALUES(260,260,197); INSERT INTO "Wine_Variety" VALUES(261,261,116); INSERT INTO "Wine_Variety" VALUES(262,262,198); INSERT INTO "Wine_Variety" VALUES(263,263,123); INSERT INTO "Wine_Variety" VALUES(264,264,199); INSERT INTO "Wine_Variety" VALUES(265,265,148); INSERT INTO "Wine_Variety" VALUES(266,266,10); INSERT INTO "Wine_Variety" VALUES(267,267,63); INSERT INTO "Wine_Variety" VALUES(268,268,136); INSERT INTO "Wine_Variety" VALUES(269,269,150); INSERT INTO "Wine_Variety" VALUES(270,270,200); INSERT INTO "Wine_Variety" VALUES(271,271,201); INSERT INTO "Wine_Variety" VALUES(272,272,39); INSERT INTO "Wine_Variety" VALUES(273,273,202); INSERT INTO "Wine_Variety" VALUES(274,274,203); INSERT INTO "Wine_Variety" VALUES(275,275,204); INSERT INTO "Wine_Variety" VALUES(276,276,54); INSERT INTO "Wine_Variety" VALUES(277,277,150); INSERT INTO "Wine_Variety" VALUES(278,278,40); INSERT INTO "Wine_Variety" VALUES(279,279,205); INSERT INTO "Wine_Variety" VALUES(280,280,80); INSERT INTO "Wine_Variety" VALUES(281,281,83); INSERT INTO "Wine_Variety" VALUES(282,282,2); INSERT INTO "Wine_Variety" VALUES(283,283,159); INSERT INTO "Wine_Variety" VALUES(284,284,206); INSERT INTO "Wine_Variety" VALUES(285,285,207); INSERT INTO "Wine_Variety" VALUES(286,286,179); INSERT INTO "Wine_Variety" VALUES(287,287,208); INSERT INTO "Wine_Variety" VALUES(288,288,132); INSERT INTO "Wine_Variety" VALUES(289,289,209); INSERT INTO "Wine_Variety" VALUES(290,290,41); INSERT INTO "Wine_Variety" VALUES(291,291,8); INSERT INTO "Wine_Variety" VALUES(292,292,136); INSERT INTO "Wine_Variety" VALUES(293,293,28); INSERT INTO "Wine_Variety" VALUES(294,294,210); INSERT INTO "Wine_Variety" VALUES(295,295,211); INSERT INTO "Wine_Variety" VALUES(296,296,212); INSERT INTO "Wine_Variety" VALUES(297,297,213); INSERT INTO "Wine_Variety" VALUES(298,298,210); INSERT INTO "Wine_Variety" VALUES(299,299,55); INSERT INTO "Wine_Variety" VALUES(300,300,214); INSERT INTO "Wine_Variety" VALUES(301,301,215); INSERT INTO "Wine_Variety" VALUES(302,302,205); INSERT INTO "Wine_Variety" VALUES(303,303,207); INSERT INTO "Wine_Variety" VALUES(304,304,216); INSERT INTO "Wine_Variety" VALUES(305,305,217); INSERT INTO "Wine_Variety" VALUES(306,306,55); INSERT INTO "Wine_Variety" VALUES(307,307,218); INSERT INTO "Wine_Variety" VALUES(308,308,219); INSERT INTO "Wine_Variety" VALUES(309,309,39); INSERT INTO "Wine_Variety" VALUES(310,310,220); INSERT INTO "Wine_Variety" VALUES(311,311,221); INSERT INTO "Wine_Variety" VALUES(312,312,177); INSERT INTO "Wine_Variety" VALUES(313,313,148); INSERT INTO "Wine_Variety" VALUES(314,314,122); INSERT INTO "Wine_Variety" VALUES(315,315,222); INSERT INTO "Wine_Variety" VALUES(316,316,223); INSERT INTO "Wine_Variety" VALUES(317,317,224); INSERT INTO "Wine_Variety" VALUES(318,318,225); INSERT INTO "Wine_Variety" VALUES(319,319,120); INSERT INTO "Wine_Variety" VALUES(320,320,145); INSERT INTO "Wine_Variety" VALUES(321,321,226); INSERT INTO "Wine_Variety" VALUES(322,322,227); INSERT INTO "Wine_Variety" VALUES(323,323,228); INSERT INTO "Wine_Variety" VALUES(324,324,229); INSERT INTO "Wine_Variety" VALUES(325,325,9); INSERT INTO "Wine_Variety" VALUES(326,326,230); INSERT INTO "Wine_Variety" VALUES(327,327,231); INSERT INTO "Wine_Variety" VALUES(328,328,232); INSERT INTO "Wine_Variety" VALUES(329,329,233); INSERT INTO "Wine_Variety" VALUES(330,330,47); INSERT INTO "Wine_Variety" VALUES(331,331,234); INSERT INTO "Wine_Variety" VALUES(332,332,235); INSERT INTO "Wine_Variety" VALUES(333,333,236); INSERT INTO "Wine_Variety" VALUES(334,334,237); INSERT INTO "Wine_Variety" VALUES(335,335,238); INSERT INTO "Wine_Variety" VALUES(336,336,239); INSERT INTO "Wine_Variety" VALUES(337,337,240); INSERT INTO "Wine_Variety" VALUES(338,338,241); INSERT INTO "Wine_Variety" VALUES(339,339,242); INSERT INTO "Wine_Variety" VALUES(340,340,243); INSERT INTO "Wine_Variety" VALUES(341,341,202); INSERT INTO "Wine_Variety" VALUES(342,342,10); INSERT INTO "Wine_Variety" VALUES(343,343,244); INSERT INTO "Wine_Variety" VALUES(344,344,245); INSERT INTO "Wine_Variety" VALUES(345,345,38); INSERT INTO "Wine_Variety" VALUES(346,346,224); INSERT INTO "Wine_Variety" VALUES(347,347,103); INSERT INTO "Wine_Variety" VALUES(348,348,246); INSERT INTO "Wine_Variety" VALUES(349,349,247); INSERT INTO "Wine_Variety" VALUES(350,350,248); INSERT INTO "Wine_Variety" VALUES(351,351,249); INSERT INTO "Wine_Variety" VALUES(352,352,70); INSERT INTO "Wine_Variety" VALUES(353,353,250); INSERT INTO "Wine_Variety" VALUES(354,354,251); INSERT INTO "Wine_Variety" VALUES(355,355,252); INSERT INTO "Wine_Variety" VALUES(356,356,253); INSERT INTO "Wine_Variety" VALUES(357,357,254); INSERT INTO "Wine_Variety" VALUES(358,358,255); INSERT INTO "Wine_Variety" VALUES(359,359,256); INSERT INTO "Wine_Variety" VALUES(360,360,257); INSERT INTO "Wine_Variety" VALUES(361,361,258); INSERT INTO "Wine_Variety" VALUES(362,362,259); INSERT INTO "Wine_Variety" VALUES(363,363,260); INSERT INTO "Wine_Variety" VALUES(364,364,106); INSERT INTO "Wine_Variety" VALUES(365,365,261); INSERT INTO "Wine_Variety" VALUES(366,366,262); INSERT INTO "Wine_Variety" VALUES(367,367,263); INSERT INTO "Wine_Variety" VALUES(368,368,264); INSERT INTO "Wine_Variety" VALUES(369,369,265); INSERT INTO "Wine_Variety" VALUES(370,370,266); INSERT INTO "Wine_Variety" VALUES(371,371,267); INSERT INTO "Wine_Variety" VALUES(372,372,100); INSERT INTO "Wine_Variety" VALUES(373,373,91); INSERT INTO "Wine_Variety" VALUES(374,374,268); INSERT INTO "Wine_Variety" VALUES(375,375,269); INSERT INTO "Wine_Variety" VALUES(376,376,270); INSERT INTO "Wine_Variety" VALUES(377,377,271); INSERT INTO "Wine_Variety" VALUES(378,378,272); INSERT INTO "Wine_Variety" VALUES(379,379,273); INSERT INTO "Wine_Variety" VALUES(380,380,274); INSERT INTO "Wine_Variety" VALUES(381,381,275); INSERT INTO "Wine_Variety" VALUES(382,382,60); INSERT INTO "Wine_Variety" VALUES(383,383,276); INSERT INTO "Wine_Variety" VALUES(384,384,277); INSERT INTO "Wine_Variety" VALUES(385,385,278); INSERT INTO "Wine_Variety" VALUES(386,386,279); INSERT INTO "Wine_Variety" VALUES(387,387,280); INSERT INTO "Wine_Variety" VALUES(388,388,281); INSERT INTO "Wine_Variety" VALUES(389,389,282); INSERT INTO "Wine_Variety" VALUES(390,390,283); INSERT INTO "Wine_Variety" VALUES(391,391,284); INSERT INTO "Wine_Variety" VALUES(392,392,285); INSERT INTO "Wine_Variety" VALUES(393,393,286); INSERT INTO "Wine_Variety" VALUES(394,394,287); INSERT INTO "Wine_Variety" VALUES(395,395,288); INSERT INTO "Wine_Variety" VALUES(396,396,289); INSERT INTO "Wine_Variety" VALUES(397,397,290); INSERT INTO "Wine_Variety" VALUES(398,398,291); INSERT INTO "Wine_Variety" VALUES(399,399,292); INSERT INTO "Wine_Variety" VALUES(400,400,232); INSERT INTO "Wine_Variety" VALUES(401,401,293); INSERT INTO "Wine_Variety" VALUES(402,402,294); INSERT INTO "Wine_Variety" VALUES(403,403,295); INSERT INTO "Wine_Variety" VALUES(404,404,296); INSERT INTO "Wine_Variety" VALUES(405,405,224); INSERT INTO "Wine_Variety" VALUES(406,406,297); INSERT INTO "Wine_Variety" VALUES(407,407,269); INSERT INTO "Wine_Variety" VALUES(408,408,213); INSERT INTO "Wine_Variety" VALUES(409,409,298); INSERT INTO "Wine_Variety" VALUES(410,410,299); INSERT INTO "Wine_Variety" VALUES(411,411,300); INSERT INTO "Wine_Variety" VALUES(412,412,116); INSERT INTO "Wine_Variety" VALUES(413,413,76); INSERT INTO "Wine_Variety" VALUES(414,414,301); INSERT INTO "Wine_Variety" VALUES(415,415,191); INSERT INTO "Wine_Variety" VALUES(416,416,271); INSERT INTO "Wine_Variety" VALUES(417,417,302); INSERT INTO "Wine_Variety" VALUES(418,418,169); INSERT INTO "Wine_Variety" VALUES(419,419,55); INSERT INTO "Wine_Variety" VALUES(420,420,3); INSERT INTO "Wine_Variety" VALUES(421,421,8); INSERT INTO "Wine_Variety" VALUES(422,422,303); INSERT INTO "Wine_Variety" VALUES(423,423,1); INSERT INTO "Wine_Variety" VALUES(424,424,304); INSERT INTO "Wine_Variety" VALUES(425,425,305); INSERT INTO "Wine_Variety" VALUES(426,426,306); INSERT INTO "Wine_Variety" VALUES(427,427,307); INSERT INTO "Wine_Variety" VALUES(428,428,62); INSERT INTO "Wine_Variety" VALUES(429,429,308); INSERT INTO "Wine_Variety" VALUES(430,430,309); INSERT INTO "Wine_Variety" VALUES(431,431,310); INSERT INTO "Wine_Variety" VALUES(432,432,311); INSERT INTO "Wine_Variety" VALUES(433,433,312); INSERT INTO "Wine_Variety" VALUES(434,434,118); INSERT INTO "Wine_Variety" VALUES(435,435,313); INSERT INTO "Wine_Variety" VALUES(436,436,313); INSERT INTO "Wine_Variety" VALUES(437,437,314); INSERT INTO "Wine_Variety" VALUES(438,438,315); INSERT INTO "Wine_Variety" VALUES(439,439,316); INSERT INTO "Wine_Variety" VALUES(440,440,317); INSERT INTO "Wine_Variety" VALUES(441,441,318); INSERT INTO "Wine_Variety" VALUES(442,442,319); INSERT INTO "Wine_Variety" VALUES(443,443,320); INSERT INTO "Wine_Variety" VALUES(444,444,317); INSERT INTO "Wine_Variety" VALUES(445,445,321); INSERT INTO "Wine_Variety" VALUES(446,446,322); INSERT INTO "Wine_Variety" VALUES(447,447,323); INSERT INTO "Wine_Variety" VALUES(448,448,324); INSERT INTO "Wine_Variety" VALUES(449,449,325); INSERT INTO "Wine_Variety" VALUES(450,450,326); INSERT INTO "Wine_Variety" VALUES(451,451,327); INSERT INTO "Wine_Variety" VALUES(452,452,55); INSERT INTO "Wine_Variety" VALUES(453,453,79); INSERT INTO "Wine_Variety" VALUES(454,454,328); INSERT INTO "Wine_Variety" VALUES(455,455,329); INSERT INTO "Wine_Variety" VALUES(456,456,330); INSERT INTO "Wine_Variety" VALUES(457,457,331); INSERT INTO "Wine_Variety" VALUES(458,458,332); INSERT INTO "Wine_Variety" VALUES(459,459,265); INSERT INTO "Wine_Variety" VALUES(460,460,333); INSERT INTO "Wine_Variety" VALUES(461,461,334); INSERT INTO "Wine_Variety" VALUES(462,462,124); INSERT INTO "Wine_Variety" VALUES(463,463,210); INSERT INTO "Wine_Variety" VALUES(464,464,291); INSERT INTO "Wine_Variety" VALUES(465,465,335); INSERT INTO "Wine_Variety" VALUES(466,466,257); INSERT INTO "Wine_Variety" VALUES(467,467,336); INSERT INTO "Wine_Variety" VALUES(468,468,76); INSERT INTO "Wine_Variety" VALUES(469,469,337); INSERT INTO "Wine_Variety" VALUES(470,470,293); INSERT INTO "Wine_Variety" VALUES(471,471,338); INSERT INTO "Wine_Variety" VALUES(472,472,339); INSERT INTO "Wine_Variety" VALUES(473,473,340); INSERT INTO "Wine_Variety" VALUES(474,474,279); INSERT INTO "Wine_Variety" VALUES(475,475,341); INSERT INTO "Wine_Variety" VALUES(476,476,342); INSERT INTO "Wine_Variety" VALUES(477,477,343); INSERT INTO "Wine_Variety" VALUES(478,478,344); INSERT INTO "Wine_Variety" VALUES(479,479,345); INSERT INTO "Wine_Variety" VALUES(480,480,346); INSERT INTO "Wine_Variety" VALUES(481,481,347); INSERT INTO "Wine_Variety" VALUES(482,482,116); INSERT INTO "Wine_Variety" VALUES(483,483,348); INSERT INTO "Wine_Variety" VALUES(484,484,349); INSERT INTO "Wine_Variety" VALUES(485,485,350); INSERT INTO "Wine_Variety" VALUES(486,486,351); INSERT INTO "Wine_Variety" VALUES(487,487,352); INSERT INTO "Wine_Variety" VALUES(488,488,353); INSERT INTO "Wine_Variety" VALUES(489,489,354); INSERT INTO "Wine_Variety" VALUES(490,490,355); INSERT INTO "Wine_Variety" VALUES(491,491,356); INSERT INTO "Wine_Variety" VALUES(492,492,357); INSERT INTO "Wine_Variety" VALUES(493,493,233); INSERT INTO "Wine_Variety" VALUES(494,494,320); INSERT INTO "Wine_Variety" VALUES(495,495,358); INSERT INTO "Wine_Variety" VALUES(496,496,303); INSERT INTO "Wine_Variety" VALUES(497,497,337); INSERT INTO "Wine_Variety" VALUES(498,498,284); INSERT INTO "Wine_Variety" VALUES(499,499,316); INSERT INTO "Wine_Variety" VALUES(500,500,359); INSERT INTO "Wine_Variety" VALUES(501,501,323); INSERT INTO "Wine_Variety" VALUES(502,502,360); INSERT INTO "Wine_Variety" VALUES(503,503,361); INSERT INTO "Wine_Variety" VALUES(504,504,362); INSERT INTO "Wine_Variety" VALUES(505,505,363); INSERT INTO "Wine_Variety" VALUES(506,506,364); INSERT INTO "Wine_Variety" VALUES(507,507,365); INSERT INTO "Wine_Variety" VALUES(508,508,366); INSERT INTO "Wine_Variety" VALUES(509,509,367); INSERT INTO "Wine_Variety" VALUES(510,510,368); INSERT INTO "Wine_Variety" VALUES(511,511,369); INSERT INTO "Wine_Variety" VALUES(512,512,370); INSERT INTO "Wine_Variety" VALUES(513,513,252); INSERT INTO "Wine_Variety" VALUES(514,514,289); INSERT INTO "Wine_Variety" VALUES(515,515,162); INSERT INTO "Wine_Variety" VALUES(516,516,275); INSERT INTO "Wine_Variety" VALUES(517,517,186); INSERT INTO "Wine_Variety" VALUES(518,518,355); INSERT INTO "Wine_Variety" VALUES(519,519,246); INSERT INTO "Wine_Variety" VALUES(520,520,371); INSERT INTO "Wine_Variety" VALUES(521,521,372); INSERT INTO "Wine_Variety" VALUES(522,522,249); INSERT INTO "Wine_Variety" VALUES(523,523,373); INSERT INTO "Wine_Variety" VALUES(524,524,374); INSERT INTO "Wine_Variety" VALUES(525,525,135); INSERT INTO "Wine_Variety" VALUES(526,526,375); INSERT INTO "Wine_Variety" VALUES(527,527,325); INSERT INTO "Wine_Variety" VALUES(528,528,376); INSERT INTO "Wine_Variety" VALUES(529,529,213); INSERT INTO "Wine_Variety" VALUES(530,530,377); INSERT INTO "Wine_Variety" VALUES(531,531,322); INSERT INTO "Wine_Variety" VALUES(532,532,378); INSERT INTO "Wine_Variety" VALUES(533,533,379); INSERT INTO "Wine_Variety" VALUES(534,534,283); INSERT INTO "Wine_Variety" VALUES(535,535,380); INSERT INTO "Wine_Variety" VALUES(536,536,381); INSERT INTO "Wine_Variety" VALUES(537,537,348); INSERT INTO "Wine_Variety" VALUES(538,538,261); INSERT INTO "Wine_Variety" VALUES(539,539,382); INSERT INTO "Wine_Variety" VALUES(540,540,153); INSERT INTO "Wine_Variety" VALUES(541,541,383); INSERT INTO "Wine_Variety" VALUES(542,542,384); INSERT INTO "Wine_Variety" VALUES(543,543,23); INSERT INTO "Wine_Variety" VALUES(544,544,156); INSERT INTO "Wine_Variety" VALUES(545,545,385); INSERT INTO "Wine_Variety" VALUES(546,546,272); INSERT INTO "Wine_Variety" VALUES(547,547,386); INSERT INTO "Wine_Variety" VALUES(548,548,387); INSERT INTO "Wine_Variety" VALUES(549,549,388); INSERT INTO "Wine_Variety" VALUES(550,550,111); INSERT INTO "Wine_Variety" VALUES(551,551,389); INSERT INTO "Wine_Variety" VALUES(552,552,390); INSERT INTO "Wine_Variety" VALUES(553,553,391); INSERT INTO "Wine_Variety" VALUES(554,554,392); INSERT INTO "Wine_Variety" VALUES(555,555,393); INSERT INTO "Wine_Variety" VALUES(556,556,394); INSERT INTO "Wine_Variety" VALUES(557,557,395); INSERT INTO "Wine_Variety" VALUES(558,558,396); INSERT INTO "Wine_Variety" VALUES(559,559,397); INSERT INTO "Wine_Variety" VALUES(560,560,398); INSERT INTO "Wine_Variety" VALUES(561,561,384); INSERT INTO "Wine_Variety" VALUES(562,562,386); INSERT INTO "Wine_Variety" VALUES(563,563,370); INSERT INTO "Wine_Variety" VALUES(564,564,399); INSERT INTO "Wine_Variety" VALUES(565,565,400); INSERT INTO "Wine_Variety" VALUES(566,566,258); INSERT INTO "Wine_Variety" VALUES(567,567,401); INSERT INTO "Wine_Variety" VALUES(568,568,295); INSERT INTO "Wine_Variety" VALUES(569,569,219); INSERT INTO "Wine_Variety" VALUES(570,570,402); INSERT INTO "Wine_Variety" VALUES(571,571,403); INSERT INTO "Wine_Variety" VALUES(572,572,254); INSERT INTO "Wine_Variety" VALUES(573,573,404); INSERT INTO "Wine_Variety" VALUES(574,574,290); INSERT INTO "Wine_Variety" VALUES(575,575,361); INSERT INTO "Wine_Variety" VALUES(576,576,405); INSERT INTO "Wine_Variety" VALUES(577,577,406); INSERT INTO "Wine_Variety" VALUES(578,578,407); INSERT INTO "Wine_Variety" VALUES(579,579,9); INSERT INTO "Wine_Variety" VALUES(580,580,58); INSERT INTO "Wine_Variety" VALUES(581,581,169); INSERT INTO "Wine_Variety" VALUES(582,582,3); INSERT INTO "Wine_Variety" VALUES(583,583,408); INSERT INTO "Wine_Variety" VALUES(584,584,409); INSERT INTO "Wine_Variety" VALUES(585,585,277); INSERT INTO "Wine_Variety" VALUES(586,586,243); INSERT INTO "Wine_Variety" VALUES(587,587,410); INSERT INTO "Wine_Variety" VALUES(588,588,368); INSERT INTO "Wine_Variety" VALUES(589,589,124); INSERT INTO "Wine_Variety" VALUES(590,590,249); INSERT INTO "Wine_Variety" VALUES(591,591,279); INSERT INTO "Wine_Variety" VALUES(592,592,379); INSERT INTO "Wine_Variety" VALUES(593,593,321); INSERT INTO "Wine_Variety" VALUES(594,594,371); INSERT INTO "Wine_Variety" VALUES(595,595,411); INSERT INTO "Wine_Variety" VALUES(596,596,412); INSERT INTO "Wine_Variety" VALUES(597,597,413); INSERT INTO "Wine_Variety" VALUES(598,598,414); INSERT INTO "Wine_Variety" VALUES(599,599,415); INSERT INTO "Wine_Variety" VALUES(600,600,416); INSERT INTO "Wine_Variety" VALUES(601,601,417); INSERT INTO "Wine_Variety" VALUES(602,602,418); INSERT INTO "Wine_Variety" VALUES(603,603,419); INSERT INTO "Wine_Variety" VALUES(604,604,420); INSERT INTO "Wine_Variety" VALUES(605,605,119); INSERT INTO "Wine_Variety" VALUES(606,606,421); INSERT INTO "Wine_Variety" VALUES(607,607,422); INSERT INTO "Wine_Variety" VALUES(608,608,423); INSERT INTO "Wine_Variety" VALUES(609,609,20); INSERT INTO "Wine_Variety" VALUES(610,610,424); INSERT INTO "Wine_Variety" VALUES(611,611,425); INSERT INTO "Wine_Variety" VALUES(612,612,265); INSERT INTO "Wine_Variety" VALUES(613,613,426); INSERT INTO "Wine_Variety" VALUES(614,614,191); INSERT INTO "Wine_Variety" VALUES(615,615,2); INSERT INTO "Wine_Variety" VALUES(616,616,239); INSERT INTO "Wine_Variety" VALUES(617,617,122); INSERT INTO "Wine_Variety" VALUES(618,618,296); INSERT INTO "Wine_Variety" VALUES(619,619,427); INSERT INTO "Wine_Variety" VALUES(620,620,417); INSERT INTO "Wine_Variety" VALUES(621,621,75); INSERT INTO "Wine_Variety" VALUES(622,622,428); INSERT INTO "Wine_Variety" VALUES(623,623,429); INSERT INTO "Wine_Variety" VALUES(624,624,234); INSERT INTO "Wine_Variety" VALUES(625,625,430); INSERT INTO "Wine_Variety" VALUES(626,626,431); INSERT INTO "Wine_Variety" VALUES(627,627,155); INSERT INTO "Wine_Variety" VALUES(628,628,224); INSERT INTO "Wine_Variety" VALUES(629,629,415); INSERT INTO "Wine_Variety" VALUES(630,630,432); INSERT INTO "Wine_Variety" VALUES(631,631,433); INSERT INTO "Wine_Variety" VALUES(632,632,300); INSERT INTO "Wine_Variety" VALUES(633,633,434); INSERT INTO "Wine_Variety" VALUES(634,634,2); INSERT INTO "Wine_Variety" VALUES(635,635,435); INSERT INTO "Wine_Variety" VALUES(636,636,436); INSERT INTO "Wine_Variety" VALUES(637,637,437); INSERT INTO "Wine_Variety" VALUES(638,638,252); INSERT INTO "Wine_Variety" VALUES(639,639,438); INSERT INTO "Wine_Variety" VALUES(640,640,288); INSERT INTO "Wine_Variety" VALUES(641,641,439); INSERT INTO "Wine_Variety" VALUES(642,642,440); INSERT INTO "Wine_Variety" VALUES(643,643,441); INSERT INTO "Wine_Variety" VALUES(644,644,442); INSERT INTO "Wine_Variety" VALUES(645,645,443); INSERT INTO "Wine_Variety" VALUES(646,646,444); INSERT INTO "Wine_Variety" VALUES(647,647,445); INSERT INTO "Wine_Variety" VALUES(648,648,446); INSERT INTO "Wine_Variety" VALUES(649,649,355); INSERT INTO "Wine_Variety" VALUES(650,650,447); INSERT INTO "Wine_Variety" VALUES(651,651,448); INSERT INTO "Wine_Variety" VALUES(652,652,354); INSERT INTO "Wine_Variety" VALUES(653,653,350); INSERT INTO "Wine_Variety" VALUES(654,654,234); INSERT INTO "Wine_Variety" VALUES(655,655,449); INSERT INTO "Wine_Variety" VALUES(656,656,450); INSERT INTO "Wine_Variety" VALUES(657,657,31); INSERT INTO "Wine_Variety" VALUES(658,658,451); INSERT INTO "Wine_Variety" VALUES(659,659,452); INSERT INTO "Wine_Variety" VALUES(660,660,234); INSERT INTO "Wine_Variety" VALUES(661,661,453); INSERT INTO "Wine_Variety" VALUES(662,662,454); INSERT INTO "Wine_Variety" VALUES(663,663,455); INSERT INTO "Wine_Variety" VALUES(664,664,456); INSERT INTO "Wine_Variety" VALUES(665,665,457); INSERT INTO "Wine_Variety" VALUES(666,666,458); INSERT INTO "Wine_Variety" VALUES(667,667,67); INSERT INTO "Wine_Variety" VALUES(668,668,413); INSERT INTO "Wine_Variety" VALUES(669,669,422); INSERT INTO "Wine_Variety" VALUES(670,670,459); INSERT INTO "Wine_Variety" VALUES(671,671,460); INSERT INTO "Wine_Variety" VALUES(672,672,461); INSERT INTO "Wine_Variety" VALUES(673,673,34); INSERT INTO "Wine_Variety" VALUES(674,674,462); INSERT INTO "Wine_Variety" VALUES(675,675,41); INSERT INTO "Wine_Variety" VALUES(676,676,266); INSERT INTO "Wine_Variety" VALUES(677,677,300); INSERT INTO "Wine_Variety" VALUES(678,678,406); INSERT INTO "Wine_Variety" VALUES(679,679,463); INSERT INTO "Wine_Variety" VALUES(680,680,464); INSERT INTO "Wine_Variety" VALUES(681,681,465); INSERT INTO "Wine_Variety" VALUES(682,682,264); INSERT INTO "Wine_Variety" VALUES(683,683,466); INSERT INTO "Wine_Variety" VALUES(684,684,467); INSERT INTO "Wine_Variety" VALUES(685,685,468); INSERT INTO "Wine_Variety" VALUES(686,686,145); INSERT INTO "Wine_Variety" VALUES(687,687,469); INSERT INTO "Wine_Variety" VALUES(688,688,470); INSERT INTO "Wine_Variety" VALUES(689,689,471); INSERT INTO "Wine_Variety" VALUES(690,690,472); INSERT INTO "Wine_Variety" VALUES(691,691,202); INSERT INTO "Wine_Variety" VALUES(692,692,473); INSERT INTO "Wine_Variety" VALUES(693,693,474); INSERT INTO "Wine_Variety" VALUES(694,694,139); INSERT INTO "Wine_Variety" VALUES(695,695,475); INSERT INTO "Wine_Variety" VALUES(696,696,476); INSERT INTO "Wine_Variety" VALUES(697,697,414); INSERT INTO "Wine_Variety" VALUES(698,698,318); INSERT INTO "Wine_Variety" VALUES(699,699,477); INSERT INTO "Wine_Variety" VALUES(700,700,103); INSERT INTO "Wine_Variety" VALUES(701,701,136); INSERT INTO "Wine_Variety" VALUES(702,702,478); INSERT INTO "Wine_Variety" VALUES(703,703,479); INSERT INTO "Wine_Variety" VALUES(704,704,480); INSERT INTO "Wine_Variety" VALUES(705,705,46); INSERT INTO "Wine_Variety" VALUES(706,706,442); INSERT INTO "Wine_Variety" VALUES(707,707,224); INSERT INTO "Wine_Variety" VALUES(708,708,481); INSERT INTO "Wine_Variety" VALUES(709,709,482); INSERT INTO "Wine_Variety" VALUES(710,710,318); INSERT INTO "Wine_Variety" VALUES(711,711,483); INSERT INTO "Wine_Variety" VALUES(712,712,207); INSERT INTO "Wine_Variety" VALUES(713,713,484); INSERT INTO "Wine_Variety" VALUES(714,714,485); INSERT INTO "Wine_Variety" VALUES(715,715,486); INSERT INTO "Wine_Variety" VALUES(716,716,487); INSERT INTO "Wine_Variety" VALUES(717,717,488); INSERT INTO "Wine_Variety" VALUES(718,718,368); INSERT INTO "Wine_Variety" VALUES(719,719,373); INSERT INTO "Wine_Variety" VALUES(720,720,443); INSERT INTO "Wine_Variety" VALUES(721,721,70); INSERT INTO "Wine_Variety" VALUES(722,722,53); INSERT INTO "Wine_Variety" VALUES(723,723,489); INSERT INTO "Wine_Variety" VALUES(724,724,490); INSERT INTO "Wine_Variety" VALUES(725,725,491); INSERT INTO "Wine_Variety" VALUES(726,726,492); INSERT INTO "Wine_Variety" VALUES(727,727,493); INSERT INTO "Wine_Variety" VALUES(728,728,432); INSERT INTO "Wine_Variety" VALUES(729,729,435); INSERT INTO "Wine_Variety" VALUES(730,730,80); INSERT INTO "Wine_Variety" VALUES(731,731,202); INSERT INTO "Wine_Variety" VALUES(732,732,494); INSERT INTO "Wine_Variety" VALUES(733,733,423); INSERT INTO "Wine_Variety" VALUES(734,734,172); INSERT INTO "Wine_Variety" VALUES(735,735,495); INSERT INTO "Wine_Variety" VALUES(736,736,496); INSERT INTO "Wine_Variety" VALUES(737,737,103); INSERT INTO "Wine_Variety" VALUES(738,738,497); INSERT INTO "Wine_Variety" VALUES(739,739,498); INSERT INTO "Wine_Variety" VALUES(740,740,499); INSERT INTO "Wine_Variety" VALUES(741,741,14); INSERT INTO "Wine_Variety" VALUES(742,742,422); INSERT INTO "Wine_Variety" VALUES(743,743,40); INSERT INTO "Wine_Variety" VALUES(744,744,10); INSERT INTO "Wine_Variety" VALUES(745,745,68); INSERT INTO "Wine_Variety" VALUES(746,746,293); INSERT INTO "Wine_Variety" VALUES(747,747,500); INSERT INTO "Wine_Variety" VALUES(748,748,501); INSERT INTO "Wine_Variety" VALUES(749,749,502); INSERT INTO "Wine_Variety" VALUES(750,750,458); INSERT INTO "Wine_Variety" VALUES(751,751,503); INSERT INTO "Wine_Variety" VALUES(752,752,504); INSERT INTO "Wine_Variety" VALUES(753,753,487); INSERT INTO "Wine_Variety" VALUES(754,754,505); INSERT INTO "Wine_Variety" VALUES(755,755,506); INSERT INTO "Wine_Variety" VALUES(756,756,507); INSERT INTO "Wine_Variety" VALUES(757,757,508); INSERT INTO "Wine_Variety" VALUES(758,758,509); INSERT INTO "Wine_Variety" VALUES(759,759,390); INSERT INTO "Wine_Variety" VALUES(760,760,62); INSERT INTO "Wine_Variety" VALUES(761,761,510); INSERT INTO "Wine_Variety" VALUES(762,762,511); INSERT INTO "Wine_Variety" VALUES(763,763,246); INSERT INTO "Wine_Variety" VALUES(764,764,512); INSERT INTO "Wine_Variety" VALUES(765,765,513); INSERT INTO "Wine_Variety" VALUES(766,766,496); INSERT INTO "Wine_Variety" VALUES(767,767,421); INSERT INTO "Wine_Variety" VALUES(768,768,514); INSERT INTO "Wine_Variety" VALUES(769,769,16); INSERT INTO "Wine_Variety" VALUES(770,770,515); INSERT INTO "Wine_Variety" VALUES(771,771,516); INSERT INTO "Wine_Variety" VALUES(772,772,492); INSERT INTO "Wine_Variety" VALUES(773,773,41); INSERT INTO "Wine_Variety" VALUES(774,774,517); INSERT INTO "Wine_Variety" VALUES(775,775,40); INSERT INTO "Wine_Variety" VALUES(776,776,518); INSERT INTO "Wine_Variety" VALUES(777,777,519); INSERT INTO "Wine_Variety" VALUES(778,778,430); INSERT INTO "Wine_Variety" VALUES(779,779,520); INSERT INTO "Wine_Variety" VALUES(780,780,119); INSERT INTO "Wine_Variety" VALUES(781,781,179); INSERT INTO "Wine_Variety" VALUES(782,782,266); INSERT INTO "Wine_Variety" VALUES(783,783,224); INSERT INTO "Wine_Variety" VALUES(784,784,143); INSERT INTO "Wine_Variety" VALUES(785,785,521); INSERT INTO "Wine_Variety" VALUES(786,786,522); INSERT INTO "Wine_Variety" VALUES(787,787,275); INSERT INTO "Wine_Variety" VALUES(788,788,63); INSERT INTO "Wine_Variety" VALUES(789,789,523); INSERT INTO "Wine_Variety" VALUES(790,790,46); INSERT INTO "Wine_Variety" VALUES(791,791,524); INSERT INTO "Wine_Variety" VALUES(792,792,525); INSERT INTO "Wine_Variety" VALUES(793,793,526); INSERT INTO "Wine_Variety" VALUES(794,794,313); INSERT INTO "Wine_Variety" VALUES(795,795,161); INSERT INTO "Wine_Variety" VALUES(796,796,506); INSERT INTO "Wine_Variety" VALUES(797,797,527); INSERT INTO "Wine_Variety" VALUES(798,798,40); INSERT INTO "Wine_Variety" VALUES(799,799,280); INSERT INTO "Wine_Variety" VALUES(800,800,528); INSERT INTO "Wine_Variety" VALUES(801,801,529); INSERT INTO "Wine_Variety" VALUES(802,802,155); INSERT INTO "Wine_Variety" VALUES(803,803,530); INSERT INTO "Wine_Variety" VALUES(804,804,523); INSERT INTO "Wine_Variety" VALUES(805,805,91); INSERT INTO "Wine_Variety" VALUES(806,806,531); INSERT INTO "Wine_Variety" VALUES(807,807,532); INSERT INTO "Wine_Variety" VALUES(808,808,444); INSERT INTO "Wine_Variety" VALUES(809,809,533); INSERT INTO "Wine_Variety" VALUES(810,810,534); INSERT INTO "Wine_Variety" VALUES(811,811,293); INSERT INTO "Wine_Variety" VALUES(812,812,145); INSERT INTO "Wine_Variety" VALUES(813,813,368); INSERT INTO "Wine_Variety" VALUES(814,814,522); INSERT INTO "Wine_Variety" VALUES(815,815,186); INSERT INTO "Wine_Variety" VALUES(816,816,535); INSERT INTO "Wine_Variety" VALUES(817,817,390); INSERT INTO "Wine_Variety" VALUES(818,818,348); INSERT INTO "Wine_Variety" VALUES(819,819,536); INSERT INTO "Wine_Variety" VALUES(820,820,506); INSERT INTO "Wine_Variety" VALUES(821,821,537); INSERT INTO "Wine_Variety" VALUES(822,822,538); INSERT INTO "Wine_Variety" VALUES(823,823,539); INSERT INTO "Wine_Variety" VALUES(824,824,540); INSERT INTO "Wine_Variety" VALUES(825,825,47); INSERT INTO "Wine_Variety" VALUES(826,826,541); INSERT INTO "Wine_Variety" VALUES(827,827,463); INSERT INTO "Wine_Variety" VALUES(828,828,542); INSERT INTO "Wine_Variety" VALUES(829,829,340); INSERT INTO "Wine_Variety" VALUES(830,830,543); INSERT INTO "Wine_Variety" VALUES(831,831,544); INSERT INTO "Wine_Variety" VALUES(832,832,466); INSERT INTO "Wine_Variety" VALUES(833,833,545); INSERT INTO "Wine_Variety" VALUES(834,834,318); INSERT INTO "Wine_Variety" VALUES(835,835,381); INSERT INTO "Wine_Variety" VALUES(836,836,10); INSERT INTO "Wine_Variety" VALUES(837,837,546); INSERT INTO "Wine_Variety" VALUES(838,838,547); INSERT INTO "Wine_Variety" VALUES(839,839,205); INSERT INTO "Wine_Variety" VALUES(840,840,548); INSERT INTO "Wine_Variety" VALUES(841,841,318); INSERT INTO "Wine_Variety" VALUES(842,842,544); INSERT INTO "Wine_Variety" VALUES(843,843,512); INSERT INTO "Wine_Variety" VALUES(844,844,549); INSERT INTO "Wine_Variety" VALUES(845,845,140); INSERT INTO "Wine_Variety" VALUES(846,846,322); INSERT INTO "Wine_Variety" VALUES(847,847,550); INSERT INTO "Wine_Variety" VALUES(848,848,551); INSERT INTO "Wine_Variety" VALUES(849,849,552); INSERT INTO "Wine_Variety" VALUES(850,850,553); INSERT INTO "Wine_Variety" VALUES(851,851,554); INSERT INTO "Wine_Variety" VALUES(852,852,493); INSERT INTO "Wine_Variety" VALUES(853,853,91); INSERT INTO "Wine_Variety" VALUES(854,854,555); INSERT INTO "Wine_Variety" VALUES(855,855,153); INSERT INTO "Wine_Variety" VALUES(856,856,556); INSERT INTO "Wine_Variety" VALUES(857,857,557); INSERT INTO "Wine_Variety" VALUES(858,858,558); INSERT INTO "Wine_Variety" VALUES(859,859,559); INSERT INTO "Wine_Variety" VALUES(860,860,560); INSERT INTO "Wine_Variety" VALUES(861,861,561); INSERT INTO "Wine_Variety" VALUES(862,862,445); INSERT INTO "Wine_Variety" VALUES(863,863,508); INSERT INTO "Wine_Variety" VALUES(864,864,179); INSERT INTO "Wine_Variety" VALUES(865,865,169); INSERT INTO "Wine_Variety" VALUES(866,866,368); INSERT INTO "Wine_Variety" VALUES(867,867,179); INSERT INTO "Wine_Variety" VALUES(868,868,437); INSERT INTO "Wine_Variety" VALUES(869,869,366); INSERT INTO "Wine_Variety" VALUES(870,870,541); INSERT INTO "Wine_Variety" VALUES(871,871,562); INSERT INTO "Wine_Variety" VALUES(872,872,136); INSERT INTO "Wine_Variety" VALUES(873,873,469); INSERT INTO "Wine_Variety" VALUES(874,874,563); INSERT INTO "Wine_Variety" VALUES(875,875,564); INSERT INTO "Wine_Variety" VALUES(876,876,565); INSERT INTO "Wine_Variety" VALUES(877,877,324); INSERT INTO "Wine_Variety" VALUES(878,878,344); INSERT INTO "Wine_Variety" VALUES(879,879,566); INSERT INTO "Wine_Variety" VALUES(880,880,506); INSERT INTO "Wine_Variety" VALUES(881,881,423); INSERT INTO "Wine_Variety" VALUES(882,882,563); INSERT INTO "Wine_Variety" VALUES(883,883,293); INSERT INTO "Wine_Variety" VALUES(884,884,517); INSERT INTO "Wine_Variety" VALUES(885,885,501); INSERT INTO "Wine_Variety" VALUES(886,886,355); INSERT INTO "Wine_Variety" VALUES(887,887,567); INSERT INTO "Wine_Variety" VALUES(888,888,568); INSERT INTO "Wine_Variety" VALUES(889,889,177); INSERT INTO "Wine_Variety" VALUES(890,890,453); INSERT INTO "Wine_Variety" VALUES(891,891,470); INSERT INTO "Wine_Variety" VALUES(892,892,493); INSERT INTO "Wine_Variety" VALUES(893,893,469); INSERT INTO "Wine_Variety" VALUES(894,894,569); INSERT INTO "Wine_Variety" VALUES(895,895,205); INSERT INTO "Wine_Variety" VALUES(896,896,390); INSERT INTO "Wine_Variety" VALUES(897,897,479); INSERT INTO "Wine_Variety" VALUES(898,898,382); INSERT INTO "Wine_Variety" VALUES(899,899,264); INSERT INTO "Wine_Variety" VALUES(900,900,477); INSERT INTO "Wine_Variety" VALUES(901,901,372); INSERT INTO "Wine_Variety" VALUES(902,902,297); INSERT INTO "Wine_Variety" VALUES(903,903,570); INSERT INTO "Wine_Variety" VALUES(904,904,53); INSERT INTO "Wine_Variety" VALUES(905,905,571); INSERT INTO "Wine_Variety" VALUES(906,906,372); INSERT INTO "Wine_Variety" VALUES(907,907,499); INSERT INTO "Wine_Variety" VALUES(908,908,480); INSERT INTO "Wine_Variety" VALUES(909,909,436); INSERT INTO "Wine_Variety" VALUES(910,910,224); INSERT INTO "Wine_Variety" VALUES(911,911,324); INSERT INTO "Wine_Variety" VALUES(912,912,207); INSERT INTO "Wine_Variety" VALUES(913,913,224); INSERT INTO "Wine_Variety" VALUES(914,915,430); INSERT INTO "Wine_Variety" VALUES(915,916,572); INSERT INTO "Wine_Variety" VALUES(916,917,543); INSERT INTO "Wine_Variety" VALUES(917,918,151); INSERT INTO "Wine_Variety" VALUES(918,919,422); INSERT INTO "Wine_Variety" VALUES(919,921,265); INSERT INTO "Wine_Variety" VALUES(920,922,573); INSERT INTO "Wine_Variety" VALUES(921,923,46); INSERT INTO "Wine_Variety" VALUES(922,924,368); INSERT INTO "Wine_Variety" VALUES(923,925,151); INSERT INTO "Wine_Variety" VALUES(924,927,402); INSERT INTO "Wine_Variety" VALUES(925,928,474); INSERT INTO "Wine_Variety" VALUES(926,929,413); INSERT INTO "Wine_Variety" VALUES(927,930,507); INSERT INTO "Wine_Variety" VALUES(928,931,536); INSERT INTO "Wine_Variety" VALUES(929,932,574); INSERT INTO "Wine_Variety" VALUES(930,933,575); INSERT INTO "Wine_Variety" VALUES(931,934,224); INSERT INTO "Wine_Variety" VALUES(932,935,300); INSERT INTO "Wine_Variety" VALUES(933,936,269); INSERT INTO "Wine_Variety" VALUES(934,937,576); INSERT INTO "Wine_Variety" VALUES(935,938,233); INSERT INTO "Wine_Variety" VALUES(936,939,577); INSERT INTO "Wine_Variety" VALUES(937,940,578); INSERT INTO "Wine_Variety" VALUES(938,941,420); INSERT INTO "Wine_Variety" VALUES(939,942,579); INSERT INTO "Wine_Variety" VALUES(940,943,580); INSERT INTO "Wine_Variety" VALUES(941,944,534); INSERT INTO "Wine_Variety" VALUES(942,945,227); INSERT INTO "Wine_Variety" VALUES(943,946,581); INSERT INTO "Wine_Variety" VALUES(944,947,582); INSERT INTO "Wine_Variety" VALUES(945,948,583); INSERT INTO "Wine_Variety" VALUES(946,949,584); INSERT INTO "Wine_Variety" VALUES(947,950,585); INSERT INTO "Wine_Variety" VALUES(948,951,522); INSERT INTO "Wine_Variety" VALUES(949,952,586); INSERT INTO "Wine_Variety" VALUES(950,953,587); INSERT INTO "Wine_Variety" VALUES(951,954,236); INSERT INTO "Wine_Variety" VALUES(952,955,236); INSERT INTO "Wine_Variety" VALUES(953,956,333); INSERT INTO "Wine_Variety" VALUES(954,957,588); INSERT INTO "Wine_Variety" VALUES(955,958,450); INSERT INTO "Wine_Variety" VALUES(956,959,589); INSERT INTO "Wine_Variety" VALUES(957,960,369); INSERT INTO "Wine_Variety" VALUES(958,961,207); INSERT INTO "Wine_Variety" VALUES(959,962,590); INSERT INTO "Wine_Variety" VALUES(960,963,591); INSERT INTO "Wine_Variety" VALUES(961,964,12); INSERT INTO "Wine_Variety" VALUES(962,965,273); INSERT INTO "Wine_Variety" VALUES(963,966,577); INSERT INTO "Wine_Variety" VALUES(964,967,430); INSERT INTO "Wine_Variety" VALUES(965,968,128); INSERT INTO "Wine_Variety" VALUES(966,969,437); INSERT INTO "Wine_Variety" VALUES(967,970,592); INSERT INTO "Wine_Variety" VALUES(968,971,306); INSERT INTO "Wine_Variety" VALUES(969,972,248); INSERT INTO "Wine_Variety" VALUES(970,973,163); INSERT INTO "Wine_Variety" VALUES(971,974,593); INSERT INTO "Wine_Variety" VALUES(972,975,234); INSERT INTO "Wine_Variety" VALUES(973,976,246); INSERT INTO "Wine_Variety" VALUES(974,977,594); INSERT INTO "Wine_Variety" VALUES(975,978,595); INSERT INTO "Wine_Variety" VALUES(976,979,281); INSERT INTO "Wine_Variety" VALUES(977,980,179); INSERT INTO "Wine_Variety" VALUES(978,981,596); INSERT INTO "Wine_Variety" VALUES(979,982,179); INSERT INTO "Wine_Variety" VALUES(980,983,249); INSERT INTO "Wine_Variety" VALUES(981,984,137); INSERT INTO "Wine_Variety" VALUES(982,985,145); INSERT INTO "Wine_Variety" VALUES(983,986,106); INSERT INTO "Wine_Variety" VALUES(984,987,597); INSERT INTO "Wine_Variety" VALUES(985,988,64); INSERT INTO "Wine_Variety" VALUES(986,989,598); INSERT INTO "Wine_Variety" VALUES(987,990,577); INSERT INTO "Wine_Variety" VALUES(988,991,599); INSERT INTO "Wine_Variety" VALUES(989,992,582); INSERT INTO "Wine_Variety" VALUES(990,993,600); INSERT INTO "Wine_Variety" VALUES(991,994,471); INSERT INTO "Wine_Variety" VALUES(992,995,601); INSERT INTO "Wine_Variety" VALUES(993,996,602); INSERT INTO "Wine_Variety" VALUES(994,997,22); INSERT INTO "Wine_Variety" VALUES(995,998,603); INSERT INTO "Wine_Variety" VALUES(996,999,604); INSERT INTO "Wine_Variety" VALUES(997,1000,605); INSERT INTO "Wine_Variety" VALUES(998,1001,284); INSERT INTO "Wine_Variety" VALUES(999,1002,606); INSERT INTO "Wine_Variety" VALUES(1000,1003,103); INSERT INTO "Wine_Variety" VALUES(1001,1004,273); INSERT INTO "Wine_Variety" VALUES(1002,1005,607); INSERT INTO "Wine_Variety" VALUES(1003,1006,608); INSERT INTO "Wine_Variety" VALUES(1004,1007,31); INSERT INTO "Wine_Variety" VALUES(1005,1008,577); INSERT INTO "Wine_Variety" VALUES(1006,1009,349); INSERT INTO "Wine_Variety" VALUES(1007,1010,23); INSERT INTO "Wine_Variety" VALUES(1008,1011,213); INSERT INTO "Wine_Variety" VALUES(1009,1012,609); INSERT INTO "Wine_Variety" VALUES(1010,1013,610); INSERT INTO "Wine_Variety" VALUES(1011,1014,611); INSERT INTO "Wine_Variety" VALUES(1012,1015,612); INSERT INTO "Wine_Variety" VALUES(1013,1016,225); INSERT INTO "Wine_Variety" VALUES(1014,1017,613); INSERT INTO "Wine_Variety" VALUES(1015,1018,54); INSERT INTO "Wine_Variety" VALUES(1016,1019,614); INSERT INTO "Wine_Variety" VALUES(1017,1020,615); INSERT INTO "Wine_Variety" VALUES(1018,1021,616); INSERT INTO "Wine_Variety" VALUES(1019,1022,441); INSERT INTO "Wine_Variety" VALUES(1020,1023,292); INSERT INTO "Wine_Variety" VALUES(1021,1024,134); INSERT INTO "Wine_Variety" VALUES(1022,1025,8); INSERT INTO "Wine_Variety" VALUES(1023,1026,617); INSERT INTO "Wine_Variety" VALUES(1024,1027,605); INSERT INTO "Wine_Variety" VALUES(1025,1028,405); INSERT INTO "Wine_Variety" VALUES(1026,1029,618); INSERT INTO "Wine_Variety" VALUES(1027,1030,200); INSERT INTO "Wine_Variety" VALUES(1028,1031,324); INSERT INTO "Wine_Variety" VALUES(1029,1032,236); INSERT INTO "Wine_Variety" VALUES(1030,1033,323); INSERT INTO "Wine_Variety" VALUES(1031,1034,609); INSERT INTO "Wine_Variety" VALUES(1032,1035,375); INSERT INTO "Wine_Variety" VALUES(1033,1036,615); INSERT INTO "Wine_Variety" VALUES(1034,1037,619); INSERT INTO "Wine_Variety" VALUES(1035,1038,620); INSERT INTO "Wine_Variety" VALUES(1036,1039,59); INSERT INTO "Wine_Variety" VALUES(1037,1040,621); INSERT INTO "Wine_Variety" VALUES(1038,1041,174); INSERT INTO "Wine_Variety" VALUES(1039,1042,622); INSERT INTO "Wine_Variety" VALUES(1040,1043,623); INSERT INTO "Wine_Variety" VALUES(1041,1044,624); INSERT INTO "Wine_Variety" VALUES(1042,1045,209); INSERT INTO "Wine_Variety" VALUES(1043,1046,209); INSERT INTO "Wine_Variety" VALUES(1044,1047,98); INSERT INTO "Wine_Variety" VALUES(1045,1048,611); INSERT INTO "Wine_Variety" VALUES(1046,1049,625); INSERT INTO "Wine_Variety" VALUES(1047,1050,293); INSERT INTO "Wine_Variety" VALUES(1048,1051,626); INSERT INTO "Wine_Variety" VALUES(1049,1052,627); INSERT INTO "Wine_Variety" VALUES(1050,1053,614); INSERT INTO "Wine_Variety" VALUES(1051,1054,471); INSERT INTO "Wine_Variety" VALUES(1052,1055,628); INSERT INTO "Wine_Variety" VALUES(1053,1056,27); INSERT INTO "Wine_Variety" VALUES(1054,1057,603); INSERT INTO "Wine_Variety" VALUES(1055,1058,629); INSERT INTO "Wine_Variety" VALUES(1056,1059,422); INSERT INTO "Wine_Variety" VALUES(1057,1060,22); INSERT INTO "Wine_Variety" VALUES(1058,1061,630); INSERT INTO "Wine_Variety" VALUES(1059,1062,179); INSERT INTO "Wine_Variety" VALUES(1060,1063,631); INSERT INTO "Wine_Variety" VALUES(1061,1064,547); INSERT INTO "Wine_Variety" VALUES(1062,1065,200); INSERT INTO "Wine_Variety" VALUES(1063,1066,22); INSERT INTO "Wine_Variety" VALUES(1064,1067,612); INSERT INTO "Wine_Variety" VALUES(1065,1068,569); INSERT INTO "Wine_Variety" VALUES(1066,1069,153); INSERT INTO "Wine_Variety" VALUES(1067,1070,632); INSERT INTO "Wine_Variety" VALUES(1068,1071,582); INSERT INTO "Wine_Variety" VALUES(1069,1072,633); INSERT INTO "Wine_Variety" VALUES(1070,1073,262); INSERT INTO "Wine_Variety" VALUES(1071,1074,233); INSERT INTO "Wine_Variety" VALUES(1072,1075,338); INSERT INTO "Wine_Variety" VALUES(1073,1076,634); INSERT INTO "Wine_Variety" VALUES(1074,1077,635); INSERT INTO "Wine_Variety" VALUES(1075,1078,636); INSERT INTO "Wine_Variety" VALUES(1076,1079,140); INSERT INTO "Wine_Variety" VALUES(1077,1080,236); INSERT INTO "Wine_Variety" VALUES(1078,1081,637); INSERT INTO "Wine_Variety" VALUES(1079,1082,618); INSERT INTO "Wine_Variety" VALUES(1080,1083,638); INSERT INTO "Wine_Variety" VALUES(1081,1084,552); INSERT INTO "Wine_Variety" VALUES(1082,1085,639); INSERT INTO "Wine_Variety" VALUES(1083,1086,640); INSERT INTO "Wine_Variety" VALUES(1084,1087,207); INSERT INTO "Wine_Variety" VALUES(1085,1088,641); INSERT INTO "Wine_Variety" VALUES(1086,1089,642); INSERT INTO "Wine_Variety" VALUES(1087,1090,324); INSERT INTO "Wine_Variety" VALUES(1088,1091,98); INSERT INTO "Wine_Variety" VALUES(1089,1092,592); INSERT INTO "Wine_Variety" VALUES(1090,1093,124); INSERT INTO "Wine_Variety" VALUES(1091,1094,113); INSERT INTO "Wine_Variety" VALUES(1092,1095,614); INSERT INTO "Wine_Variety" VALUES(1093,1096,159); INSERT INTO "Wine_Variety" VALUES(1094,1097,200); INSERT INTO "Wine_Variety" VALUES(1095,1098,225); INSERT INTO "Wine_Variety" VALUES(1096,1099,441); INSERT INTO "Wine_Variety" VALUES(1097,1100,634); INSERT INTO "Wine_Variety" VALUES(1098,1101,179); INSERT INTO "Wine_Variety" VALUES(1099,1102,643); INSERT INTO "Wine_Variety" VALUES(1100,1103,598); INSERT INTO "Wine_Variety" VALUES(1101,1104,594); INSERT INTO "Wine_Variety" VALUES(1102,1105,644); INSERT INTO "Wine_Variety" VALUES(1103,1106,405); INSERT INTO "Wine_Variety" VALUES(1104,1107,522); INSERT INTO "Wine_Variety" VALUES(1105,1108,113); INSERT INTO "Wine_Variety" VALUES(1106,1109,83); INSERT INTO "Wine_Variety" VALUES(1107,1110,292); INSERT INTO "Wine_Variety" VALUES(1108,1111,624); INSERT INTO "Wine_Variety" VALUES(1109,1112,645); INSERT INTO "Wine_Variety" VALUES(1110,1113,646); INSERT INTO "Wine_Variety" VALUES(1111,1114,647); INSERT INTO "Wine_Variety" VALUES(1112,1115,648); INSERT INTO "Wine_Variety" VALUES(1113,1116,634); INSERT INTO "Wine_Variety" VALUES(1114,1117,649); INSERT INTO "Wine_Variety" VALUES(1115,1118,650); INSERT INTO "Wine_Variety" VALUES(1116,1119,31); INSERT INTO "Wine_Variety" VALUES(1117,1120,17); INSERT INTO "Wine_Variety" VALUES(1118,1121,244); INSERT INTO "Wine_Variety" VALUES(1119,1122,651); INSERT INTO "Wine_Variety" VALUES(1120,1123,252); INSERT INTO "Wine_Variety" VALUES(1121,1124,652); INSERT INTO "Wine_Variety" VALUES(1122,1125,653); INSERT INTO "Wine_Variety" VALUES(1123,1126,646); INSERT INTO "Wine_Variety" VALUES(1124,1127,654); INSERT INTO "Wine_Variety" VALUES(1125,1128,586); INSERT INTO "Wine_Variety" VALUES(1126,1129,270); INSERT INTO "Wine_Variety" VALUES(1127,1130,164); INSERT INTO "Wine_Variety" VALUES(1128,1131,655); INSERT INTO "Wine_Variety" VALUES(1129,1132,582); INSERT INTO "Wine_Variety" VALUES(1130,1133,99); INSERT INTO "Wine_Variety" VALUES(1131,1134,547); INSERT INTO "Wine_Variety" VALUES(1132,1135,656); INSERT INTO "Wine_Variety" VALUES(1133,1136,233); INSERT INTO "Wine_Variety" VALUES(1134,1137,8); INSERT INTO "Wine_Variety" VALUES(1135,1138,225); INSERT INTO "Wine_Variety" VALUES(1136,1139,657); INSERT INTO "Wine_Variety" VALUES(1137,1140,582); INSERT INTO "Wine_Variety" VALUES(1138,1141,658); INSERT INTO "Wine_Variety" VALUES(1139,1142,659); INSERT INTO "Wine_Variety" VALUES(1140,1143,660); INSERT INTO "Wine_Variety" VALUES(1141,1144,272); INSERT INTO "Wine_Variety" VALUES(1142,1145,559); INSERT INTO "Wine_Variety" VALUES(1143,1146,1); INSERT INTO "Wine_Variety" VALUES(1144,1147,17); INSERT INTO "Wine_Variety" VALUES(1145,1148,661); INSERT INTO "Wine_Variety" VALUES(1146,1149,662); INSERT INTO "Wine_Variety" VALUES(1147,1150,663); INSERT INTO "Wine_Variety" VALUES(1148,1151,664); INSERT INTO "Wine_Variety" VALUES(1149,1152,665); INSERT INTO "Wine_Variety" VALUES(1150,1153,106); INSERT INTO "Wine_Variety" VALUES(1151,1154,666); INSERT INTO "Wine_Variety" VALUES(1152,1155,281); INSERT INTO "Wine_Variety" VALUES(1153,1156,309); INSERT INTO "Wine_Variety" VALUES(1154,1157,667); INSERT INTO "Wine_Variety" VALUES(1155,1158,106); INSERT INTO "Wine_Variety" VALUES(1156,1159,122); INSERT INTO "Wine_Variety" VALUES(1157,1160,544); INSERT INTO "Wine_Variety" VALUES(1158,1161,587); INSERT INTO "Wine_Variety" VALUES(1159,1162,338); INSERT INTO "Wine_Variety" VALUES(1160,1163,608); INSERT INTO "Wine_Variety" VALUES(1161,1164,668); INSERT INTO "Wine_Variety" VALUES(1162,1165,118); INSERT INTO "Wine_Variety" VALUES(1163,1166,155); INSERT INTO "Wine_Variety" VALUES(1164,1167,651); INSERT INTO "Wine_Variety" VALUES(1165,1168,669); INSERT INTO "Wine_Variety" VALUES(1166,1169,648); INSERT INTO "Wine_Variety" VALUES(1167,1170,670); INSERT INTO "Wine_Variety" VALUES(1168,1171,249); INSERT INTO "Wine_Variety" VALUES(1169,1172,294); INSERT INTO "Wine_Variety" VALUES(1170,1173,276); INSERT INTO "Wine_Variety" VALUES(1171,1174,579); INSERT INTO "Wine_Variety" VALUES(1172,1175,435); INSERT INTO "Wine_Variety" VALUES(1173,1176,671); INSERT INTO "Wine_Variety" VALUES(1174,1177,672); INSERT INTO "Wine_Variety" VALUES(1175,1178,673); INSERT INTO "Wine_Variety" VALUES(1176,1179,653); INSERT INTO "Wine_Variety" VALUES(1177,1180,436); INSERT INTO "Wine_Variety" VALUES(1178,1181,99); INSERT INTO "Wine_Variety" VALUES(1179,1182,246); INSERT INTO "Wine_Variety" VALUES(1180,1183,294); INSERT INTO "Wine_Variety" VALUES(1181,1184,422); INSERT INTO "Wine_Variety" VALUES(1182,1185,54); INSERT INTO "Wine_Variety" VALUES(1183,1186,405); INSERT INTO "Wine_Variety" VALUES(1184,1187,276); INSERT INTO "Wine_Variety" VALUES(1185,1188,674); INSERT INTO "Wine_Variety" VALUES(1186,1189,675); INSERT INTO "Wine_Variety" VALUES(1187,1190,450); INSERT INTO "Wine_Variety" VALUES(1188,1191,672); INSERT INTO "Wine_Variety" VALUES(1189,1192,676); INSERT INTO "Wine_Variety" VALUES(1190,1193,99); INSERT INTO "Wine_Variety" VALUES(1191,1194,677); INSERT INTO "Wine_Variety" VALUES(1192,1195,678); INSERT INTO "Wine_Variety" VALUES(1193,1196,679); INSERT INTO "Wine_Variety" VALUES(1194,1197,246); INSERT INTO "Wine_Variety" VALUES(1195,1198,441); INSERT INTO "Wine_Variety" VALUES(1196,1199,592); INSERT INTO "Wine_Variety" VALUES(1197,1200,63); INSERT INTO "Wine_Variety" VALUES(1198,1201,338); INSERT INTO "Wine_Variety" VALUES(1199,1202,465); INSERT INTO "Wine_Variety" VALUES(1200,1203,680); INSERT INTO "Wine_Variety" VALUES(1201,1204,17); INSERT INTO "Wine_Variety" VALUES(1202,1205,592); INSERT INTO "Wine_Variety" VALUES(1203,1206,483); INSERT INTO "Wine_Variety" VALUES(1204,1207,455); INSERT INTO "Wine_Variety" VALUES(1205,1208,681); INSERT INTO "Wine_Variety" VALUES(1206,1209,440); INSERT INTO "Wine_Variety" VALUES(1207,1210,17); INSERT INTO "Wine_Variety" VALUES(1208,1211,591); INSERT INTO "Wine_Variety" VALUES(1209,1212,682); INSERT INTO "Wine_Variety" VALUES(1210,1213,683); INSERT INTO "Wine_Variety" VALUES(1211,1214,559); INSERT INTO "Wine_Variety" VALUES(1212,1215,684); INSERT INTO "Wine_Variety" VALUES(1213,1216,156); INSERT INTO "Wine_Variety" VALUES(1214,1217,413); INSERT INTO "Wine_Variety" VALUES(1215,1218,163); INSERT INTO "Wine_Variety" VALUES(1216,1219,685); INSERT INTO "Wine_Variety" VALUES(1217,1220,686); INSERT INTO "Wine_Variety" VALUES(1218,1221,294); INSERT INTO "Wine_Variety" VALUES(1219,1222,437); INSERT INTO "Wine_Variety" VALUES(1220,1223,116); INSERT INTO "Wine_Variety" VALUES(1221,1224,17); INSERT INTO "Wine_Variety" VALUES(1222,1225,8); INSERT INTO "Wine_Variety" VALUES(1223,1226,687); INSERT INTO "Wine_Variety" VALUES(1224,1227,100); INSERT INTO "Wine_Variety" VALUES(1225,1228,522); INSERT INTO "Wine_Variety" VALUES(1226,1229,552); INSERT INTO "Wine_Variety" VALUES(1227,1230,688); INSERT INTO "Wine_Variety" VALUES(1228,1231,422); INSERT INTO "Wine_Variety" VALUES(1229,1232,689); INSERT INTO "Wine_Variety" VALUES(1230,1233,690); INSERT INTO "Wine_Variety" VALUES(1231,1234,17); INSERT INTO "Wine_Variety" VALUES(1232,1235,3); INSERT INTO "Wine_Variety" VALUES(1233,1236,691); INSERT INTO "Wine_Variety" VALUES(1234,1237,692); INSERT INTO "Wine_Variety" VALUES(1235,1238,693); INSERT INTO "Wine_Variety" VALUES(1236,1239,656); INSERT INTO "Wine_Variety" VALUES(1237,1240,80); INSERT INTO "Wine_Variety" VALUES(1238,1241,534); INSERT INTO "Wine_Variety" VALUES(1239,1242,694); INSERT INTO "Wine_Variety" VALUES(1240,1243,689); INSERT INTO "Wine_Variety" VALUES(1241,1244,695); INSERT INTO "Wine_Variety" VALUES(1242,1245,696); INSERT INTO "Wine_Variety" VALUES(1243,1246,653); INSERT INTO "Wine_Variety" VALUES(1244,1247,697); INSERT INTO "Wine_Variety" VALUES(1245,1248,698); INSERT INTO "Wine_Variety" VALUES(1246,1249,689); INSERT INTO "Wine_Variety" VALUES(1247,1250,459); INSERT INTO "Wine_Variety" VALUES(1248,1251,699); INSERT INTO "Wine_Variety" VALUES(1249,1252,700); INSERT INTO "Wine_Variety" VALUES(1250,1253,696); INSERT INTO "Wine_Variety" VALUES(1251,1254,701); INSERT INTO "Wine_Variety" VALUES(1252,1255,702); INSERT INTO "Wine_Variety" VALUES(1253,1256,703); INSERT INTO "Wine_Variety" VALUES(1254,1257,704); INSERT INTO "Wine_Variety" VALUES(1255,1258,705); INSERT INTO "Wine_Variety" VALUES(1256,1259,143); INSERT INTO "Wine_Variety" VALUES(1257,1260,706); INSERT INTO "Wine_Variety" VALUES(1258,1261,707); INSERT INTO "Wine_Variety" VALUES(1259,1262,501); INSERT INTO "Wine_Variety" VALUES(1260,1263,66); INSERT INTO "Wine_Variety" VALUES(1261,1264,584); INSERT INTO "Wine_Variety" VALUES(1262,1265,40); INSERT INTO "Wine_Variety" VALUES(1263,1266,708); INSERT INTO "Wine_Variety" VALUES(1264,1267,653); INSERT INTO "Wine_Variety" VALUES(1265,1268,709); INSERT INTO "Wine_Variety" VALUES(1266,1269,435); INSERT INTO "Wine_Variety" VALUES(1267,1270,710); INSERT INTO "Wine_Variety" VALUES(1268,1271,50); INSERT INTO "Wine_Variety" VALUES(1269,1272,711); INSERT INTO "Wine_Variety" VALUES(1270,1273,712); INSERT INTO "Wine_Variety" VALUES(1271,1274,453); INSERT INTO "Wine_Variety" VALUES(1272,1275,713); INSERT INTO "Wine_Variety" VALUES(1273,1276,267); INSERT INTO "Wine_Variety" VALUES(1274,1277,714); INSERT INTO "Wine_Variety" VALUES(1275,1278,715); INSERT INTO "Wine_Variety" VALUES(1276,1279,716); INSERT INTO "Wine_Variety" VALUES(1277,1280,463); INSERT INTO "Wine_Variety" VALUES(1278,1281,717); INSERT INTO "Wine_Variety" VALUES(1279,1282,718); INSERT INTO "Wine_Variety" VALUES(1280,1283,719); INSERT INTO "Wine_Variety" VALUES(1281,1284,720); INSERT INTO "Wine_Variety" VALUES(1282,1285,99); INSERT INTO "Wine_Variety" VALUES(1283,1286,721); INSERT INTO "Wine_Variety" VALUES(1284,1287,722); INSERT INTO "Wine_Variety" VALUES(1285,1288,208); INSERT INTO "Wine_Variety" VALUES(1286,1289,63); INSERT INTO "Wine_Variety" VALUES(1287,1290,723); INSERT INTO "Wine_Variety" VALUES(1288,1291,724); INSERT INTO "Wine_Variety" VALUES(1289,1292,697); INSERT INTO "Wine_Variety" VALUES(1290,1293,256); INSERT INTO "Wine_Variety" VALUES(1291,1294,725); INSERT INTO "Wine_Variety" VALUES(1292,1295,642); INSERT INTO "Wine_Variety" VALUES(1293,1296,726); INSERT INTO "Wine_Variety" VALUES(1294,1297,587); INSERT INTO "Wine_Variety" VALUES(1295,1298,560); INSERT INTO "Wine_Variety" VALUES(1296,1299,681); INSERT INTO "Wine_Variety" VALUES(1297,1300,727); INSERT INTO "Wine_Variety" VALUES(1298,1301,728); INSERT INTO "Wine_Variety" VALUES(1299,1302,729); INSERT INTO "Wine_Variety" VALUES(1300,1303,25); INSERT INTO "Wine_Variety" VALUES(1301,1304,629); INSERT INTO "Wine_Variety" VALUES(1302,1305,344); INSERT INTO "Wine_Variety" VALUES(1303,1306,730); INSERT INTO "Wine_Variety" VALUES(1304,1307,731); INSERT INTO "Wine_Variety" VALUES(1305,1308,552); INSERT INTO "Wine_Variety" VALUES(1306,1309,650); INSERT INTO "Wine_Variety" VALUES(1307,1310,104); INSERT INTO "Wine_Variety" VALUES(1308,1311,413); INSERT INTO "Wine_Variety" VALUES(1309,1312,208); INSERT INTO "Wine_Variety" VALUES(1310,1313,732); INSERT INTO "Wine_Variety" VALUES(1311,1314,442); INSERT INTO "Wine_Variety" VALUES(1312,1315,733); INSERT INTO "Wine_Variety" VALUES(1313,1316,734); INSERT INTO "Wine_Variety" VALUES(1314,1317,144); INSERT INTO "Wine_Variety" VALUES(1315,1318,690); INSERT INTO "Wine_Variety" VALUES(1316,1319,600); INSERT INTO "Wine_Variety" VALUES(1317,1320,735); INSERT INTO "Wine_Variety" VALUES(1318,1321,222); INSERT INTO "Wine_Variety" VALUES(1319,1322,136); INSERT INTO "Wine_Variety" VALUES(1320,1323,736); INSERT INTO "Wine_Variety" VALUES(1321,1324,689); INSERT INTO "Wine_Variety" VALUES(1322,1325,324); INSERT INTO "Wine_Variety" VALUES(1323,1326,737); INSERT INTO "Wine_Variety" VALUES(1324,1327,17); INSERT INTO "Wine_Variety" VALUES(1325,1328,435); INSERT INTO "Wine_Variety" VALUES(1326,1329,496); INSERT INTO "Wine_Variety" VALUES(1327,1330,608); INSERT INTO "Wine_Variety" VALUES(1328,1331,738); INSERT INTO "Wine_Variety" VALUES(1329,1332,541); INSERT INTO "Wine_Variety" VALUES(1330,1333,280); INSERT INTO "Wine_Variety" VALUES(1331,1334,711); INSERT INTO "Wine_Variety" VALUES(1332,1335,739); INSERT INTO "Wine_Variety" VALUES(1333,1336,702); INSERT INTO "Wine_Variety" VALUES(1334,1337,740); INSERT INTO "Wine_Variety" VALUES(1335,1338,653); INSERT INTO "Wine_Variety" VALUES(1336,1339,741); INSERT INTO "Wine_Variety" VALUES(1337,1340,742); INSERT INTO "Wine_Variety" VALUES(1338,1341,209); INSERT INTO "Wine_Variety" VALUES(1339,1342,213); INSERT INTO "Wine_Variety" VALUES(1340,1343,743); INSERT INTO "Wine_Variety" VALUES(1341,1344,744); INSERT INTO "Wine_Variety" VALUES(1342,1345,462); INSERT INTO "Wine_Variety" VALUES(1343,1346,745); INSERT INTO "Wine_Variety" VALUES(1344,1347,746); INSERT INTO "Wine_Variety" VALUES(1345,1348,747); INSERT INTO "Wine_Variety" VALUES(1346,1349,693); INSERT INTO "Wine_Variety" VALUES(1347,1350,678); INSERT INTO "Wine_Variety" VALUES(1348,1351,748); INSERT INTO "Wine_Variety" VALUES(1349,1352,674); INSERT INTO "Wine_Variety" VALUES(1350,1353,749); INSERT INTO "Wine_Variety" VALUES(1351,1354,750); INSERT INTO "Wine_Variety" VALUES(1352,1355,3); INSERT INTO "Wine_Variety" VALUES(1353,1356,72); INSERT INTO "Wine_Variety" VALUES(1354,1357,422); INSERT INTO "Wine_Variety" VALUES(1355,1358,751); INSERT INTO "Wine_Variety" VALUES(1356,1359,334); INSERT INTO "Wine_Variety" VALUES(1357,1360,752); INSERT INTO "Wine_Variety" VALUES(1358,1361,753); INSERT INTO "Wine_Variety" VALUES(1359,1362,74); INSERT INTO "Wine_Variety" VALUES(1360,1363,754); INSERT INTO "Wine_Variety" VALUES(1361,1364,755); INSERT INTO "Wine_Variety" VALUES(1362,1365,756); INSERT INTO "Wine_Variety" VALUES(1363,1366,426); INSERT INTO "Wine_Variety" VALUES(1364,1367,442); INSERT INTO "Wine_Variety" VALUES(1365,1368,361); INSERT INTO "Wine_Variety" VALUES(1366,1369,280); INSERT INTO "Wine_Variety" VALUES(1367,1370,757); INSERT INTO "Wine_Variety" VALUES(1368,1371,758); INSERT INTO "Wine_Variety" VALUES(1369,1372,549); INSERT INTO "Wine_Variety" VALUES(1370,1373,130); INSERT INTO "Wine_Variety" VALUES(1371,1374,307); INSERT INTO "Wine_Variety" VALUES(1372,1375,759); INSERT INTO "Wine_Variety" VALUES(1373,1376,760); INSERT INTO "Wine_Variety" VALUES(1374,1377,748); INSERT INTO "Wine_Variety" VALUES(1375,1378,334); INSERT INTO "Wine_Variety" VALUES(1376,1379,761); INSERT INTO "Wine_Variety" VALUES(1377,1380,455); INSERT INTO "Wine_Variety" VALUES(1378,1381,762); INSERT INTO "Wine_Variety" VALUES(1379,1382,209); INSERT INTO "Wine_Variety" VALUES(1380,1383,100); INSERT INTO "Wine_Variety" VALUES(1381,1384,653); INSERT INTO "Wine_Variety" VALUES(1382,1385,749); INSERT INTO "Wine_Variety" VALUES(1383,1386,763); INSERT INTO "Wine_Variety" VALUES(1384,1387,764); INSERT INTO "Wine_Variety" VALUES(1385,1388,765); INSERT INTO "Wine_Variety" VALUES(1386,1389,662); INSERT INTO "Wine_Variety" VALUES(1387,1390,766); INSERT INTO "Wine_Variety" VALUES(1388,1391,234); INSERT INTO "Wine_Variety" VALUES(1389,1392,106); INSERT INTO "Wine_Variety" VALUES(1390,1393,767); INSERT INTO "Wine_Variety" VALUES(1391,1394,768); INSERT INTO "Wine_Variety" VALUES(1392,1395,397); INSERT INTO "Wine_Variety" VALUES(1393,1396,485); INSERT INTO "Wine_Variety" VALUES(1394,1397,3); INSERT INTO "Wine_Variety" VALUES(1395,1398,80); INSERT INTO "Wine_Variety" VALUES(1396,1399,769); INSERT INTO "Wine_Variety" VALUES(1397,1400,578); INSERT INTO "Wine_Variety" VALUES(1398,1401,770); INSERT INTO "Wine_Variety" VALUES(1399,1402,771); INSERT INTO "Wine_Variety" VALUES(1400,1403,273); INSERT INTO "Wine_Variety" VALUES(1401,1404,772); INSERT INTO "Wine_Variety" VALUES(1402,1405,773); INSERT INTO "Wine_Variety" VALUES(1403,1406,664); INSERT INTO "Wine_Variety" VALUES(1404,1407,774); INSERT INTO "Wine_Variety" VALUES(1405,1408,775); INSERT INTO "Wine_Variety" VALUES(1406,1409,613); INSERT INTO "Wine_Variety" VALUES(1407,1410,776); INSERT INTO "Wine_Variety" VALUES(1408,1411,634); INSERT INTO "Wine_Variety" VALUES(1409,1412,75); INSERT INTO "Wine_Variety" VALUES(1410,1413,222); INSERT INTO "Wine_Variety" VALUES(1411,1414,767); INSERT INTO "Wine_Variety" VALUES(1412,1415,723); INSERT INTO "Wine_Variety" VALUES(1413,1416,161); INSERT INTO "Wine_Variety" VALUES(1414,1417,249); INSERT INTO "Wine_Variety" VALUES(1415,1418,777); INSERT INTO "Wine_Variety" VALUES(1416,1419,778); INSERT INTO "Wine_Variety" VALUES(1417,1420,779); INSERT INTO "Wine_Variety" VALUES(1418,1421,17); INSERT INTO "Wine_Variety" VALUES(1419,1422,780); INSERT INTO "Wine_Variety" VALUES(1420,1423,781); INSERT INTO "Wine_Variety" VALUES(1421,1424,782); INSERT INTO "Wine_Variety" VALUES(1422,1425,558); INSERT INTO "Wine_Variety" VALUES(1423,1426,249); INSERT INTO "Wine_Variety" VALUES(1424,1427,783); INSERT INTO "Wine_Variety" VALUES(1425,1428,724); INSERT INTO "Wine_Variety" VALUES(1426,1429,473); INSERT INTO "Wine_Variety" VALUES(1427,1430,723); INSERT INTO "Wine_Variety" VALUES(1428,1431,217); INSERT INTO "Wine_Variety" VALUES(1429,1432,499); INSERT INTO "Wine_Variety" VALUES(1430,1433,607); INSERT INTO "Wine_Variety" VALUES(1431,1434,784); INSERT INTO "Wine_Variety" VALUES(1432,1435,785); INSERT INTO "Wine_Variety" VALUES(1433,1436,786); INSERT INTO "Wine_Variety" VALUES(1434,1437,787); INSERT INTO "Wine_Variety" VALUES(1435,1438,744); INSERT INTO "Wine_Variety" VALUES(1436,1439,361); INSERT INTO "Wine_Variety" VALUES(1437,1440,788); INSERT INTO "Wine_Variety" VALUES(1438,1441,782); INSERT INTO "Wine_Variety" VALUES(1439,1442,751); INSERT INTO "Wine_Variety" VALUES(1440,1443,789); INSERT INTO "Wine_Variety" VALUES(1441,1444,790); INSERT INTO "Wine_Variety" VALUES(1442,1445,129); INSERT INTO "Wine_Variety" VALUES(1443,1446,708); INSERT INTO "Wine_Variety" VALUES(1444,1447,791); INSERT INTO "Wine_Variety" VALUES(1445,1448,792); INSERT INTO "Wine_Variety" VALUES(1446,1449,748); INSERT INTO "Wine_Variety" VALUES(1447,1450,560); INSERT INTO "Wine_Variety" VALUES(1448,1451,578); INSERT INTO "Wine_Variety" VALUES(1449,1452,166); INSERT INTO "Wine_Variety" VALUES(1450,1453,793); INSERT INTO "Wine_Variety" VALUES(1451,1454,794); INSERT INTO "Wine_Variety" VALUES(1452,1455,795); INSERT INTO "Wine_Variety" VALUES(1453,1456,796); INSERT INTO "Wine_Variety" VALUES(1454,1457,679); INSERT INTO "Wine_Variety" VALUES(1455,1458,455); INSERT INTO "Wine_Variety" VALUES(1456,1459,791); INSERT INTO "Wine_Variety" VALUES(1457,1460,797); INSERT INTO "Wine_Variety" VALUES(1458,1461,589); INSERT INTO "Wine_Variety" VALUES(1459,1462,361); INSERT INTO "Wine_Variety" VALUES(1460,1463,798); INSERT INTO "Wine_Variety" VALUES(1461,1464,582); INSERT INTO "Wine_Variety" VALUES(1462,1465,782); INSERT INTO "Wine_Variety" VALUES(1463,1466,675); INSERT INTO "Wine_Variety" VALUES(1464,1467,629); INSERT INTO "Wine_Variety" VALUES(1465,1468,748); INSERT INTO "Wine_Variety" VALUES(1466,1469,541); INSERT INTO "Wine_Variety" VALUES(1467,1470,799); INSERT INTO "Wine_Variety" VALUES(1468,1471,686); INSERT INTO "Wine_Variety" VALUES(1469,1472,800); INSERT INTO "Wine_Variety" VALUES(1470,1473,656); INSERT INTO "Wine_Variety" VALUES(1471,1474,801); INSERT INTO "Wine_Variety" VALUES(1472,1475,802); INSERT INTO "Wine_Variety" VALUES(1473,1476,803); INSERT INTO "Wine_Variety" VALUES(1474,1477,211); INSERT INTO "Wine_Variety" VALUES(1475,1478,804); INSERT INTO "Wine_Variety" VALUES(1476,1479,397); INSERT INTO "Wine_Variety" VALUES(1477,1480,51); INSERT INTO "Wine_Variety" VALUES(1478,1481,52); INSERT INTO "Wine_Variety" VALUES(1479,1482,805); INSERT INTO "Wine_Variety" VALUES(1480,1483,806); INSERT INTO "Wine_Variety" VALUES(1481,1484,807); INSERT INTO "Wine_Variety" VALUES(1482,1485,808); INSERT INTO "Wine_Variety" VALUES(1483,1486,809); INSERT INTO "Wine_Variety" VALUES(1484,1487,422); INSERT INTO "Wine_Variety" VALUES(1485,1488,810); INSERT INTO "Wine_Variety" VALUES(1486,1489,811); INSERT INTO "Wine_Variety" VALUES(1487,1490,812); INSERT INTO "Wine_Variety" VALUES(1488,1491,796); INSERT INTO "Wine_Variety" VALUES(1489,1492,786); INSERT INTO "Wine_Variety" VALUES(1490,1493,621); INSERT INTO "Wine_Variety" VALUES(1491,1494,813); INSERT INTO "Wine_Variety" VALUES(1492,1495,422); INSERT INTO "Wine_Variety" VALUES(1493,1496,814); INSERT INTO "Wine_Variety" VALUES(1494,1497,815); INSERT INTO "Wine_Variety" VALUES(1495,1498,586); INSERT INTO "Wine_Variety" VALUES(1496,1499,690); INSERT INTO "Wine_Variety" VALUES(1497,1500,280); INSERT INTO "Wine_Variety" VALUES(1498,1501,727); INSERT INTO "Wine_Variety" VALUES(1499,1502,740); INSERT INTO "Wine_Variety" VALUES(1500,1503,324); INSERT INTO "Wine_Variety" VALUES(1501,1504,766); INSERT INTO "Wine_Variety" VALUES(1502,1505,80); INSERT INTO "Wine_Variety" VALUES(1503,1506,96); INSERT INTO "Wine_Variety" VALUES(1504,1507,816); INSERT INTO "Wine_Variety" VALUES(1505,1508,817); INSERT INTO "Wine_Variety" VALUES(1506,1509,818); INSERT INTO "Wine_Variety" VALUES(1507,1510,819); INSERT INTO "Wine_Variety" VALUES(1508,1511,820); INSERT INTO "Wine_Variety" VALUES(1509,1512,711); INSERT INTO "Wine_Variety" VALUES(1510,1513,821); INSERT INTO "Wine_Variety" VALUES(1511,1514,563); INSERT INTO "Wine_Variety" VALUES(1512,1515,738); INSERT INTO "Wine_Variety" VALUES(1513,1516,822); INSERT INTO "Wine_Variety" VALUES(1514,1517,142); INSERT INTO "Wine_Variety" VALUES(1515,1518,823); INSERT INTO "Wine_Variety" VALUES(1516,1519,791); INSERT INTO "Wine_Variety" VALUES(1517,1520,824); INSERT INTO "Wine_Variety" VALUES(1518,1521,825); INSERT INTO "Wine_Variety" VALUES(1519,1522,826); INSERT INTO "Wine_Variety" VALUES(1520,1523,559); INSERT INTO "Wine_Variety" VALUES(1521,1524,280); INSERT INTO "Wine_Variety" VALUES(1522,1525,827); INSERT INTO "Wine_Variety" VALUES(1523,1526,664); INSERT INTO "Wine_Variety" VALUES(1524,1527,630); INSERT INTO "Wine_Variety" VALUES(1525,1528,828); INSERT INTO "Wine_Variety" VALUES(1526,1529,648); INSERT INTO "Wine_Variety" VALUES(1527,1530,829); INSERT INTO "Wine_Variety" VALUES(1528,1531,735); INSERT INTO "Wine_Variety" VALUES(1529,1532,830); INSERT INTO "Wine_Variety" VALUES(1530,1533,818); INSERT INTO "Wine_Variety" VALUES(1531,1534,831); INSERT INTO "Wine_Variety" VALUES(1532,1535,832); INSERT INTO "Wine_Variety" VALUES(1533,1536,833); INSERT INTO "Wine_Variety" VALUES(1534,1537,813); INSERT INTO "Wine_Variety" VALUES(1535,1538,834); INSERT INTO "Wine_Variety" VALUES(1536,1539,23); INSERT INTO "Wine_Variety" VALUES(1537,1540,597); INSERT INTO "Wine_Variety" VALUES(1538,1541,835); INSERT INTO "Wine_Variety" VALUES(1539,1542,589); INSERT INTO "Wine_Variety" VALUES(1540,1543,676); INSERT INTO "Wine_Variety" VALUES(1541,1544,201); INSERT INTO "Wine_Variety" VALUES(1542,1545,836); INSERT INTO "Wine_Variety" VALUES(1543,1546,772); INSERT INTO "Wine_Variety" VALUES(1544,1547,837); INSERT INTO "Wine_Variety" VALUES(1545,1548,518); INSERT INTO "Wine_Variety" VALUES(1546,1549,422); INSERT INTO "Wine_Variety" VALUES(1547,1550,838); INSERT INTO "Wine_Variety" VALUES(1548,1551,143); INSERT INTO "Wine_Variety" VALUES(1549,1552,813); INSERT INTO "Wine_Variety" VALUES(1550,1553,839); INSERT INTO "Wine_Variety" VALUES(1551,1554,840); INSERT INTO "Wine_Variety" VALUES(1552,1555,841); INSERT INTO "Wine_Variety" VALUES(1553,1556,842); INSERT INTO "Wine_Variety" VALUES(1554,1557,583); INSERT INTO "Wine_Variety" VALUES(1555,1558,506); INSERT INTO "Wine_Variety" VALUES(1556,1559,843); INSERT INTO "Wine_Variety" VALUES(1557,1560,844); INSERT INTO "Wine_Variety" VALUES(1558,1561,462); INSERT INTO "Wine_Variety" VALUES(1559,1562,280); INSERT INTO "Wine_Variety" VALUES(1560,1563,705); INSERT INTO "Wine_Variety" VALUES(1561,1564,745); INSERT INTO "Wine_Variety" VALUES(1562,1565,513); INSERT INTO "Wine_Variety" VALUES(1563,1566,310); INSERT INTO "Wine_Variety" VALUES(1564,1567,845); INSERT INTO "Wine_Variety" VALUES(1565,1568,689); INSERT INTO "Wine_Variety" VALUES(1566,1569,153); INSERT INTO "Wine_Variety" VALUES(1567,1570,499); INSERT INTO "Wine_Variety" VALUES(1568,1571,753); INSERT INTO "Wine_Variety" VALUES(1569,1572,846); INSERT INTO "Wine_Variety" VALUES(1570,1573,311); INSERT INTO "Wine_Variety" VALUES(1571,1574,281); INSERT INTO "Wine_Variety" VALUES(1572,1575,847); INSERT INTO "Wine_Variety" VALUES(1573,1576,848); INSERT INTO "Wine_Variety" VALUES(1574,1577,849); INSERT INTO "Wine_Variety" VALUES(1575,1578,281); INSERT INTO "Wine_Variety" VALUES(1576,1579,812); INSERT INTO "Wine_Variety" VALUES(1577,1580,765); INSERT INTO "Wine_Variety" VALUES(1578,1581,731); INSERT INTO "Wine_Variety" VALUES(1579,1582,201); INSERT INTO "Wine_Variety" VALUES(1580,1583,850); INSERT INTO "Wine_Variety" VALUES(1581,1584,851); INSERT INTO "Wine_Variety" VALUES(1582,1585,852); INSERT INTO "Wine_Variety" VALUES(1583,1586,780); INSERT INTO "Wine_Variety" VALUES(1584,1587,796); INSERT INTO "Wine_Variety" VALUES(1585,1588,853); INSERT INTO "Wine_Variety" VALUES(1586,1589,779); INSERT INTO "Wine_Variety" VALUES(1587,1590,562); INSERT INTO "Wine_Variety" VALUES(1588,1591,854); INSERT INTO "Wine_Variety" VALUES(1589,1592,688); INSERT INTO "Wine_Variety" VALUES(1590,1593,855); INSERT INTO "Wine_Variety" VALUES(1591,1594,582); INSERT INTO "Wine_Variety" VALUES(1592,1595,158); INSERT INTO "Wine_Variety" VALUES(1593,1596,560); INSERT INTO "Wine_Variety" VALUES(1594,1597,856); INSERT INTO "Wine_Variety" VALUES(1595,1598,857); INSERT INTO "Wine_Variety" VALUES(1596,1599,309); INSERT INTO "Wine_Variety" VALUES(1597,1600,786); INSERT INTO "Wine_Variety" VALUES(1598,1601,858); INSERT INTO "Wine_Variety" VALUES(1599,1602,232); INSERT INTO "Wine_Variety" VALUES(1600,1603,102); INSERT INTO "Wine_Variety" VALUES(1601,1604,725); INSERT INTO "Wine_Variety" VALUES(1602,1605,281); INSERT INTO "Wine_Variety" VALUES(1603,1606,789); INSERT INTO "Wine_Variety" VALUES(1604,1607,646); INSERT INTO "Wine_Variety" VALUES(1605,1608,830); INSERT INTO "Wine_Variety" VALUES(1606,1609,859); INSERT INTO "Wine_Variety" VALUES(1607,1610,860); INSERT INTO "Wine_Variety" VALUES(1608,1611,730); INSERT INTO "Wine_Variety" VALUES(1609,1612,861); INSERT INTO "Wine_Variety" VALUES(1610,1613,582); INSERT INTO "Wine_Variety" VALUES(1611,1614,862); INSERT INTO "Wine_Variety" VALUES(1612,1615,766); INSERT INTO "Wine_Variety" VALUES(1613,1616,863); INSERT INTO "Wine_Variety" VALUES(1614,1617,864); INSERT INTO "Wine_Variety" VALUES(1615,1618,865); INSERT INTO "Wine_Variety" VALUES(1616,1619,106); INSERT INTO "Wine_Variety" VALUES(1617,1620,866); INSERT INTO "Wine_Variety" VALUES(1618,1621,80); INSERT INTO "Wine_Variety" VALUES(1619,1622,841); INSERT INTO "Wine_Variety" VALUES(1620,1623,867); INSERT INTO "Wine_Variety" VALUES(1621,1624,868); INSERT INTO "Wine_Variety" VALUES(1622,1625,212); INSERT INTO "Wine_Variety" VALUES(1623,1626,869); INSERT INTO "Wine_Variety" VALUES(1624,1627,607); INSERT INTO "Wine_Variety" VALUES(1625,1628,702); INSERT INTO "Wine_Variety" VALUES(1626,1629,870); INSERT INTO "Wine_Variety" VALUES(1627,1630,783); INSERT INTO "Wine_Variety" VALUES(1628,1631,222); INSERT INTO "Wine_Variety" VALUES(1629,1632,871); INSERT INTO "Wine_Variety" VALUES(1630,1633,765); INSERT INTO "Wine_Variety" VALUES(1631,1634,830); INSERT INTO "Wine_Variety" VALUES(1632,1635,166); INSERT INTO "Wine_Variety" VALUES(1633,1636,752); INSERT INTO "Wine_Variety" VALUES(1634,1637,871); INSERT INTO "Wine_Variety" VALUES(1635,1638,872); INSERT INTO "Wine_Variety" VALUES(1636,1639,522); INSERT INTO "Wine_Variety" VALUES(1637,1640,866); INSERT INTO "Wine_Variety" VALUES(1638,1641,873); INSERT INTO "Wine_Variety" VALUES(1639,1642,653); INSERT INTO "Wine_Variety" VALUES(1640,1643,561); INSERT INTO "Wine_Variety" VALUES(1641,1644,874); INSERT INTO "Wine_Variety" VALUES(1642,1645,875); INSERT INTO "Wine_Variety" VALUES(1643,1646,876); INSERT INTO "Wine_Variety" VALUES(1644,1647,877); INSERT INTO "Wine_Variety" VALUES(1645,1648,841); INSERT INTO "Wine_Variety" VALUES(1646,1649,871); INSERT INTO "Wine_Variety" VALUES(1647,1650,208); INSERT INTO "Wine_Variety" VALUES(1648,1651,655); INSERT INTO "Wine_Variety" VALUES(1649,1652,51); INSERT INTO "Wine_Variety" VALUES(1650,1653,878); INSERT INTO "Wine_Variety" VALUES(1651,1654,879); INSERT INTO "Wine_Variety" VALUES(1652,1655,747); INSERT INTO "Wine_Variety" VALUES(1653,1656,858); INSERT INTO "Wine_Variety" VALUES(1654,1657,671); INSERT INTO "Wine_Variety" VALUES(1655,1658,880); INSERT INTO "Wine_Variety" VALUES(1656,1659,589); INSERT INTO "Wine_Variety" VALUES(1657,1660,675); INSERT INTO "Wine_Variety" VALUES(1658,1661,99); INSERT INTO "Wine_Variety" VALUES(1659,1662,717); INSERT INTO "Wine_Variety" VALUES(1660,1663,881); INSERT INTO "Wine_Variety" VALUES(1661,1664,281); INSERT INTO "Wine_Variety" VALUES(1662,1665,455); INSERT INTO "Wine_Variety" VALUES(1663,1666,810); INSERT INTO "Wine_Variety" VALUES(1664,1667,882); INSERT INTO "Wine_Variety" VALUES(1665,1668,883); INSERT INTO "Wine_Variety" VALUES(1666,1669,884); INSERT INTO "Wine_Variety" VALUES(1667,1670,280); INSERT INTO "Wine_Variety" VALUES(1668,1671,281); INSERT INTO "Wine_Variety" VALUES(1669,1672,672); INSERT INTO "Wine_Variety" VALUES(1670,1673,606); INSERT INTO "Wine_Variety" VALUES(1671,1674,851); INSERT INTO "Wine_Variety" VALUES(1672,1675,848); INSERT INTO "Wine_Variety" VALUES(1673,1676,753); INSERT INTO "Wine_Variety" VALUES(1674,1677,817); INSERT INTO "Wine_Variety" VALUES(1675,1678,885); INSERT INTO "Wine_Variety" VALUES(1676,1679,455); INSERT INTO "Wine_Variety" VALUES(1677,1680,886); INSERT INTO "Wine_Variety" VALUES(1678,1681,887); INSERT INTO "Wine_Variety" VALUES(1679,1682,743); INSERT INTO "Wine_Variety" VALUES(1680,1683,888); INSERT INTO "Wine_Variety" VALUES(1681,1684,889); INSERT INTO "Wine_Variety" VALUES(1682,1685,890); INSERT INTO "Wine_Variety" VALUES(1683,1686,891); INSERT INTO "Wine_Variety" VALUES(1684,1687,806); INSERT INTO "Wine_Variety" VALUES(1685,1688,191); INSERT INTO "Wine_Variety" VALUES(1686,1689,892); INSERT INTO "Wine_Variety" VALUES(1687,1690,272); INSERT INTO "Wine_Variety" VALUES(1688,1691,893); INSERT INTO "Wine_Variety" VALUES(1689,1692,215); INSERT INTO "Wine_Variety" VALUES(1690,1693,780); INSERT INTO "Wine_Variety" VALUES(1691,1694,106); INSERT INTO "Wine_Variety" VALUES(1692,1695,894); INSERT INTO "Wine_Variety" VALUES(1693,1696,389); INSERT INTO "Wine_Variety" VALUES(1694,1697,139); INSERT INTO "Wine_Variety" VALUES(1695,1698,895); INSERT INTO "Wine_Variety" VALUES(1696,1699,749); INSERT INTO "Wine_Variety" VALUES(1697,1700,281); INSERT INTO "Wine_Variety" VALUES(1698,1701,679); INSERT INTO "Wine_Variety" VALUES(1699,1702,428); INSERT INTO "Wine_Variety" VALUES(1700,1703,629); INSERT INTO "Wine_Variety" VALUES(1701,1704,40); INSERT INTO "Wine_Variety" VALUES(1702,1705,606); INSERT INTO "Wine_Variety" VALUES(1703,1706,896); INSERT INTO "Wine_Variety" VALUES(1704,1707,796); INSERT INTO "Wine_Variety" VALUES(1705,1708,897); INSERT INTO "Wine_Variety" VALUES(1706,1709,898); INSERT INTO "Wine_Variety" VALUES(1707,1710,899); INSERT INTO "Wine_Variety" VALUES(1708,1711,900); INSERT INTO "Wine_Variety" VALUES(1709,1712,710); INSERT INTO "Wine_Variety" VALUES(1710,1713,901); INSERT INTO "Wine_Variety" VALUES(1711,1714,769); INSERT INTO "Wine_Variety" VALUES(1712,1715,902); INSERT INTO "Wine_Variety" VALUES(1713,1716,903); INSERT INTO "Wine_Variety" VALUES(1714,1717,62); INSERT INTO "Wine_Variety" VALUES(1715,1718,900); INSERT INTO "Wine_Variety" VALUES(1716,1719,879); INSERT INTO "Wine_Variety" VALUES(1717,1720,904); INSERT INTO "Wine_Variety" VALUES(1718,1721,905); INSERT INTO "Wine_Variety" VALUES(1719,1722,96); INSERT INTO "Wine_Variety" VALUES(1720,1723,309); INSERT INTO "Wine_Variety" VALUES(1721,1724,852); INSERT INTO "Wine_Variety" VALUES(1722,1725,730); INSERT INTO "Wine_Variety" VALUES(1723,1726,900); INSERT INTO "Wine_Variety" VALUES(1724,1727,440); INSERT INTO "Wine_Variety" VALUES(1725,1728,900); INSERT INTO "Wine_Variety" VALUES(1726,1729,906); INSERT INTO "Wine_Variety" VALUES(1727,1730,842); INSERT INTO "Wine_Variety" VALUES(1728,1731,749); INSERT INTO "Wine_Variety" VALUES(1729,1732,749); INSERT INTO "Wine_Variety" VALUES(1730,1733,758); INSERT INTO "Wine_Variety" VALUES(1731,1734,590); INSERT INTO "Wine_Variety" VALUES(1732,1735,745); INSERT INTO "Wine_Variety" VALUES(1733,1736,520); INSERT INTO "Wine_Variety" VALUES(1734,1737,907); INSERT INTO "Wine_Variety" VALUES(1735,1738,258); INSERT INTO "Wine_Variety" VALUES(1736,1739,908); INSERT INTO "Wine_Variety" VALUES(1737,1740,909); INSERT INTO "Wine_Variety" VALUES(1738,1741,846); INSERT INTO "Wine_Variety" VALUES(1739,1742,749); INSERT INTO "Wine_Variety" VALUES(1740,1743,749); INSERT INTO "Wine_Variety" VALUES(1741,1744,910); INSERT INTO "Wine_Variety" VALUES(1742,1745,711); INSERT INTO "Wine_Variety" VALUES(1743,1746,153); INSERT INTO "Wine_Variety" VALUES(1744,1747,911); INSERT INTO "Wine_Variety" VALUES(1745,1748,912); INSERT INTO "Wine_Variety" VALUES(1746,1749,913); INSERT INTO "Wine_Variety" VALUES(1747,1750,914); INSERT INTO "Wine_Variety" VALUES(1748,1751,915); INSERT INTO "Wine_Variety" VALUES(1749,1752,916); INSERT INTO "Wine_Variety" VALUES(1750,1753,917); INSERT INTO "Wine_Variety" VALUES(1751,1754,199); INSERT INTO "Wine_Variety" VALUES(1752,1755,691); INSERT INTO "Wine_Variety" VALUES(1753,1756,96); INSERT INTO "Wine_Variety" VALUES(1754,1757,865); INSERT INTO "Wine_Variety" VALUES(1755,1758,138); INSERT INTO "Wine_Variety" VALUES(1756,1759,918); INSERT INTO "Wine_Variety" VALUES(1757,1760,765); INSERT INTO "Wine_Variety" VALUES(1758,1761,919); INSERT INTO "Wine_Variety" VALUES(1759,1762,737); INSERT INTO "Wine_Variety" VALUES(1760,1763,653); INSERT INTO "Wine_Variety" VALUES(1761,1764,51); INSERT INTO "Wine_Variety" VALUES(1762,1765,679); INSERT INTO "Wine_Variety" VALUES(1763,1766,765); INSERT INTO "Wine_Variety" VALUES(1764,1767,920); INSERT INTO "Wine_Variety" VALUES(1765,1768,921); INSERT INTO "Wine_Variety" VALUES(1766,1769,813); INSERT INTO "Wine_Variety" VALUES(1767,1770,922); INSERT INTO "Wine_Variety" VALUES(1768,1771,675); INSERT INTO "Wine_Variety" VALUES(1769,1772,818); INSERT INTO "Wine_Variety" VALUES(1770,1773,818); INSERT INTO "Wine_Variety" VALUES(1771,1774,923); INSERT INTO "Wine_Variety" VALUES(1772,1775,924); INSERT INTO "Wine_Variety" VALUES(1773,1776,925); INSERT INTO "Wine_Variety" VALUES(1774,1777,222); INSERT INTO "Wine_Variety" VALUES(1775,1778,671); INSERT INTO "Wine_Variety" VALUES(1776,1779,675); INSERT INTO "Wine_Variety" VALUES(1777,1780,361); INSERT INTO "Wine_Variety" VALUES(1778,1781,747); INSERT INTO "Wine_Variety" VALUES(1779,1782,926); INSERT INTO "Wine_Variety" VALUES(1780,1783,142); INSERT INTO "Wine_Variety" VALUES(1781,1784,927); INSERT INTO "Wine_Variety" VALUES(1782,1785,117); INSERT INTO "Wine_Variety" VALUES(1783,1786,812); INSERT INTO "Wine_Variety" VALUES(1784,1787,841); INSERT INTO "Wine_Variety" VALUES(1785,1788,928); INSERT INTO "Wine_Variety" VALUES(1786,1789,929); INSERT INTO "Wine_Variety" VALUES(1787,1790,675); INSERT INTO "Wine_Variety" VALUES(1788,1791,930); INSERT INTO "Wine_Variety" VALUES(1789,1792,922); INSERT INTO "Wine_Variety" VALUES(1790,1793,737); INSERT INTO "Wine_Variety" VALUES(1791,1794,749); INSERT INTO "Wine_Variety" VALUES(1792,1795,931); INSERT INTO "Wine_Variety" VALUES(1793,1796,522); INSERT INTO "Wine_Variety" VALUES(1794,1797,911); INSERT INTO "Wine_Variety" VALUES(1795,1798,932); INSERT INTO "Wine_Variety" VALUES(1796,1799,732); INSERT INTO "Wine_Variety" VALUES(1797,1800,675); INSERT INTO "Wine_Variety" VALUES(1798,1801,749); INSERT INTO "Wine_Variety" VALUES(1799,1802,933); INSERT INTO "Wine_Variety" VALUES(1800,1803,696); INSERT INTO "Wine_Variety" VALUES(1801,1804,918); INSERT INTO "Wine_Variety" VALUES(1802,1805,616); INSERT INTO "Wine_Variety" VALUES(1803,1806,10); INSERT INTO "Wine_Variety" VALUES(1804,1807,384); INSERT INTO "Wine_Variety" VALUES(1805,1808,828); INSERT INTO "Wine_Variety" VALUES(1806,1809,934); INSERT INTO "Wine_Variety" VALUES(1807,1810,901); INSERT INTO "Wine_Variety" VALUES(1808,1811,935); INSERT INTO "Wine_Variety" VALUES(1809,1812,936); INSERT INTO "Wine_Variety" VALUES(1810,1813,937); INSERT INTO "Wine_Variety" VALUES(1811,1814,272); INSERT INTO "Wine_Variety" VALUES(1812,1815,94); INSERT INTO "Wine_Variety" VALUES(1813,1816,679); INSERT INTO "Wine_Variety" VALUES(1814,1817,818); INSERT INTO "Wine_Variety" VALUES(1815,1818,938); INSERT INTO "Wine_Variety" VALUES(1816,1819,428); INSERT INTO "Wine_Variety" VALUES(1817,1820,675); INSERT INTO "Wine_Variety" VALUES(1818,1821,792); INSERT INTO "Wine_Variety" VALUES(1819,1822,766); INSERT INTO "Wine_Variety" VALUES(1820,1823,939); INSERT INTO "Wine_Variety" VALUES(1821,1824,541); INSERT INTO "Wine_Variety" VALUES(1822,1825,827); INSERT INTO "Wine_Variety" VALUES(1823,1826,212); INSERT INTO "Wine_Variety" VALUES(1824,1827,624); INSERT INTO "Wine_Variety" VALUES(1825,1828,933); INSERT INTO "Wine_Variety" VALUES(1826,1829,51); INSERT INTO "Wine_Variety" VALUES(1827,1830,616); INSERT INTO "Wine_Variety" VALUES(1828,1831,910); INSERT INTO "Wine_Variety" VALUES(1829,1832,66); INSERT INTO "Wine_Variety" VALUES(1830,1833,727); INSERT INTO "Wine_Variety" VALUES(1831,1834,940); INSERT INTO "Wine_Variety" VALUES(1832,1835,941); INSERT INTO "Wine_Variety" VALUES(1833,1836,942); INSERT INTO "Wine_Variety" VALUES(1834,1837,99); INSERT INTO "Wine_Variety" VALUES(1835,1838,866); INSERT INTO "Wine_Variety" VALUES(1836,1839,654); INSERT INTO "Wine_Variety" VALUES(1837,1840,674); INSERT INTO "Wine_Variety" VALUES(1838,1841,943); INSERT INTO "Wine_Variety" VALUES(1839,1842,139); INSERT INTO "Wine_Variety" VALUES(1840,1843,280); INSERT INTO "Wine_Variety" VALUES(1841,1844,280); INSERT INTO "Wine_Variety" VALUES(1842,1845,455); INSERT INTO "Wine_Variety" VALUES(1843,1846,51); INSERT INTO "Wine_Variety" VALUES(1844,1847,702); INSERT INTO "Wine_Variety" VALUES(1845,1848,752); INSERT INTO "Wine_Variety" VALUES(1846,1849,944); INSERT INTO "Wine_Variety" VALUES(1847,1850,658); INSERT INTO "Wine_Variety" VALUES(1848,1851,676); INSERT INTO "Wine_Variety" VALUES(1849,1852,936); INSERT INTO "Wine_Variety" VALUES(1850,1853,582); INSERT INTO "Wine_Variety" VALUES(1851,1854,945); INSERT INTO "Wine_Variety" VALUES(1852,1855,824); INSERT INTO "Wine_Variety" VALUES(1853,1856,946); INSERT INTO "Wine_Variety" VALUES(1854,1857,947); INSERT INTO "Wine_Variety" VALUES(1855,1858,31); INSERT INTO "Wine_Variety" VALUES(1856,1859,50); INSERT INTO "Wine_Variety" VALUES(1857,1860,749); INSERT INTO "Wine_Variety" VALUES(1858,1861,22); INSERT INTO "Wine_Variety" VALUES(1859,1862,948); INSERT INTO "Wine_Variety" VALUES(1860,1863,651); INSERT INTO "Wine_Variety" VALUES(1861,1864,949); INSERT INTO "Wine_Variety" VALUES(1862,1865,950); INSERT INTO "Wine_Variety" VALUES(1863,1866,951); INSERT INTO "Wine_Variety" VALUES(1864,1867,99); INSERT INTO "Wine_Variety" VALUES(1865,1868,952); INSERT INTO "Wine_Variety" VALUES(1866,1869,771); INSERT INTO "Wine_Variety" VALUES(1867,1870,953); INSERT INTO "Wine_Variety" VALUES(1868,1871,954); INSERT INTO "Wine_Variety" VALUES(1869,1872,278); INSERT INTO "Wine_Variety" VALUES(1870,1873,953); INSERT INTO "Wine_Variety" VALUES(1871,1874,955); INSERT INTO "Wine_Variety" VALUES(1872,1875,956); INSERT INTO "Wine_Variety" VALUES(1873,1876,828); INSERT INTO "Wine_Variety" VALUES(1874,1877,66); INSERT INTO "Wine_Variety" VALUES(1875,1878,63); INSERT INTO "Wine_Variety" VALUES(1876,1879,731); INSERT INTO "Wine_Variety" VALUES(1877,1880,957); INSERT INTO "Wine_Variety" VALUES(1878,1881,958); INSERT INTO "Wine_Variety" VALUES(1879,1882,899); INSERT INTO "Wine_Variety" VALUES(1880,1883,246); INSERT INTO "Wine_Variety" VALUES(1881,1884,959); INSERT INTO "Wine_Variety" VALUES(1882,1885,256); INSERT INTO "Wine_Variety" VALUES(1883,1886,960); INSERT INTO "Wine_Variety" VALUES(1884,1887,559); INSERT INTO "Wine_Variety" VALUES(1885,1888,961); INSERT INTO "Wine_Variety" VALUES(1886,1889,962); INSERT INTO "Wine_Variety" VALUES(1887,1890,846); INSERT INTO "Wine_Variety" VALUES(1888,1891,963); INSERT INTO "Wine_Variety" VALUES(1889,1892,964); INSERT INTO "Wine_Variety" VALUES(1890,1893,595); INSERT INTO "Wine_Variety" VALUES(1891,1894,51); INSERT INTO "Wine_Variety" VALUES(1892,1895,965); INSERT INTO "Wine_Variety" VALUES(1893,1896,675); INSERT INTO "Wine_Variety" VALUES(1894,1897,119); INSERT INTO "Wine_Variety" VALUES(1895,1898,22); INSERT INTO "Wine_Variety" VALUES(1896,1899,123); INSERT INTO "Wine_Variety" VALUES(1897,1900,966); INSERT INTO "Wine_Variety" VALUES(1898,1901,967); INSERT INTO "Wine_Variety" VALUES(1899,1902,215); INSERT INTO "Wine_Variety" VALUES(1900,1903,968); INSERT INTO "Wine_Variety" VALUES(1901,1904,969); INSERT INTO "Wine_Variety" VALUES(1902,1905,606); INSERT INTO "Wine_Variety" VALUES(1903,1906,686); INSERT INTO "Wine_Variety" VALUES(1904,1907,970); INSERT INTO "Wine_Variety" VALUES(1905,1908,8); INSERT INTO "Wine_Variety" VALUES(1906,1909,971); INSERT INTO "Wine_Variety" VALUES(1907,1910,972); INSERT INTO "Wine_Variety" VALUES(1908,1911,730); INSERT INTO "Wine_Variety" VALUES(1909,1912,604); INSERT INTO "Wine_Variety" VALUES(1910,1913,483); INSERT INTO "Wine_Variety" VALUES(1911,1914,973); INSERT INTO "Wine_Variety" VALUES(1912,1915,974); INSERT INTO "Wine_Variety" VALUES(1913,1916,292); INSERT INTO "Wine_Variety" VALUES(1914,1917,975); INSERT INTO "Wine_Variety" VALUES(1915,1918,138); INSERT INTO "Wine_Variety" VALUES(1916,1919,976); INSERT INTO "Wine_Variety" VALUES(1917,1920,977); INSERT INTO "Wine_Variety" VALUES(1918,1921,771); INSERT INTO "Wine_Variety" VALUES(1919,1922,155); INSERT INTO "Wine_Variety" VALUES(1920,1923,978); INSERT INTO "Wine_Variety" VALUES(1921,1924,730); INSERT INTO "Wine_Variety" VALUES(1922,1925,771); INSERT INTO "Wine_Variety" VALUES(1923,1926,163); INSERT INTO "Wine_Variety" VALUES(1924,1927,18); INSERT INTO "Wine_Variety" VALUES(1925,1928,375); INSERT INTO "Wine_Variety" VALUES(1926,1929,723); INSERT INTO "Wine_Variety" VALUES(1927,1930,99); INSERT INTO "Wine_Variety" VALUES(1928,1931,278); INSERT INTO "Wine_Variety" VALUES(1929,1932,597); INSERT INTO "Wine_Variety" VALUES(1930,1933,338); INSERT INTO "Wine_Variety" VALUES(1931,1934,51); INSERT INTO "Wine_Variety" VALUES(1932,1935,163); INSERT INTO "Wine_Variety" VALUES(1933,1936,979); INSERT INTO "Wine_Variety" VALUES(1934,1937,896); INSERT INTO "Wine_Variety" VALUES(1935,1938,889); INSERT INTO "Wine_Variety" VALUES(1936,1939,657); INSERT INTO "Wine_Variety" VALUES(1937,1940,552); INSERT INTO "Wine_Variety" VALUES(1938,1941,520); INSERT INTO "Wine_Variety" VALUES(1939,1942,689); INSERT INTO "Wine_Variety" VALUES(1940,1943,980); INSERT INTO "Wine_Variety" VALUES(1941,1944,981); INSERT INTO "Wine_Variety" VALUES(1942,1946,664); INSERT INTO "Wine_Variety" VALUES(1943,1947,99); INSERT INTO "Wine_Variety" VALUES(1944,1948,982); INSERT INTO "Wine_Variety" VALUES(1945,1949,983); INSERT INTO "Wine_Variety" VALUES(1946,1950,252); INSERT INTO "Wine_Variety" VALUES(1947,1951,249); INSERT INTO "Wine_Variety" VALUES(1948,1952,984); INSERT INTO "Wine_Variety" VALUES(1949,1954,985); INSERT INTO "Wine_Variety" VALUES(1950,1955,979); INSERT INTO "Wine_Variety" VALUES(1951,1956,792); INSERT INTO "Wine_Variety" VALUES(1952,1957,137); INSERT INTO "Wine_Variety" VALUES(1953,1959,749); INSERT INTO "Wine_Variety" VALUES(1954,1960,908); INSERT INTO "Wine_Variety" VALUES(1955,1961,145); INSERT INTO "Wine_Variety" VALUES(1956,1962,855); INSERT INTO "Wine_Variety" VALUES(1957,1963,232); INSERT INTO "Wine_Variety" VALUES(1958,1964,986); INSERT INTO "Wine_Variety" VALUES(1959,1965,846); INSERT INTO "Wine_Variety" VALUES(1960,1966,624); INSERT INTO "Wine_Variety" VALUES(1961,1967,749); INSERT INTO "Wine_Variety" VALUES(1962,1968,679); INSERT INTO "Wine_Variety" VALUES(1963,1969,162); INSERT INTO "Wine_Variety" VALUES(1964,1970,616); INSERT INTO "Wine_Variety" VALUES(1965,1971,987); INSERT INTO "Wine_Variety" VALUES(1966,1974,258); INSERT INTO "Wine_Variety" VALUES(1967,1975,915); INSERT INTO "Wine_Variety" VALUES(1968,1976,809); INSERT INTO "Wine_Variety" VALUES(1969,1977,846); INSERT INTO "Wine_Variety" VALUES(1970,1978,713); INSERT INTO "Wine_Variety" VALUES(1971,1979,334); INSERT INTO "Wine_Variety" VALUES(1972,1980,63); INSERT INTO "Wine_Variety" VALUES(1973,1981,249); INSERT INTO "Wine_Variety" VALUES(1974,1982,857); INSERT INTO "Wine_Variety" VALUES(1975,1983,648); INSERT INTO "Wine_Variety" VALUES(1976,1984,988); INSERT INTO "Wine_Variety" VALUES(1977,1985,841); INSERT INTO "Wine_Variety" VALUES(1978,1986,846); INSERT INTO "Wine_Variety" VALUES(1979,1987,104); INSERT INTO "Wine_Variety" VALUES(1980,1988,462); INSERT INTO "Wine_Variety" VALUES(1981,1989,930); INSERT INTO "Wine_Variety" VALUES(1982,1990,989); INSERT INTO "Wine_Variety" VALUES(1983,1992,552); INSERT INTO "Wine_Variety" VALUES(1984,1993,777); INSERT INTO "Wine_Variety" VALUES(1985,1994,979); INSERT INTO "Wine_Variety" VALUES(1986,1995,939); INSERT INTO "Wine_Variety" VALUES(1987,1996,106); INSERT INTO "Wine_Variety" VALUES(1988,1997,334); INSERT INTO "Wine_Variety" VALUES(1989,1998,501); INSERT INTO "Wine_Variety" VALUES(1990,1999,904); INSERT INTO "Wine_Variety" VALUES(1991,2000,990); INSERT INTO "Wine_Variety" VALUES(1992,2001,991); INSERT INTO "Wine_Variety" VALUES(1993,2002,846); INSERT INTO "Wine_Variety" VALUES(1994,2003,992); INSERT INTO "Wine_Variety" VALUES(1995,2004,993); INSERT INTO "Wine_Variety" VALUES(1996,2005,806); INSERT INTO "Wine_Variety" VALUES(1997,2006,702); INSERT INTO "Wine_Variety" VALUES(1998,2007,994); INSERT INTO "Wine_Variety" VALUES(1999,2008,169); INSERT INTO "Wine_Variety" VALUES(2000,2009,987); INSERT INTO "Wine_Variety" VALUES(2001,2010,915); INSERT INTO "Wine_Variety" VALUES(2002,2011,280); INSERT INTO "Wine_Variety" VALUES(2003,2012,563); INSERT INTO "Wine_Variety" VALUES(2004,2014,864); INSERT INTO "Wine_Variety" VALUES(2005,2015,142); INSERT INTO "Wine_Variety" VALUES(2006,2016,600); INSERT INTO "Wine_Variety" VALUES(2007,2017,995); INSERT INTO "Wine_Variety" VALUES(2008,2018,917); INSERT INTO "Wine_Variety" VALUES(2009,2019,142); INSERT INTO "Wine_Variety" VALUES(2010,2020,272); INSERT INTO "Wine_Variety" VALUES(2011,2021,745); INSERT INTO "Wine_Variety" VALUES(2012,2022,674); INSERT INTO "Wine_Variety" VALUES(2013,2023,996); INSERT INTO "Wine_Variety" VALUES(2014,2024,997); INSERT INTO "Wine_Variety" VALUES(2015,2025,634); INSERT INTO "Wine_Variety" VALUES(2016,2026,846); INSERT INTO "Wine_Variety" VALUES(2017,2027,998); INSERT INTO "Wine_Variety" VALUES(2018,2028,999); INSERT INTO "Wine_Variety" VALUES(2019,2029,900); INSERT INTO "Wine_Variety" VALUES(2020,2030,634); INSERT INTO "Wine_Variety" VALUES(2021,2031,995); INSERT INTO "Wine_Variety" VALUES(2022,2032,35); INSERT INTO "Wine_Variety" VALUES(2023,2033,648); INSERT INTO "Wine_Variety" VALUES(2024,2034,64); INSERT INTO "Wine_Variety" VALUES(2025,2035,846); INSERT INTO "Wine_Variety" VALUES(2026,2037,641); INSERT INTO "Wine_Variety" VALUES(2027,2038,988); INSERT INTO "Wine_Variety" VALUES(2028,2039,1000); INSERT INTO "Wine_Variety" VALUES(2029,2040,777); INSERT INTO "Wine_Variety" VALUES(2030,2041,1001); INSERT INTO "Wine_Variety" VALUES(2031,2042,979); INSERT INTO "Wine_Variety" VALUES(2032,2043,928); INSERT INTO "Wine_Variety" VALUES(2033,2045,3); INSERT INTO "Wine_Variety" VALUES(2034,2046,1002); INSERT INTO "Wine_Variety" VALUES(2035,2047,372); INSERT INTO "Wine_Variety" VALUES(2036,2048,909); INSERT INTO "Wine_Variety" VALUES(2037,2050,562); INSERT INTO "Wine_Variety" VALUES(2038,2051,880); INSERT INTO "Wine_Variety" VALUES(2039,2053,827); INSERT INTO "Wine_Variety" VALUES(2040,2054,1003); INSERT INTO "Wine_Variety" VALUES(2041,2056,1004); INSERT INTO "Wine_Variety" VALUES(2042,2059,280); INSERT INTO "Wine_Variety" VALUES(2043,2060,972); INSERT INTO "Wine_Variety" VALUES(2044,2063,1005); INSERT INTO "Wine_Variety" VALUES(2045,2064,624); INSERT INTO "Wine_Variety" VALUES(2046,2065,1006); INSERT INTO "Wine_Variety" VALUES(2047,2066,1007); INSERT INTO "Wine_Variety" VALUES(2048,2067,743); INSERT INTO "Wine_Variety" VALUES(2049,2068,613); INSERT INTO "Wine_Variety" VALUES(2050,2069,917); INSERT INTO "Wine_Variety" VALUES(2051,2071,979); INSERT INTO "Wine_Variety" VALUES(2052,2072,790); INSERT INTO "Wine_Variety" VALUES(2053,2073,749); INSERT INTO "Wine_Variety" VALUES(2054,2074,689); INSERT INTO "Wine_Variety" VALUES(2055,2075,608); INSERT INTO "Wine_Variety" VALUES(2056,2076,988); INSERT INTO "Wine_Variety" VALUES(2057,2077,113); INSERT INTO "Wine_Variety" VALUES(2058,2078,428); INSERT INTO "Wine_Variety" VALUES(2059,2079,703); INSERT INTO "Wine_Variety" VALUES(2060,2080,1008); INSERT INTO "Wine_Variety" VALUES(2061,2081,846); INSERT INTO "Wine_Variety" VALUES(2062,2083,582); INSERT INTO "Wine_Variety" VALUES(2063,2085,770); INSERT INTO "Wine_Variety" VALUES(2064,2086,3); INSERT INTO "Wine_Variety" VALUES(2065,2087,779); INSERT INTO "Wine_Variety" VALUES(2066,2089,234); INSERT INTO "Wine_Variety" VALUES(2067,2090,756); INSERT INTO "Wine_Variety" VALUES(2068,2091,1009); INSERT INTO "Wine_Variety" VALUES(2069,2092,624); INSERT INTO "Wine_Variety" VALUES(2070,2093,983); INSERT INTO "Wine_Variety" VALUES(2071,2094,1002); INSERT INTO "Wine_Variety" VALUES(2072,2096,1010); INSERT INTO "Wine_Variety" VALUES(2073,2097,428); INSERT INTO "Wine_Variety" VALUES(2074,2098,882); INSERT INTO "Wine_Variety" VALUES(2075,2099,1011); INSERT INTO "Wine_Variety" VALUES(2076,2100,846); INSERT INTO "Wine_Variety" VALUES(2077,2101,23); INSERT INTO "Wine_Variety" VALUES(2078,2103,1012); INSERT INTO "Wine_Variety" VALUES(2079,2104,1013); INSERT INTO "Wine_Variety" VALUES(2080,2105,1011); INSERT INTO "Wine_Variety" VALUES(2081,2106,624); INSERT INTO "Wine_Variety" VALUES(2082,2107,1014); INSERT INTO "Wine_Variety" VALUES(2083,2108,806); INSERT INTO "Wine_Variety" VALUES(2084,2110,1015); INSERT INTO "Wine_Variety" VALUES(2085,2112,874); INSERT INTO "Wine_Variety" VALUES(2086,2113,311); INSERT INTO "Wine_Variety" VALUES(2087,2116,824); INSERT INTO "Wine_Variety" VALUES(2088,2117,979); INSERT INTO "Wine_Variety" VALUES(2089,2118,980); INSERT INTO "Wine_Variety" VALUES(2090,2119,397); INSERT INTO "Wine_Variety" VALUES(2091,2121,1016); INSERT INTO "Wine_Variety" VALUES(2092,2123,893); INSERT INTO "Wine_Variety" VALUES(2093,2124,534); INSERT INTO "Wine_Variety" VALUES(2094,2125,156); INSERT INTO "Wine_Variety" VALUES(2095,2126,156); INSERT INTO "Wine_Variety" VALUES(2096,2127,723); INSERT INTO "Wine_Variety" VALUES(2097,2128,988); INSERT INTO "Wine_Variety" VALUES(2098,2129,857); INSERT INTO "Wine_Variety" VALUES(2099,2130,629); INSERT INTO "Wine_Variety" VALUES(2100,2131,928); INSERT INTO "Wine_Variety" VALUES(2101,2132,930); INSERT INTO "Wine_Variety" VALUES(2102,2133,616); INSERT INTO "Wine_Variety" VALUES(2103,2134,1017); INSERT INTO "Wine_Variety" VALUES(2104,2135,1018); INSERT INTO "Wine_Variety" VALUES(2105,2136,586); INSERT INTO "Wine_Variety" VALUES(2106,2137,669); INSERT INTO "Wine_Variety" VALUES(2107,2139,499); INSERT INTO "Wine_Variety" VALUES(2108,2140,884); INSERT INTO "Wine_Variety" VALUES(2109,2141,870); INSERT INTO "Wine_Variety" VALUES(2110,2142,280); INSERT INTO "Wine_Variety" VALUES(2111,2143,968); INSERT INTO "Wine_Variety" VALUES(2112,2144,988); INSERT INTO "Wine_Variety" VALUES(2113,2145,213); INSERT INTO "Wine_Variety" VALUES(2114,2146,1019); INSERT INTO "Wine_Variety" VALUES(2115,2147,201); INSERT INTO "Wine_Variety" VALUES(2116,2148,828); INSERT INTO "Wine_Variety" VALUES(2117,2149,455); INSERT INTO "Wine_Variety" VALUES(2118,2152,801); INSERT INTO "Wine_Variety" VALUES(2119,2153,874); INSERT INTO "Wine_Variety" VALUES(2120,2154,428); INSERT INTO "Wine_Variety" VALUES(2121,2155,562); INSERT INTO "Wine_Variety" VALUES(2122,2157,211); INSERT INTO "Wine_Variety" VALUES(2123,2158,1020); INSERT INTO "Wine_Variety" VALUES(2124,2159,1021); INSERT INTO "Wine_Variety" VALUES(2125,2160,702); INSERT INTO "Wine_Variety" VALUES(2126,2164,979); INSERT INTO "Wine_Variety" VALUES(2127,2165,211); INSERT INTO "Wine_Variety" VALUES(2128,2166,1022); INSERT INTO "Wine_Variety" VALUES(2129,2167,163); INSERT INTO "Wine_Variety" VALUES(2130,2168,748); INSERT INTO "Wine_Variety" VALUES(2131,2169,835); INSERT INTO "Wine_Variety" VALUES(2132,2171,162); INSERT INTO "Wine_Variety" VALUES(2133,2172,396); INSERT INTO "Wine_Variety" VALUES(2134,2173,436); INSERT INTO "Wine_Variety" VALUES(2135,2175,712); INSERT INTO "Wine_Variety" VALUES(2136,2176,738); INSERT INTO "Wine_Variety" VALUES(2137,2177,672); INSERT INTO "Wine_Variety" VALUES(2138,2179,735); INSERT INTO "Wine_Variety" VALUES(2139,2180,988); INSERT INTO "Wine_Variety" VALUES(2140,2181,1023); INSERT INTO "Wine_Variety" VALUES(2141,2182,234); INSERT INTO "Wine_Variety" VALUES(2142,2183,791); INSERT INTO "Wine_Variety" VALUES(2143,2184,428); INSERT INTO "Wine_Variety" VALUES(2144,2185,1024); INSERT INTO "Wine_Variety" VALUES(2145,2186,518); INSERT INTO "Wine_Variety" VALUES(2146,2191,98); INSERT INTO "Wine_Variety" VALUES(2147,2193,428); INSERT INTO "Wine_Variety" VALUES(2148,2194,851); INSERT INTO "Wine_Variety" VALUES(2149,2195,624); INSERT INTO "Wine_Variety" VALUES(2150,2196,106); INSERT INTO "Wine_Variety" VALUES(2151,2197,79); INSERT INTO "Wine_Variety" VALUES(2152,2198,915); INSERT INTO "Wine_Variety" VALUES(2153,2199,1025); INSERT INTO "Wine_Variety" VALUES(2154,2200,186); INSERT INTO "Wine_Variety" VALUES(2155,2201,269); INSERT INTO "Wine_Variety" VALUES(2156,2202,1026); INSERT INTO "Wine_Variety" VALUES(2157,2203,36); INSERT INTO "Wine_Variety" VALUES(2158,2204,373); INSERT INTO "Wine_Variety" VALUES(2159,2205,83); INSERT INTO "Wine_Variety" VALUES(2160,2206,331); INSERT INTO "Wine_Variety" VALUES(2161,2207,456); INSERT INTO "Wine_Variety" VALUES(2162,2208,1027); INSERT INTO "Wine_Variety" VALUES(2163,2209,1028); INSERT INTO "Wine_Variety" VALUES(2164,2210,1029); INSERT INTO "Wine_Variety" VALUES(2165,2211,511); INSERT INTO "Wine_Variety" VALUES(2166,2212,1030); INSERT INTO "Wine_Variety" VALUES(2167,2213,1031); INSERT INTO "Wine_Variety" VALUES(2168,2214,459); INSERT INTO "Wine_Variety" VALUES(2169,2215,331); INSERT INTO "Wine_Variety" VALUES(2170,2216,239); INSERT INTO "Wine_Variety" VALUES(2171,2217,948); INSERT INTO "Wine_Variety" VALUES(2172,2218,595); INSERT INTO "Wine_Variety" VALUES(2173,2219,201); INSERT INTO "Wine_Variety" VALUES(2174,2220,495); INSERT INTO "Wine_Variety" VALUES(2175,2221,1032); INSERT INTO "Wine_Variety" VALUES(2176,2222,36); INSERT INTO "Wine_Variety" VALUES(2177,2223,36); INSERT INTO "Wine_Variety" VALUES(2178,2224,1033); INSERT INTO "Wine_Variety" VALUES(2179,2225,177); INSERT INTO "Wine_Variety" VALUES(2180,2226,459); INSERT INTO "Wine_Variety" VALUES(2181,2227,1034); INSERT INTO "Wine_Variety" VALUES(2182,2228,600); INSERT INTO "Wine_Variety" VALUES(2183,2229,269); INSERT INTO "Wine_Variety" VALUES(2184,2230,920); INSERT INTO "Wine_Variety" VALUES(2185,2231,531); INSERT INTO "Wine_Variety" VALUES(2186,2232,37); INSERT INTO "Wine_Variety" VALUES(2187,2233,1033); INSERT INTO "Wine_Variety" VALUES(2188,2234,1033); INSERT INTO "Wine_Variety" VALUES(2189,2235,370); INSERT INTO "Wine_Variety" VALUES(2190,2236,36); INSERT INTO "Wine_Variety" VALUES(2191,2237,1026); INSERT INTO "Wine_Variety" VALUES(2192,2238,162); INSERT INTO "Wine_Variety" VALUES(2193,2239,1035); INSERT INTO "Wine_Variety" VALUES(2194,2240,1030); INSERT INTO "Wine_Variety" VALUES(2195,2241,1036); INSERT INTO "Wine_Variety" VALUES(2196,2242,1037); INSERT INTO "Wine_Variety" VALUES(2197,2243,464); INSERT INTO "Wine_Variety" VALUES(2198,2244,479); INSERT INTO "Wine_Variety" VALUES(2199,2245,1038); INSERT INTO "Wine_Variety" VALUES(2200,2246,36); INSERT INTO "Wine_Variety" VALUES(2201,2247,595); INSERT INTO "Wine_Variety" VALUES(2202,2248,351); INSERT INTO "Wine_Variety" VALUES(2203,2249,252); INSERT INTO "Wine_Variety" VALUES(2204,2250,31); INSERT INTO "Wine_Variety" VALUES(2205,2251,1039); INSERT INTO "Wine_Variety" VALUES(2206,2252,489); INSERT INTO "Wine_Variety" VALUES(2207,2253,1040); INSERT INTO "Wine_Variety" VALUES(2208,2254,1041); INSERT INTO "Wine_Variety" VALUES(2209,2255,459); INSERT INTO "Wine_Variety" VALUES(2210,2256,297); INSERT INTO "Wine_Variety" VALUES(2211,2257,1042); INSERT INTO "Wine_Variety" VALUES(2212,2258,650); INSERT INTO "Wine_Variety" VALUES(2213,2259,1041); INSERT INTO "Wine_Variety" VALUES(2214,2260,369); INSERT INTO "Wine_Variety" VALUES(2215,2261,414); INSERT INTO "Wine_Variety" VALUES(2216,2262,72); INSERT INTO "Wine_Variety" VALUES(2217,2263,437); INSERT INTO "Wine_Variety" VALUES(2218,2264,354); INSERT INTO "Wine_Variety" VALUES(2219,2265,1043); INSERT INTO "Wine_Variety" VALUES(2220,2266,201); INSERT INTO "Wine_Variety" VALUES(2221,2267,292); INSERT INTO "Wine_Variety" VALUES(2222,2268,1044); INSERT INTO "Wine_Variety" VALUES(2223,2269,1032); INSERT INTO "Wine_Variety" VALUES(2224,2270,936); INSERT INTO "Wine_Variety" VALUES(2225,2271,1045); INSERT INTO "Wine_Variety" VALUES(2226,2272,1046); INSERT INTO "Wine_Variety" VALUES(2227,2273,79); INSERT INTO "Wine_Variety" VALUES(2228,2274,1041); INSERT INTO "Wine_Variety" VALUES(2229,2275,1047); INSERT INTO "Wine_Variety" VALUES(2230,2276,1042); INSERT INTO "Wine_Variety" VALUES(2231,2277,70); INSERT INTO "Wine_Variety" VALUES(2232,2278,1048); INSERT INTO "Wine_Variety" VALUES(2233,2279,397); INSERT INTO "Wine_Variety" VALUES(2234,2280,825); INSERT INTO "Wine_Variety" VALUES(2235,2281,527); INSERT INTO "Wine_Variety" VALUES(2236,2282,244); INSERT INTO "Wine_Variety" VALUES(2237,2283,615); INSERT INTO "Wine_Variety" VALUES(2238,2284,1049); INSERT INTO "Wine_Variety" VALUES(2239,2285,534); INSERT INTO "Wine_Variety" VALUES(2240,2286,768); INSERT INTO "Wine_Variety" VALUES(2241,2287,552); INSERT INTO "Wine_Variety" VALUES(2242,2288,252); INSERT INTO "Wine_Variety" VALUES(2243,2289,64); INSERT INTO "Wine_Variety" VALUES(2244,2290,17); INSERT INTO "Wine_Variety" VALUES(2245,2291,568); INSERT INTO "Wine_Variety" VALUES(2246,2292,417); INSERT INTO "Wine_Variety" VALUES(2247,2293,1050); INSERT INTO "Wine_Variety" VALUES(2248,2294,1051); INSERT INTO "Wine_Variety" VALUES(2249,2295,1052); INSERT INTO "Wine_Variety" VALUES(2250,2296,522); INSERT INTO "Wine_Variety" VALUES(2251,2297,1053); INSERT INTO "Wine_Variety" VALUES(2252,2298,458); INSERT INTO "Wine_Variety" VALUES(2253,2299,1054); INSERT INTO "Wine_Variety" VALUES(2254,2300,1055); INSERT INTO "Wine_Variety" VALUES(2255,2301,268); INSERT INTO "Wine_Variety" VALUES(2256,2302,1056); INSERT INTO "Wine_Variety" VALUES(2257,2303,948); INSERT INTO "Wine_Variety" VALUES(2258,2304,1057); INSERT INTO "Wine_Variety" VALUES(2259,2305,91); INSERT INTO "Wine_Variety" VALUES(2260,2306,1058); INSERT INTO "Wine_Variety" VALUES(2261,2307,196); INSERT INTO "Wine_Variety" VALUES(2262,2308,1059); INSERT INTO "Wine_Variety" VALUES(2263,2309,455); INSERT INTO "Wine_Variety" VALUES(2264,2310,440); INSERT INTO "Wine_Variety" VALUES(2265,2311,1042); INSERT INTO "Wine_Variety" VALUES(2266,2312,170); INSERT INTO "Wine_Variety" VALUES(2267,2313,1060); INSERT INTO "Wine_Variety" VALUES(2268,2314,1061); INSERT INTO "Wine_Variety" VALUES(2269,2315,401); INSERT INTO "Wine_Variety" VALUES(2270,2316,36); INSERT INTO "Wine_Variety" VALUES(2271,2317,1062); INSERT INTO "Wine_Variety" VALUES(2272,2318,91); INSERT INTO "Wine_Variety" VALUES(2273,2319,1063); INSERT INTO "Wine_Variety" VALUES(2274,2320,1064); INSERT INTO "Wine_Variety" VALUES(2275,2321,655); INSERT INTO "Wine_Variety" VALUES(2276,2322,1065); INSERT INTO "Wine_Variety" VALUES(2277,2323,1066); INSERT INTO "Wine_Variety" VALUES(2278,2324,1067); INSERT INTO "Wine_Variety" VALUES(2279,2325,884); INSERT INTO "Wine_Variety" VALUES(2280,2326,1068); INSERT INTO "Wine_Variety" VALUES(2281,2327,688); INSERT INTO "Wine_Variety" VALUES(2282,2328,1069); INSERT INTO "Wine_Variety" VALUES(2283,2329,361); INSERT INTO "Wine_Variety" VALUES(2284,2330,576); INSERT INTO "Wine_Variety" VALUES(2285,2331,3); INSERT INTO "Wine_Variety" VALUES(2286,2332,1070); INSERT INTO "Wine_Variety" VALUES(2287,2333,1071); INSERT INTO "Wine_Variety" VALUES(2288,2334,127); INSERT INTO "Wine_Variety" VALUES(2289,2335,669); INSERT INTO "Wine_Variety" VALUES(2290,2336,833); INSERT INTO "Wine_Variety" VALUES(2291,2337,323); INSERT INTO "Wine_Variety" VALUES(2292,2338,708); INSERT INTO "Wine_Variety" VALUES(2293,2339,84); INSERT INTO "Wine_Variety" VALUES(2294,2340,1072); INSERT INTO "Wine_Variety" VALUES(2295,2341,524); INSERT INTO "Wine_Variety" VALUES(2296,2342,8); INSERT INTO "Wine_Variety" VALUES(2297,2343,244); INSERT INTO "Wine_Variety" VALUES(2298,2344,421); INSERT INTO "Wine_Variety" VALUES(2299,2345,1073); INSERT INTO "Wine_Variety" VALUES(2300,2346,36); INSERT INTO "Wine_Variety" VALUES(2301,2347,1074); INSERT INTO "Wine_Variety" VALUES(2302,2348,1075); INSERT INTO "Wine_Variety" VALUES(2303,2349,696); INSERT INTO "Wine_Variety" VALUES(2304,2350,92); INSERT INTO "Wine_Variety" VALUES(2305,2351,1076); INSERT INTO "Wine_Variety" VALUES(2306,2352,57); INSERT INTO "Wine_Variety" VALUES(2307,2353,91); INSERT INTO "Wine_Variety" VALUES(2308,2354,1077); INSERT INTO "Wine_Variety" VALUES(2309,2355,239); INSERT INTO "Wine_Variety" VALUES(2310,2356,599); INSERT INTO "Wine_Variety" VALUES(2311,2357,250); INSERT INTO "Wine_Variety" VALUES(2312,2358,1078); INSERT INTO "Wine_Variety" VALUES(2313,2359,437); INSERT INTO "Wine_Variety" VALUES(2314,2360,582); INSERT INTO "Wine_Variety" VALUES(2315,2361,299); INSERT INTO "Wine_Variety" VALUES(2316,2362,227); INSERT INTO "Wine_Variety" VALUES(2317,2363,258); INSERT INTO "Wine_Variety" VALUES(2318,2364,281); INSERT INTO "Wine_Variety" VALUES(2319,2365,1079); INSERT INTO "Wine_Variety" VALUES(2320,2366,248); INSERT INTO "Wine_Variety" VALUES(2321,2367,47); INSERT INTO "Wine_Variety" VALUES(2322,2368,496); INSERT INTO "Wine_Variety" VALUES(2323,2369,1080); INSERT INTO "Wine_Variety" VALUES(2324,2370,1081); INSERT INTO "Wine_Variety" VALUES(2325,2371,430); INSERT INTO "Wine_Variety" VALUES(2326,2372,25); INSERT INTO "Wine_Variety" VALUES(2327,2373,732); INSERT INTO "Wine_Variety" VALUES(2328,2374,1082); INSERT INTO "Wine_Variety" VALUES(2329,2375,246); INSERT INTO "Wine_Variety" VALUES(2330,2376,1041); INSERT INTO "Wine_Variety" VALUES(2331,2377,122); INSERT INTO "Wine_Variety" VALUES(2332,2378,335); INSERT INTO "Wine_Variety" VALUES(2333,2379,1083); INSERT INTO "Wine_Variety" VALUES(2334,2380,966); INSERT INTO "Wine_Variety" VALUES(2335,2381,10); INSERT INTO "Wine_Variety" VALUES(2336,2382,62); INSERT INTO "Wine_Variety" VALUES(2337,2383,1084); INSERT INTO "Wine_Variety" VALUES(2338,2384,502); INSERT INTO "Wine_Variety" VALUES(2339,2385,35); INSERT INTO "Wine_Variety" VALUES(2340,2386,552); INSERT INTO "Wine_Variety" VALUES(2341,2387,23); INSERT INTO "Wine_Variety" VALUES(2342,2388,252); INSERT INTO "Wine_Variety" VALUES(2343,2389,1085); INSERT INTO "Wine_Variety" VALUES(2344,2390,1078); INSERT INTO "Wine_Variety" VALUES(2345,2391,1086); INSERT INTO "Wine_Variety" VALUES(2346,2392,461); INSERT INTO "Wine_Variety" VALUES(2347,2393,606); INSERT INTO "Wine_Variety" VALUES(2348,2394,276); INSERT INTO "Wine_Variety" VALUES(2349,2395,1040); INSERT INTO "Wine_Variety" VALUES(2350,2396,75); INSERT INTO "Wine_Variety" VALUES(2351,2397,783); INSERT INTO "Wine_Variety" VALUES(2352,2398,297); INSERT INTO "Wine_Variety" VALUES(2353,2399,999); INSERT INTO "Wine_Variety" VALUES(2354,2400,322); INSERT INTO "Wine_Variety" VALUES(2355,2401,1087); INSERT INTO "Wine_Variety" VALUES(2356,2402,47); INSERT INTO "Wine_Variety" VALUES(2357,2403,453); INSERT INTO "Wine_Variety" VALUES(2358,2404,276); INSERT INTO "Wine_Variety" VALUES(2359,2405,506); INSERT INTO "Wine_Variety" VALUES(2360,2406,103); INSERT INTO "Wine_Variety" VALUES(2361,2407,233); INSERT INTO "Wine_Variety" VALUES(2362,2408,10); INSERT INTO "Wine_Variety" VALUES(2363,2409,1088); INSERT INTO "Wine_Variety" VALUES(2364,2410,803); INSERT INTO "Wine_Variety" VALUES(2365,2411,1041); INSERT INTO "Wine_Variety" VALUES(2366,2412,758); INSERT INTO "Wine_Variety" VALUES(2367,2413,732); INSERT INTO "Wine_Variety" VALUES(2368,2414,591); INSERT INTO "Wine_Variety" VALUES(2369,2415,1089); INSERT INTO "Wine_Variety" VALUES(2370,2416,473); INSERT INTO "Wine_Variety" VALUES(2371,2417,582); INSERT INTO "Wine_Variety" VALUES(2372,2418,1090); INSERT INTO "Wine_Variety" VALUES(2373,2419,1091); INSERT INTO "Wine_Variety" VALUES(2374,2420,1092); INSERT INTO "Wine_Variety" VALUES(2375,2421,31); INSERT INTO "Wine_Variety" VALUES(2376,2422,1093); INSERT INTO "Wine_Variety" VALUES(2377,2423,1094); INSERT INTO "Wine_Variety" VALUES(2378,2424,576); INSERT INTO "Wine_Variety" VALUES(2379,2425,292); INSERT INTO "Wine_Variety" VALUES(2380,2426,426); INSERT INTO "Wine_Variety" VALUES(2381,2427,534); INSERT INTO "Wine_Variety" VALUES(2382,2428,236); INSERT INTO "Wine_Variety" VALUES(2383,2429,1095); INSERT INTO "Wine_Variety" VALUES(2384,2430,155); INSERT INTO "Wine_Variety" VALUES(2385,2431,490); INSERT INTO "Wine_Variety" VALUES(2386,2432,1096); INSERT INTO "Wine_Variety" VALUES(2387,2433,17); INSERT INTO "Wine_Variety" VALUES(2388,2434,820); INSERT INTO "Wine_Variety" VALUES(2389,2435,1097); INSERT INTO "Wine_Variety" VALUES(2390,2436,601); INSERT INTO "Wine_Variety" VALUES(2391,2437,1098); INSERT INTO "Wine_Variety" VALUES(2392,2438,489); INSERT INTO "Wine_Variety" VALUES(2393,2439,1012); INSERT INTO "Wine_Variety" VALUES(2394,2440,56); INSERT INTO "Wine_Variety" VALUES(2395,2441,348); INSERT INTO "Wine_Variety" VALUES(2396,2442,609); INSERT INTO "Wine_Variety" VALUES(2397,2443,281); INSERT INTO "Wine_Variety" VALUES(2398,2444,1030); INSERT INTO "Wine_Variety" VALUES(2399,2445,865); INSERT INTO "Wine_Variety" VALUES(2400,2446,1099); INSERT INTO "Wine_Variety" VALUES(2401,2447,1100); INSERT INTO "Wine_Variety" VALUES(2402,2448,76); INSERT INTO "Wine_Variety" VALUES(2403,2449,145); INSERT INTO "Wine_Variety" VALUES(2404,2450,3); INSERT INTO "Wine_Variety" VALUES(2405,2451,280); INSERT INTO "Wine_Variety" VALUES(2406,2452,1101); INSERT INTO "Wine_Variety" VALUES(2407,2453,606); INSERT INTO "Wine_Variety" VALUES(2408,2454,678); INSERT INTO "Wine_Variety" VALUES(2409,2455,1015); INSERT INTO "Wine_Variety" VALUES(2410,2456,267); INSERT INTO "Wine_Variety" VALUES(2411,2457,534); INSERT INTO "Wine_Variety" VALUES(2412,2458,247); INSERT INTO "Wine_Variety" VALUES(2413,2459,1102); INSERT INTO "Wine_Variety" VALUES(2414,2460,502); INSERT INTO "Wine_Variety" VALUES(2415,2461,425); INSERT INTO "Wine_Variety" VALUES(2416,2462,3); INSERT INTO "Wine_Variety" VALUES(2417,2463,1103); INSERT INTO "Wine_Variety" VALUES(2418,2464,644); INSERT INTO "Wine_Variety" VALUES(2419,2465,455); INSERT INTO "Wine_Variety" VALUES(2420,2466,1104); INSERT INTO "Wine_Variety" VALUES(2421,2467,486); INSERT INTO "Wine_Variety" VALUES(2422,2468,695); INSERT INTO "Wine_Variety" VALUES(2423,2469,619); INSERT INTO "Wine_Variety" VALUES(2424,2470,1105); INSERT INTO "Wine_Variety" VALUES(2425,2471,1106); INSERT INTO "Wine_Variety" VALUES(2426,2472,442); INSERT INTO "Wine_Variety" VALUES(2427,2473,1107); INSERT INTO "Wine_Variety" VALUES(2428,2474,17); INSERT INTO "Wine_Variety" VALUES(2429,2475,1108); INSERT INTO "Wine_Variety" VALUES(2430,2476,448); INSERT INTO "Wine_Variety" VALUES(2431,2477,36); INSERT INTO "Wine_Variety" VALUES(2432,2478,984); INSERT INTO "Wine_Variety" VALUES(2433,2479,1109); INSERT INTO "Wine_Variety" VALUES(2434,2480,236); INSERT INTO "Wine_Variety" VALUES(2435,2481,1110); INSERT INTO "Wine_Variety" VALUES(2436,2482,513); INSERT INTO "Wine_Variety" VALUES(2437,2483,1111); INSERT INTO "Wine_Variety" VALUES(2438,2484,1112); INSERT INTO "Wine_Variety" VALUES(2439,2485,1113); INSERT INTO "Wine_Variety" VALUES(2440,2486,361); INSERT INTO "Wine_Variety" VALUES(2441,2487,1114); INSERT INTO "Wine_Variety" VALUES(2442,2488,213); INSERT INTO "Wine_Variety" VALUES(2443,2489,1077); INSERT INTO "Wine_Variety" VALUES(2444,2490,825); INSERT INTO "Wine_Variety" VALUES(2445,2491,259); INSERT INTO "Wine_Variety" VALUES(2446,2492,1115); INSERT INTO "Wine_Variety" VALUES(2447,2493,1091); INSERT INTO "Wine_Variety" VALUES(2448,2494,1116); INSERT INTO "Wine_Variety" VALUES(2449,2495,234); INSERT INTO "Wine_Variety" VALUES(2450,2496,561); INSERT INTO "Wine_Variety" VALUES(2451,2497,984); INSERT INTO "Wine_Variety" VALUES(2452,2498,1117); INSERT INTO "Wine_Variety" VALUES(2453,2499,155); INSERT INTO "Wine_Variety" VALUES(2454,2500,1118); INSERT INTO "Wine_Variety" VALUES(2455,2501,417); INSERT INTO "Wine_Variety" VALUES(2456,2502,843); INSERT INTO "Wine_Variety" VALUES(2457,2503,1009); INSERT INTO "Wine_Variety" VALUES(2458,2504,49); INSERT INTO "Wine_Variety" VALUES(2459,2505,280); INSERT INTO "Wine_Variety" VALUES(2460,2506,236); INSERT INTO "Wine_Variety" VALUES(2461,2507,1119); INSERT INTO "Wine_Variety" VALUES(2462,2508,246); INSERT INTO "Wine_Variety" VALUES(2463,2509,1120); INSERT INTO "Wine_Variety" VALUES(2464,2510,1113); INSERT INTO "Wine_Variety" VALUES(2465,2511,1121); INSERT INTO "Wine_Variety" VALUES(2466,2512,36); INSERT INTO "Wine_Variety" VALUES(2467,2513,1122); INSERT INTO "Wine_Variety" VALUES(2468,2514,1123); INSERT INTO "Wine_Variety" VALUES(2469,2515,682); INSERT INTO "Wine_Variety" VALUES(2470,2516,3); INSERT INTO "Wine_Variety" VALUES(2471,2517,449); INSERT INTO "Wine_Variety" VALUES(2472,2518,623); INSERT INTO "Wine_Variety" VALUES(2473,2519,80); INSERT INTO "Wine_Variety" VALUES(2474,2520,1061); INSERT INTO "Wine_Variety" VALUES(2475,2521,1124); INSERT INTO "Wine_Variety" VALUES(2476,2522,1125); INSERT INTO "Wine_Variety" VALUES(2477,2523,268); INSERT INTO "Wine_Variety" VALUES(2478,2524,234); INSERT INTO "Wine_Variety" VALUES(2479,2525,1126); INSERT INTO "Wine_Variety" VALUES(2480,2526,1127); INSERT INTO "Wine_Variety" VALUES(2481,2527,513); INSERT INTO "Wine_Variety" VALUES(2482,2528,217); INSERT INTO "Wine_Variety" VALUES(2483,2529,41); INSERT INTO "Wine_Variety" VALUES(2484,2530,63); INSERT INTO "Wine_Variety" VALUES(2485,2531,252); INSERT INTO "Wine_Variety" VALUES(2486,2532,128); INSERT INTO "Wine_Variety" VALUES(2487,2533,36); INSERT INTO "Wine_Variety" VALUES(2488,2534,1128); INSERT INTO "Wine_Variety" VALUES(2489,2535,426); INSERT INTO "Wine_Variety" VALUES(2490,2536,1075); INSERT INTO "Wine_Variety" VALUES(2491,2537,1129); INSERT INTO "Wine_Variety" VALUES(2492,2538,517); INSERT INTO "Wine_Variety" VALUES(2493,2539,36); INSERT INTO "Wine_Variety" VALUES(2494,2540,1130); INSERT INTO "Wine_Variety" VALUES(2495,2541,1131); INSERT INTO "Wine_Variety" VALUES(2496,2542,615); INSERT INTO "Wine_Variety" VALUES(2497,2543,898); INSERT INTO "Wine_Variety" VALUES(2498,2544,245); INSERT INTO "Wine_Variety" VALUES(2499,2545,615); INSERT INTO "Wine_Variety" VALUES(2500,2546,227); INSERT INTO "Wine_Variety" VALUES(2501,2547,531); INSERT INTO "Wine_Variety" VALUES(2502,2548,344); INSERT INTO "Wine_Variety" VALUES(2503,2549,228); INSERT INTO "Wine_Variety" VALUES(2504,2550,442); INSERT INTO "Wine_Variety" VALUES(2505,2551,803); INSERT INTO "Wine_Variety" VALUES(2506,2552,1132); INSERT INTO "Wine_Variety" VALUES(2507,2553,213); INSERT INTO "Wine_Variety" VALUES(2508,2554,246); INSERT INTO "Wine_Variety" VALUES(2509,2555,280); INSERT INTO "Wine_Variety" VALUES(2510,2556,568); INSERT INTO "Wine_Variety" VALUES(2511,2557,522); INSERT INTO "Wine_Variety" VALUES(2512,2558,335); INSERT INTO "Wine_Variety" VALUES(2513,2559,1133); INSERT INTO "Wine_Variety" VALUES(2514,2560,57); INSERT INTO "Wine_Variety" VALUES(2515,2561,576); INSERT INTO "Wine_Variety" VALUES(2516,2562,1134); INSERT INTO "Wine_Variety" VALUES(2517,2563,1135); INSERT INTO "Wine_Variety" VALUES(2518,2564,520); INSERT INTO "Wine_Variety" VALUES(2519,2565,359); INSERT INTO "Wine_Variety" VALUES(2520,2566,358); INSERT INTO "Wine_Variety" VALUES(2521,2567,894); INSERT INTO "Wine_Variety" VALUES(2522,2568,1052); INSERT INTO "Wine_Variety" VALUES(2523,2569,351); INSERT INTO "Wine_Variety" VALUES(2524,2570,591); INSERT INTO "Wine_Variety" VALUES(2525,2571,554); INSERT INTO "Wine_Variety" VALUES(2526,2572,1136); INSERT INTO "Wine_Variety" VALUES(2527,2573,99); INSERT INTO "Wine_Variety" VALUES(2528,2574,337); INSERT INTO "Wine_Variety" VALUES(2529,2575,40); INSERT INTO "Wine_Variety" VALUES(2530,2576,487); INSERT INTO "Wine_Variety" VALUES(2531,2577,1137); INSERT INTO "Wine_Variety" VALUES(2532,2578,191); INSERT INTO "Wine_Variety" VALUES(2533,2579,1138); INSERT INTO "Wine_Variety" VALUES(2534,2580,1139); INSERT INTO "Wine_Variety" VALUES(2535,2581,36); INSERT INTO "Wine_Variety" VALUES(2536,2582,522); INSERT INTO "Wine_Variety" VALUES(2537,2583,437); INSERT INTO "Wine_Variety" VALUES(2538,2584,1140); INSERT INTO "Wine_Variety" VALUES(2539,2585,1125); INSERT INTO "Wine_Variety" VALUES(2540,2586,1141); INSERT INTO "Wine_Variety" VALUES(2541,2587,1079); INSERT INTO "Wine_Variety" VALUES(2542,2588,246); INSERT INTO "Wine_Variety" VALUES(2543,2589,1142); INSERT INTO "Wine_Variety" VALUES(2544,2590,119); INSERT INTO "Wine_Variety" VALUES(2545,2591,1143); INSERT INTO "Wine_Variety" VALUES(2546,2592,106); INSERT INTO "Wine_Variety" VALUES(2547,2593,1076); INSERT INTO "Wine_Variety" VALUES(2548,2594,46); INSERT INTO "Wine_Variety" VALUES(2549,2595,228); INSERT INTO "Wine_Variety" VALUES(2550,2596,31); INSERT INTO "Wine_Variety" VALUES(2551,2597,179); INSERT INTO "Wine_Variety" VALUES(2552,2598,795); INSERT INTO "Wine_Variety" VALUES(2553,2599,1076); INSERT INTO "Wine_Variety" VALUES(2554,2600,1144); INSERT INTO "Wine_Variety" VALUES(2555,2601,1145); INSERT INTO "Wine_Variety" VALUES(2556,2602,1146); INSERT INTO "Wine_Variety" VALUES(2557,2603,1052); INSERT INTO "Wine_Variety" VALUES(2558,2604,60); INSERT INTO "Wine_Variety" VALUES(2559,2605,1147); INSERT INTO "Wine_Variety" VALUES(2560,2606,427); INSERT INTO "Wine_Variety" VALUES(2561,2607,1073); INSERT INTO "Wine_Variety" VALUES(2562,2608,455); INSERT INTO "Wine_Variety" VALUES(2563,2609,1148); INSERT INTO "Wine_Variety" VALUES(2564,2610,678); INSERT INTO "Wine_Variety" VALUES(2565,2611,382); INSERT INTO "Wine_Variety" VALUES(2566,2612,252); INSERT INTO "Wine_Variety" VALUES(2567,2613,758); INSERT INTO "Wine_Variety" VALUES(2568,2614,1149); INSERT INTO "Wine_Variety" VALUES(2569,2615,492); INSERT INTO "Wine_Variety" VALUES(2570,2616,642); INSERT INTO "Wine_Variety" VALUES(2571,2617,1042); INSERT INTO "Wine_Variety" VALUES(2572,2618,268); INSERT INTO "Wine_Variety" VALUES(2573,2619,1150); INSERT INTO "Wine_Variety" VALUES(2574,2620,1151); INSERT INTO "Wine_Variety" VALUES(2575,2621,333); INSERT INTO "Wine_Variety" VALUES(2576,2622,1152); INSERT INTO "Wine_Variety" VALUES(2577,2623,17); INSERT INTO "Wine_Variety" VALUES(2578,2624,23); INSERT INTO "Wine_Variety" VALUES(2579,2625,145); INSERT INTO "Wine_Variety" VALUES(2580,2626,54); INSERT INTO "Wine_Variety" VALUES(2581,2627,155); INSERT INTO "Wine_Variety" VALUES(2582,2628,560); INSERT INTO "Wine_Variety" VALUES(2583,2629,1153); INSERT INTO "Wine_Variety" VALUES(2584,2630,1033); INSERT INTO "Wine_Variety" VALUES(2585,2631,449); INSERT INTO "Wine_Variety" VALUES(2586,2632,234); INSERT INTO "Wine_Variety" VALUES(2587,2633,610); INSERT INTO "Wine_Variety" VALUES(2588,2634,1154); INSERT INTO "Wine_Variety" VALUES(2589,2635,1049); INSERT INTO "Wine_Variety" VALUES(2590,2636,748); INSERT INTO "Wine_Variety" VALUES(2591,2637,297); INSERT INTO "Wine_Variety" VALUES(2592,2638,458); INSERT INTO "Wine_Variety" VALUES(2593,2639,461); INSERT INTO "Wine_Variety" VALUES(2594,2640,569); INSERT INTO "Wine_Variety" VALUES(2595,2641,449); INSERT INTO "Wine_Variety" VALUES(2596,2642,234); INSERT INTO "Wine_Variety" VALUES(2597,2643,10); INSERT INTO "Wine_Variety" VALUES(2598,2644,942); INSERT INTO "Wine_Variety" VALUES(2599,2645,1155); INSERT INTO "Wine_Variety" VALUES(2600,2646,1156); INSERT INTO "Wine_Variety" VALUES(2601,2647,8); INSERT INTO "Wine_Variety" VALUES(2602,2648,1157); INSERT INTO "Wine_Variety" VALUES(2603,2649,281); INSERT INTO "Wine_Variety" VALUES(2604,2650,1018); INSERT INTO "Wine_Variety" VALUES(2605,2651,1095); INSERT INTO "Wine_Variety" VALUES(2606,2652,225); INSERT INTO "Wine_Variety" VALUES(2607,2653,14); INSERT INTO "Wine_Variety" VALUES(2608,2654,1030); INSERT INTO "Wine_Variety" VALUES(2609,2655,1058); INSERT INTO "Wine_Variety" VALUES(2610,2656,635); INSERT INTO "Wine_Variety" VALUES(2611,2657,497); INSERT INTO "Wine_Variety" VALUES(2612,2658,1056); INSERT INTO "Wine_Variety" VALUES(2613,2659,1158); INSERT INTO "Wine_Variety" VALUES(2614,2660,1159); INSERT INTO "Wine_Variety" VALUES(2615,2661,1160); INSERT INTO "Wine_Variety" VALUES(2616,2662,36); INSERT INTO "Wine_Variety" VALUES(2617,2663,1161); INSERT INTO "Wine_Variety" VALUES(2618,2664,1162); INSERT INTO "Wine_Variety" VALUES(2619,2665,252); INSERT INTO "Wine_Variety" VALUES(2620,2666,119); INSERT INTO "Wine_Variety" VALUES(2621,2667,1163); INSERT INTO "Wine_Variety" VALUES(2622,2668,1164); INSERT INTO "Wine_Variety" VALUES(2623,2669,1165); INSERT INTO "Wine_Variety" VALUES(2624,2670,235); INSERT INTO "Wine_Variety" VALUES(2625,2671,523); INSERT INTO "Wine_Variety" VALUES(2626,2672,379); INSERT INTO "Wine_Variety" VALUES(2627,2673,1102); INSERT INTO "Wine_Variety" VALUES(2628,2674,419); INSERT INTO "Wine_Variety" VALUES(2629,2675,1166); INSERT INTO "Wine_Variety" VALUES(2630,2676,421); INSERT INTO "Wine_Variety" VALUES(2631,2677,664); INSERT INTO "Wine_Variety" VALUES(2632,2678,981); INSERT INTO "Wine_Variety" VALUES(2633,2679,333); INSERT INTO "Wine_Variety" VALUES(2634,2680,453); INSERT INTO "Wine_Variety" VALUES(2635,2681,601); INSERT INTO "Wine_Variety" VALUES(2636,2682,948); INSERT INTO "Wine_Variety" VALUES(2637,2683,358); INSERT INTO "Wine_Variety" VALUES(2638,2684,1167); INSERT INTO "Wine_Variety" VALUES(2639,2685,872); INSERT INTO "Wine_Variety" VALUES(2640,2686,591); INSERT INTO "Wine_Variety" VALUES(2641,2687,872); INSERT INTO "Wine_Variety" VALUES(2642,2688,1168); INSERT INTO "Wine_Variety" VALUES(2643,2689,552); INSERT INTO "Wine_Variety" VALUES(2644,2690,1169); INSERT INTO "Wine_Variety" VALUES(2645,2691,1036); INSERT INTO "Wine_Variety" VALUES(2646,2692,39); INSERT INTO "Wine_Variety" VALUES(2647,2693,1170); INSERT INTO "Wine_Variety" VALUES(2648,2694,1074); INSERT INTO "Wine_Variety" VALUES(2649,2695,1159); INSERT INTO "Wine_Variety" VALUES(2650,2696,944); INSERT INTO "Wine_Variety" VALUES(2651,2697,1171); INSERT INTO "Wine_Variety" VALUES(2652,2698,588); INSERT INTO "Wine_Variety" VALUES(2653,2699,1172); INSERT INTO "Wine_Variety" VALUES(2654,2700,1173); INSERT INTO "Wine_Variety" VALUES(2655,2701,105); INSERT INTO "Wine_Variety" VALUES(2656,2702,110); INSERT INTO "Wine_Variety" VALUES(2657,2703,1174); INSERT INTO "Wine_Variety" VALUES(2658,2704,213); INSERT INTO "Wine_Variety" VALUES(2659,2705,531); INSERT INTO "Wine_Variety" VALUES(2660,2706,437); INSERT INTO "Wine_Variety" VALUES(2661,2707,56); INSERT INTO "Wine_Variety" VALUES(2662,2708,1175); INSERT INTO "Wine_Variety" VALUES(2663,2709,882); INSERT INTO "Wine_Variety" VALUES(2664,2710,920); INSERT INTO "Wine_Variety" VALUES(2665,2711,1176); INSERT INTO "Wine_Variety" VALUES(2666,2712,576); INSERT INTO "Wine_Variety" VALUES(2667,2713,33); INSERT INTO "Wine_Variety" VALUES(2668,2714,219); INSERT INTO "Wine_Variety" VALUES(2669,2715,1177); INSERT INTO "Wine_Variety" VALUES(2670,2716,757); INSERT INTO "Wine_Variety" VALUES(2671,2717,1178); INSERT INTO "Wine_Variety" VALUES(2672,2718,1081); INSERT INTO "Wine_Variety" VALUES(2673,2719,453); INSERT INTO "Wine_Variety" VALUES(2674,2720,749); INSERT INTO "Wine_Variety" VALUES(2675,2721,1179); INSERT INTO "Wine_Variety" VALUES(2676,2722,76); INSERT INTO "Wine_Variety" VALUES(2677,2723,1180); INSERT INTO "Wine_Variety" VALUES(2678,2724,682); INSERT INTO "Wine_Variety" VALUES(2679,2725,358); INSERT INTO "Wine_Variety" VALUES(2680,2726,1029); INSERT INTO "Wine_Variety" VALUES(2681,2727,401); INSERT INTO "Wine_Variety" VALUES(2682,2728,191); INSERT INTO "Wine_Variety" VALUES(2683,2729,708); INSERT INTO "Wine_Variety" VALUES(2684,2730,1181); INSERT INTO "Wine_Variety" VALUES(2685,2731,1148); INSERT INTO "Wine_Variety" VALUES(2686,2732,1182); INSERT INTO "Wine_Variety" VALUES(2687,2733,1183); INSERT INTO "Wine_Variety" VALUES(2688,2734,1168); INSERT INTO "Wine_Variety" VALUES(2689,2735,76); INSERT INTO "Wine_Variety" VALUES(2690,2736,948); INSERT INTO "Wine_Variety" VALUES(2691,2737,1184); INSERT INTO "Wine_Variety" VALUES(2692,2738,884); INSERT INTO "Wine_Variety" VALUES(2693,2739,1185); INSERT INTO "Wine_Variety" VALUES(2694,2740,80); INSERT INTO "Wine_Variety" VALUES(2695,2741,853); INSERT INTO "Wine_Variety" VALUES(2696,2742,502); INSERT INTO "Wine_Variety" VALUES(2697,2743,874); INSERT INTO "Wine_Variety" VALUES(2698,2744,1127); INSERT INTO "Wine_Variety" VALUES(2699,2745,333); INSERT INTO "Wine_Variety" VALUES(2700,2746,297); INSERT INTO "Wine_Variety" VALUES(2701,2747,745); INSERT INTO "Wine_Variety" VALUES(2702,2748,1186); INSERT INTO "Wine_Variety" VALUES(2703,2749,1187); INSERT INTO "Wine_Variety" VALUES(2704,2750,1162); INSERT INTO "Wine_Variety" VALUES(2705,2751,216); INSERT INTO "Wine_Variety" VALUES(2706,2752,1188); INSERT INTO "Wine_Variety" VALUES(2707,2753,609); INSERT INTO "Wine_Variety" VALUES(2708,2754,397); INSERT INTO "Wine_Variety" VALUES(2709,2755,333); INSERT INTO "Wine_Variety" VALUES(2710,2756,597); INSERT INTO "Wine_Variety" VALUES(2711,2757,103); INSERT INTO "Wine_Variety" VALUES(2712,2758,372); INSERT INTO "Wine_Variety" VALUES(2713,2759,1189); INSERT INTO "Wine_Variety" VALUES(2714,2760,116); INSERT INTO "Wine_Variety" VALUES(2715,2761,401); INSERT INTO "Wine_Variety" VALUES(2716,2762,1190); INSERT INTO "Wine_Variety" VALUES(2717,2763,1191); INSERT INTO "Wine_Variety" VALUES(2718,2764,298); INSERT INTO "Wine_Variety" VALUES(2719,2765,756); INSERT INTO "Wine_Variety" VALUES(2720,2766,1192); INSERT INTO "Wine_Variety" VALUES(2721,2767,14); INSERT INTO "Wine_Variety" VALUES(2722,2768,430); INSERT INTO "Wine_Variety" VALUES(2723,2769,440); INSERT INTO "Wine_Variety" VALUES(2724,2770,1193); INSERT INTO "Wine_Variety" VALUES(2725,2771,500); INSERT INTO "Wine_Variety" VALUES(2726,2772,298); INSERT INTO "Wine_Variety" VALUES(2727,2773,522); INSERT INTO "Wine_Variety" VALUES(2728,2774,470); INSERT INTO "Wine_Variety" VALUES(2729,2775,62); INSERT INTO "Wine_Variety" VALUES(2730,2776,748); INSERT INTO "Wine_Variety" VALUES(2731,2777,513); INSERT INTO "Wine_Variety" VALUES(2732,2778,379); INSERT INTO "Wine_Variety" VALUES(2733,2779,375); INSERT INTO "Wine_Variety" VALUES(2734,2780,1194); INSERT INTO "Wine_Variety" VALUES(2735,2781,113); INSERT INTO "Wine_Variety" VALUES(2736,2782,856); INSERT INTO "Wine_Variety" VALUES(2737,2783,476); INSERT INTO "Wine_Variety" VALUES(2738,2784,1195); INSERT INTO "Wine_Variety" VALUES(2739,2785,498); INSERT INTO "Wine_Variety" VALUES(2740,2786,180); INSERT INTO "Wine_Variety" VALUES(2741,2787,1196); INSERT INTO "Wine_Variety" VALUES(2742,2788,1197); INSERT INTO "Wine_Variety" VALUES(2743,2789,71); INSERT INTO "Wine_Variety" VALUES(2744,2790,479); INSERT INTO "Wine_Variety" VALUES(2745,2791,1198); INSERT INTO "Wine_Variety" VALUES(2746,2792,427); INSERT INTO "Wine_Variety" VALUES(2747,2793,1058); INSERT INTO "Wine_Variety" VALUES(2748,2794,100); INSERT INTO "Wine_Variety" VALUES(2749,2795,70); INSERT INTO "Wine_Variety" VALUES(2750,2796,1199); INSERT INTO "Wine_Variety" VALUES(2751,2797,1200); INSERT INTO "Wine_Variety" VALUES(2752,2798,256); INSERT INTO "Wine_Variety" VALUES(2753,2799,1061); INSERT INTO "Wine_Variety" VALUES(2754,2800,1201); INSERT INTO "Wine_Variety" VALUES(2755,2801,1202); INSERT INTO "Wine_Variety" VALUES(2756,2802,576); INSERT INTO "Wine_Variety" VALUES(2757,2803,1203); INSERT INTO "Wine_Variety" VALUES(2758,2804,84); INSERT INTO "Wine_Variety" VALUES(2759,2805,825); INSERT INTO "Wine_Variety" VALUES(2760,2806,1204); INSERT INTO "Wine_Variety" VALUES(2761,2807,1205); INSERT INTO "Wine_Variety" VALUES(2762,2808,3); INSERT INTO "Wine_Variety" VALUES(2763,2809,1206); INSERT INTO "Wine_Variety" VALUES(2764,2810,846); INSERT INTO "Wine_Variety" VALUES(2765,2811,140); INSERT INTO "Wine_Variety" VALUES(2766,2812,129); INSERT INTO "Wine_Variety" VALUES(2767,2813,1207); INSERT INTO "Wine_Variety" VALUES(2768,2814,1208); INSERT INTO "Wine_Variety" VALUES(2769,2815,1030); INSERT INTO "Wine_Variety" VALUES(2770,2816,531); INSERT INTO "Wine_Variety" VALUES(2771,2817,1209); INSERT INTO "Wine_Variety" VALUES(2772,2818,779); INSERT INTO "Wine_Variety" VALUES(2773,2819,1210); INSERT INTO "Wine_Variety" VALUES(2774,2820,46); INSERT INTO "Wine_Variety" VALUES(2775,2821,1211); INSERT INTO "Wine_Variety" VALUES(2776,2822,46); INSERT INTO "Wine_Variety" VALUES(2777,2823,740); INSERT INTO "Wine_Variety" VALUES(2778,2824,131); INSERT INTO "Wine_Variety" VALUES(2779,2825,874); INSERT INTO "Wine_Variety" VALUES(2780,2826,1212); INSERT INTO "Wine_Variety" VALUES(2781,2827,176); INSERT INTO "Wine_Variety" VALUES(2782,2828,1102); INSERT INTO "Wine_Variety" VALUES(2783,2829,577); INSERT INTO "Wine_Variety" VALUES(2784,2830,1054); INSERT INTO "Wine_Variety" VALUES(2785,2831,234); INSERT INTO "Wine_Variety" VALUES(2786,2832,1213); INSERT INTO "Wine_Variety" VALUES(2787,2833,606); INSERT INTO "Wine_Variety" VALUES(2788,2834,576); INSERT INTO "Wine_Variety" VALUES(2789,2835,663); INSERT INTO "Wine_Variety" VALUES(2790,2836,200); INSERT INTO "Wine_Variety" VALUES(2791,2837,452); INSERT INTO "Wine_Variety" VALUES(2792,2838,1214); INSERT INTO "Wine_Variety" VALUES(2793,2839,3); INSERT INTO "Wine_Variety" VALUES(2794,2840,780); INSERT INTO "Wine_Variety" VALUES(2795,2841,490); INSERT INTO "Wine_Variety" VALUES(2796,2842,1215); INSERT INTO "Wine_Variety" VALUES(2797,2843,602); INSERT INTO "Wine_Variety" VALUES(2798,2844,280); INSERT INTO "Wine_Variety" VALUES(2799,2845,549); INSERT INTO "Wine_Variety" VALUES(2800,2846,36); INSERT INTO "Wine_Variety" VALUES(2801,2847,1216); INSERT INTO "Wine_Variety" VALUES(2802,2848,1217); INSERT INTO "Wine_Variety" VALUES(2803,2849,1218); INSERT INTO "Wine_Variety" VALUES(2804,2850,117); INSERT INTO "Wine_Variety" VALUES(2805,2851,974); INSERT INTO "Wine_Variety" VALUES(2806,2852,271); INSERT INTO "Wine_Variety" VALUES(2807,2853,495); INSERT INTO "Wine_Variety" VALUES(2808,2854,281); INSERT INTO "Wine_Variety" VALUES(2809,2855,1001); INSERT INTO "Wine_Variety" VALUES(2810,2856,964); INSERT INTO "Wine_Variety" VALUES(2811,2857,635); INSERT INTO "Wine_Variety" VALUES(2812,2858,252); INSERT INTO "Wine_Variety" VALUES(2813,2859,562); INSERT INTO "Wine_Variety" VALUES(2814,2860,31); INSERT INTO "Wine_Variety" VALUES(2815,2861,1219); INSERT INTO "Wine_Variety" VALUES(2816,2862,1220); INSERT INTO "Wine_Variety" VALUES(2817,2863,635); INSERT INTO "Wine_Variety" VALUES(2818,2864,1221); INSERT INTO "Wine_Variety" VALUES(2819,2865,1222); INSERT INTO "Wine_Variety" VALUES(2820,2866,1223); INSERT INTO "Wine_Variety" VALUES(2821,2867,1058); INSERT INTO "Wine_Variety" VALUES(2822,2868,1209); INSERT INTO "Wine_Variety" VALUES(2823,2869,296); INSERT INTO "Wine_Variety" VALUES(2824,2870,898); INSERT INTO "Wine_Variety" VALUES(2825,2871,1224); INSERT INTO "Wine_Variety" VALUES(2826,2872,1216); INSERT INTO "Wine_Variety" VALUES(2827,2873,337); INSERT INTO "Wine_Variety" VALUES(2828,2874,1225); INSERT INTO "Wine_Variety" VALUES(2829,2875,282); INSERT INTO "Wine_Variety" VALUES(2830,2876,721); INSERT INTO "Wine_Variety" VALUES(2831,2877,307); INSERT INTO "Wine_Variety" VALUES(2832,2878,1226); INSERT INTO "Wine_Variety" VALUES(2833,2879,1142); INSERT INTO "Wine_Variety" VALUES(2834,2880,10); INSERT INTO "Wine_Variety" VALUES(2835,2881,1223); INSERT INTO "Wine_Variety" VALUES(2836,2882,634); INSERT INTO "Wine_Variety" VALUES(2837,2883,561); INSERT INTO "Wine_Variety" VALUES(2838,2884,132); INSERT INTO "Wine_Variety" VALUES(2839,2885,323); INSERT INTO "Wine_Variety" VALUES(2840,2886,1227); INSERT INTO "Wine_Variety" VALUES(2841,2887,634); INSERT INTO "Wine_Variety" VALUES(2842,2888,1228); INSERT INTO "Wine_Variety" VALUES(2843,2889,106); INSERT INTO "Wine_Variety" VALUES(2844,2890,1229); INSERT INTO "Wine_Variety" VALUES(2845,2891,1230); INSERT INTO "Wine_Variety" VALUES(2846,2892,280); INSERT INTO "Wine_Variety" VALUES(2847,2893,842); INSERT INTO "Wine_Variety" VALUES(2848,2894,1231); INSERT INTO "Wine_Variety" VALUES(2849,2895,1232); INSERT INTO "Wine_Variety" VALUES(2850,2896,179); INSERT INTO "Wine_Variety" VALUES(2851,2897,480); INSERT INTO "Wine_Variety" VALUES(2852,2898,1192); INSERT INTO "Wine_Variety" VALUES(2853,2899,1233); INSERT INTO "Wine_Variety" VALUES(2854,2900,1234); INSERT INTO "Wine_Variety" VALUES(2855,2901,842); INSERT INTO "Wine_Variety" VALUES(2856,2902,1235); INSERT INTO "Wine_Variety" VALUES(2857,2903,1236); INSERT INTO "Wine_Variety" VALUES(2858,2904,427); INSERT INTO "Wine_Variety" VALUES(2859,2905,1237); INSERT INTO "Wine_Variety" VALUES(2860,2906,1238); INSERT INTO "Wine_Variety" VALUES(2861,2907,904); INSERT INTO "Wine_Variety" VALUES(2862,2908,405); INSERT INTO "Wine_Variety" VALUES(2863,2909,1239); INSERT INTO "Wine_Variety" VALUES(2864,2910,177); INSERT INTO "Wine_Variety" VALUES(2865,2911,803); INSERT INTO "Wine_Variety" VALUES(2866,2912,246); INSERT INTO "Wine_Variety" VALUES(2867,2913,704); INSERT INTO "Wine_Variety" VALUES(2868,2914,1240); INSERT INTO "Wine_Variety" VALUES(2869,2915,1049); INSERT INTO "Wine_Variety" VALUES(2870,2916,1241); INSERT INTO "Wine_Variety" VALUES(2871,2917,534); INSERT INTO "Wine_Variety" VALUES(2872,2918,1196); INSERT INTO "Wine_Variety" VALUES(2873,2919,730); INSERT INTO "Wine_Variety" VALUES(2874,2920,820); INSERT INTO "Wine_Variety" VALUES(2875,2921,297); INSERT INTO "Wine_Variety" VALUES(2876,2922,640); INSERT INTO "Wine_Variety" VALUES(2877,2923,473); INSERT INTO "Wine_Variety" VALUES(2878,2924,162); INSERT INTO "Wine_Variety" VALUES(2879,2925,155); INSERT INTO "Wine_Variety" VALUES(2880,2926,476); INSERT INTO "Wine_Variety" VALUES(2881,2927,252); INSERT INTO "Wine_Variety" VALUES(2882,2928,1044); INSERT INTO "Wine_Variety" VALUES(2883,2929,1242); INSERT INTO "Wine_Variety" VALUES(2884,2930,186); INSERT INTO "Wine_Variety" VALUES(2885,2931,619); INSERT INTO "Wine_Variety" VALUES(2886,2932,524); INSERT INTO "Wine_Variety" VALUES(2887,2933,143); INSERT INTO "Wine_Variety" VALUES(2888,2934,1243); INSERT INTO "Wine_Variety" VALUES(2889,2935,496); INSERT INTO "Wine_Variety" VALUES(2890,2936,162); INSERT INTO "Wine_Variety" VALUES(2891,2937,1244); INSERT INTO "Wine_Variety" VALUES(2892,2938,1245); INSERT INTO "Wine_Variety" VALUES(2893,2939,328); INSERT INTO "Wine_Variety" VALUES(2894,2940,1246); INSERT INTO "Wine_Variety" VALUES(2895,2941,635); INSERT INTO "Wine_Variety" VALUES(2896,2942,1247); INSERT INTO "Wine_Variety" VALUES(2897,2943,280); INSERT INTO "Wine_Variety" VALUES(2898,2944,1020); INSERT INTO "Wine_Variety" VALUES(2899,2945,1248); INSERT INTO "Wine_Variety" VALUES(2900,2946,1163); INSERT INTO "Wine_Variety" VALUES(2901,2947,84); INSERT INTO "Wine_Variety" VALUES(2902,2948,1249); INSERT INTO "Wine_Variety" VALUES(2903,2949,961); INSERT INTO "Wine_Variety" VALUES(2904,2950,1151); INSERT INTO "Wine_Variety" VALUES(2905,2951,1246); INSERT INTO "Wine_Variety" VALUES(2906,2952,115); INSERT INTO "Wine_Variety" VALUES(2907,2953,1250); INSERT INTO "Wine_Variety" VALUES(2908,2954,441); INSERT INTO "Wine_Variety" VALUES(2909,2955,611); INSERT INTO "Wine_Variety" VALUES(2910,2956,37); INSERT INTO "Wine_Variety" VALUES(2911,2957,1251); INSERT INTO "Wine_Variety" VALUES(2912,2958,1252); INSERT INTO "Wine_Variety" VALUES(2913,2959,935); INSERT INTO "Wine_Variety" VALUES(2914,2960,552); INSERT INTO "Wine_Variety" VALUES(2915,2961,1050); INSERT INTO "Wine_Variety" VALUES(2916,2962,1253); INSERT INTO "Wine_Variety" VALUES(2917,2963,36); INSERT INTO "Wine_Variety" VALUES(2918,2964,1254); INSERT INTO "Wine_Variety" VALUES(2919,2965,79); INSERT INTO "Wine_Variety" VALUES(2920,2966,31); INSERT INTO "Wine_Variety" VALUES(2921,2967,1201); INSERT INTO "Wine_Variety" VALUES(2922,2968,552); INSERT INTO "Wine_Variety" VALUES(2923,2969,699); INSERT INTO "Wine_Variety" VALUES(2924,2970,1067); INSERT INTO "Wine_Variety" VALUES(2925,2971,1255); INSERT INTO "Wine_Variety" VALUES(2926,2972,1200); INSERT INTO "Wine_Variety" VALUES(2927,2973,1030); INSERT INTO "Wine_Variety" VALUES(2928,2974,470); INSERT INTO "Wine_Variety" VALUES(2929,2975,1256); INSERT INTO "Wine_Variety" VALUES(2930,2976,309); INSERT INTO "Wine_Variety" VALUES(2931,2977,1257); INSERT INTO "Wine_Variety" VALUES(2932,2978,199); INSERT INTO "Wine_Variety" VALUES(2933,2979,659); INSERT INTO "Wine_Variety" VALUES(2934,2980,1258); INSERT INTO "Wine_Variety" VALUES(2935,2981,293); INSERT INTO "Wine_Variety" VALUES(2936,2982,60); INSERT INTO "Wine_Variety" VALUES(2937,2983,932); INSERT INTO "Wine_Variety" VALUES(2938,2984,935); INSERT INTO "Wine_Variety" VALUES(2939,2985,1233); INSERT INTO "Wine_Variety" VALUES(2940,2986,1259); INSERT INTO "Wine_Variety" VALUES(2941,2987,357); INSERT INTO "Wine_Variety" VALUES(2942,2988,204); INSERT INTO "Wine_Variety" VALUES(2943,2989,1237); INSERT INTO "Wine_Variety" VALUES(2944,2990,1260); INSERT INTO "Wine_Variety" VALUES(2945,2991,1213); INSERT INTO "Wine_Variety" VALUES(2946,2992,309); INSERT INTO "Wine_Variety" VALUES(2947,2993,1061); INSERT INTO "Wine_Variety" VALUES(2948,2994,708); INSERT INTO "Wine_Variety" VALUES(2949,2995,1261); INSERT INTO "Wine_Variety" VALUES(2950,2996,1098); INSERT INTO "Wine_Variety" VALUES(2951,2997,1142); INSERT INTO "Wine_Variety" VALUES(2952,2998,178); INSERT INTO "Wine_Variety" VALUES(2953,2999,72); INSERT INTO "Wine_Variety" VALUES(2954,3000,1261); INSERT INTO "Wine_Variety" VALUES(2955,3001,178); INSERT INTO "Wine_Variety" VALUES(2956,3002,936); INSERT INTO "Wine_Variety" VALUES(2957,3003,1262); INSERT INTO "Wine_Variety" VALUES(2958,3004,1160); INSERT INTO "Wine_Variety" VALUES(2959,3005,1032); INSERT INTO "Wine_Variety" VALUES(2960,3006,1263); INSERT INTO "Wine_Variety" VALUES(2961,3007,631); INSERT INTO "Wine_Variety" VALUES(2962,3008,1012); INSERT INTO "Wine_Variety" VALUES(2963,3009,1048); INSERT INTO "Wine_Variety" VALUES(2964,3010,77); INSERT INTO "Wine_Variety" VALUES(2965,3011,1264); INSERT INTO "Wine_Variety" VALUES(2966,3012,1155); INSERT INTO "Wine_Variety" VALUES(2967,3013,1009); INSERT INTO "Wine_Variety" VALUES(2968,3014,178); INSERT INTO "Wine_Variety" VALUES(2969,3015,379); INSERT INTO "Wine_Variety" VALUES(2970,3016,397); INSERT INTO "Wine_Variety" VALUES(2971,3017,1265); INSERT INTO "Wine_Variety" VALUES(2972,3018,6); INSERT INTO "Wine_Variety" VALUES(2973,3019,1263); INSERT INTO "Wine_Variety" VALUES(2974,3020,196); INSERT INTO "Wine_Variety" VALUES(2975,3021,178); INSERT INTO "Wine_Variety" VALUES(2976,3022,549); INSERT INTO "Wine_Variety" VALUES(2977,3023,444); INSERT INTO "Wine_Variety" VALUES(2978,3024,461); INSERT INTO "Wine_Variety" VALUES(2979,3025,116); INSERT INTO "Wine_Variety" VALUES(2980,3026,1121); INSERT INTO "Wine_Variety" VALUES(2981,3027,1150); INSERT INTO "Wine_Variety" VALUES(2982,3028,1266); INSERT INTO "Wine_Variety" VALUES(2983,3029,493); INSERT INTO "Wine_Variety" VALUES(2984,3030,1118); INSERT INTO "Wine_Variety" VALUES(2985,3031,549); INSERT INTO "Wine_Variety" VALUES(2986,3032,1267); INSERT INTO "Wine_Variety" VALUES(2987,3033,884); INSERT INTO "Wine_Variety" VALUES(2988,3034,1105); INSERT INTO "Wine_Variety" VALUES(2989,3035,1268); INSERT INTO "Wine_Variety" VALUES(2990,3036,1269); INSERT INTO "Wine_Variety" VALUES(2991,3037,1270); INSERT INTO "Wine_Variety" VALUES(2992,3038,977); INSERT INTO "Wine_Variety" VALUES(2993,3039,1271); INSERT INTO "Wine_Variety" VALUES(2994,3040,1272); INSERT INTO "Wine_Variety" VALUES(2995,3041,1273); INSERT INTO "Wine_Variety" VALUES(2996,3042,562); INSERT INTO "Wine_Variety" VALUES(2997,3043,1274); INSERT INTO "Wine_Variety" VALUES(2998,3044,1275); INSERT INTO "Wine_Variety" VALUES(2999,3045,842); INSERT INTO "Wine_Variety" VALUES(3000,3046,222); INSERT INTO "Wine_Variety" VALUES(3001,3047,1086); INSERT INTO "Wine_Variety" VALUES(3002,3048,1090); INSERT INTO "Wine_Variety" VALUES(3003,3049,178); INSERT INTO "Wine_Variety" VALUES(3004,3050,1113); INSERT INTO "Wine_Variety" VALUES(3005,3051,661); INSERT INTO "Wine_Variety" VALUES(3006,3052,502); INSERT INTO "Wine_Variety" VALUES(3007,3053,1276); INSERT INTO "Wine_Variety" VALUES(3008,3054,117); INSERT INTO "Wine_Variety" VALUES(3009,3055,351); INSERT INTO "Wine_Variety" VALUES(3010,3056,316); INSERT INTO "Wine_Variety" VALUES(3011,3057,1167); INSERT INTO "Wine_Variety" VALUES(3012,3058,1142); INSERT INTO "Wine_Variety" VALUES(3013,3059,780); INSERT INTO "Wine_Variety" VALUES(3014,3060,971); INSERT INTO "Wine_Variety" VALUES(3015,3061,1277); INSERT INTO "Wine_Variety" VALUES(3016,3062,1278); INSERT INTO "Wine_Variety" VALUES(3017,3063,1279); INSERT INTO "Wine_Variety" VALUES(3018,3064,473); INSERT INTO "Wine_Variety" VALUES(3019,3065,402); INSERT INTO "Wine_Variety" VALUES(3020,3066,151); INSERT INTO "Wine_Variety" VALUES(3021,3067,1280); INSERT INTO "Wine_Variety" VALUES(3022,3068,1281); INSERT INTO "Wine_Variety" VALUES(3023,3069,682); INSERT INTO "Wine_Variety" VALUES(3024,3070,179); INSERT INTO "Wine_Variety" VALUES(3025,3071,1282); INSERT INTO "Wine_Variety" VALUES(3026,3072,36); INSERT INTO "Wine_Variety" VALUES(3027,3073,379); INSERT INTO "Wine_Variety" VALUES(3028,3074,36); INSERT INTO "Wine_Variety" VALUES(3029,3075,1113); INSERT INTO "Wine_Variety" VALUES(3030,3076,999); INSERT INTO "Wine_Variety" VALUES(3031,3077,84); INSERT INTO "Wine_Variety" VALUES(3032,3078,1283); INSERT INTO "Wine_Variety" VALUES(3033,3079,1284); INSERT INTO "Wine_Variety" VALUES(3034,3080,300); INSERT INTO "Wine_Variety" VALUES(3035,3081,743); INSERT INTO "Wine_Variety" VALUES(3036,3082,1285); INSERT INTO "Wine_Variety" VALUES(3037,3083,1286); INSERT INTO "Wine_Variety" VALUES(3038,3084,1287); INSERT INTO "Wine_Variety" VALUES(3039,3085,433); INSERT INTO "Wine_Variety" VALUES(3040,3086,1046); INSERT INTO "Wine_Variety" VALUES(3041,3087,944); INSERT INTO "Wine_Variety" VALUES(3042,3088,300); INSERT INTO "Wine_Variety" VALUES(3043,3089,299); INSERT INTO "Wine_Variety" VALUES(3044,3090,608); INSERT INTO "Wine_Variety" VALUES(3045,3091,1288); INSERT INTO "Wine_Variety" VALUES(3046,3092,1246); INSERT INTO "Wine_Variety" VALUES(3047,3093,1049); INSERT INTO "Wine_Variety" VALUES(3048,3094,1289); INSERT INTO "Wine_Variety" VALUES(3049,3095,1216); INSERT INTO "Wine_Variety" VALUES(3050,3097,217); INSERT INTO "Wine_Variety" VALUES(3051,3098,1290); INSERT INTO "Wine_Variety" VALUES(3052,3099,1150); INSERT INTO "Wine_Variety" VALUES(3053,3100,549); INSERT INTO "Wine_Variety" VALUES(3054,3101,1095); INSERT INTO "Wine_Variety" VALUES(3055,3102,1148); INSERT INTO "Wine_Variety" VALUES(3056,3103,619); INSERT INTO "Wine_Variety" VALUES(3057,3104,137); INSERT INTO "Wine_Variety" VALUES(3058,3105,110); INSERT INTO "Wine_Variety" VALUES(3059,3106,1098); INSERT INTO "Wine_Variety" VALUES(3060,3107,1246); INSERT INTO "Wine_Variety" VALUES(3061,3108,754); INSERT INTO "Wine_Variety" VALUES(3062,3109,534); INSERT INTO "Wine_Variety" VALUES(3063,3110,1291); INSERT INTO "Wine_Variety" VALUES(3064,3111,1292); INSERT INTO "Wine_Variety" VALUES(3065,3112,382); INSERT INTO "Wine_Variety" VALUES(3066,3114,47); INSERT INTO "Wine_Variety" VALUES(3067,3115,623); INSERT INTO "Wine_Variety" VALUES(3068,3116,1010); INSERT INTO "Wine_Variety" VALUES(3069,3117,1122); INSERT INTO "Wine_Variety" VALUES(3070,3118,280); INSERT INTO "Wine_Variety" VALUES(3071,3119,405); INSERT INTO "Wine_Variety" VALUES(3072,3121,1246); INSERT INTO "Wine_Variety" VALUES(3073,3122,1177); INSERT INTO "Wine_Variety" VALUES(3074,3124,75); INSERT INTO "Wine_Variety" VALUES(3075,3125,1103); INSERT INTO "Wine_Variety" VALUES(3076,3126,1020); INSERT INTO "Wine_Variety" VALUES(3077,3128,213); INSERT INTO "Wine_Variety" VALUES(3078,3129,25); INSERT INTO "Wine_Variety" VALUES(3079,3130,199); INSERT INTO "Wine_Variety" VALUES(3080,3131,497); INSERT INTO "Wine_Variety" VALUES(3081,3132,1293); INSERT INTO "Wine_Variety" VALUES(3082,3133,151); INSERT INTO "Wine_Variety" VALUES(3083,3134,162); INSERT INTO "Wine_Variety" VALUES(3084,3135,805); INSERT INTO "Wine_Variety" VALUES(3085,3136,1294); INSERT INTO "Wine_Variety" VALUES(3086,3137,57); INSERT INTO "Wine_Variety" VALUES(3087,3138,1295); INSERT INTO "Wine_Variety" VALUES(3088,3140,625); INSERT INTO "Wine_Variety" VALUES(3089,3141,1060); INSERT INTO "Wine_Variety" VALUES(3090,3142,252); INSERT INTO "Wine_Variety" VALUES(3091,3143,369); INSERT INTO "Wine_Variety" VALUES(3092,3144,1296); INSERT INTO "Wine_Variety" VALUES(3093,3145,329); INSERT INTO "Wine_Variety" VALUES(3094,3146,1184); INSERT INTO "Wine_Variety" VALUES(3095,3147,1297); INSERT INTO "Wine_Variety" VALUES(3096,3148,576); INSERT INTO "Wine_Variety" VALUES(3097,3150,1298); INSERT INTO "Wine_Variety" VALUES(3098,3151,1099); INSERT INTO "Wine_Variety" VALUES(3099,3152,1247); INSERT INTO "Wine_Variety" VALUES(3100,3153,234); INSERT INTO "Wine_Variety" VALUES(3101,3154,1299); INSERT INTO "Wine_Variety" VALUES(3102,3155,1300); INSERT INTO "Wine_Variety" VALUES(3103,3156,1152); INSERT INTO "Wine_Variety" VALUES(3104,3157,1301); INSERT INTO "Wine_Variety" VALUES(3105,3158,1302); INSERT INTO "Wine_Variety" VALUES(3106,3159,743); INSERT INTO "Wine_Variety" VALUES(3107,3160,1033); INSERT INTO "Wine_Variety" VALUES(3108,3161,569); INSERT INTO "Wine_Variety" VALUES(3109,3162,1289); INSERT INTO "Wine_Variety" VALUES(3110,3165,151); INSERT INTO "Wine_Variety" VALUES(3111,3166,273); INSERT INTO "Wine_Variety" VALUES(3112,3167,974); INSERT INTO "Wine_Variety" VALUES(3113,3168,534); INSERT INTO "Wine_Variety" VALUES(3114,3169,36); INSERT INTO "Wine_Variety" VALUES(3115,3170,1128); INSERT INTO "Wine_Variety" VALUES(3116,3171,1294); INSERT INTO "Wine_Variety" VALUES(3117,3172,1246); INSERT INTO "Wine_Variety" VALUES(3118,3173,556); INSERT INTO "Wine_Variety" VALUES(3119,3174,1303); INSERT INTO "Wine_Variety" VALUES(3120,3175,250); INSERT INTO "Wine_Variety" VALUES(3121,3176,158); INSERT INTO "Wine_Variety" VALUES(3122,3178,531); INSERT INTO "Wine_Variety" VALUES(3123,3179,567); INSERT INTO "Wine_Variety" VALUES(3124,3180,213); INSERT INTO "Wine_Variety" VALUES(3125,3181,1304); INSERT INTO "Wine_Variety" VALUES(3126,3182,1305); INSERT INTO "Wine_Variety" VALUES(3127,3183,92); INSERT INTO "Wine_Variety" VALUES(3128,3184,271); INSERT INTO "Wine_Variety" VALUES(3129,3185,1223); INSERT INTO "Wine_Variety" VALUES(3130,3186,489); INSERT INTO "Wine_Variety" VALUES(3131,3187,534); INSERT INTO "Wine_Variety" VALUES(3132,3188,105); INSERT INTO "Wine_Variety" VALUES(3133,3189,1204); INSERT INTO "Wine_Variety" VALUES(3134,3190,80); INSERT INTO "Wine_Variety" VALUES(3135,3191,322); INSERT INTO "Wine_Variety" VALUES(3136,3192,758); INSERT INTO "Wine_Variety" VALUES(3137,3193,611); INSERT INTO "Wine_Variety" VALUES(3138,3194,216); INSERT INTO "Wine_Variety" VALUES(3139,3195,1294); INSERT INTO "Wine_Variety" VALUES(3140,3196,1074); INSERT INTO "Wine_Variety" VALUES(3141,3197,300); INSERT INTO "Wine_Variety" VALUES(3142,3199,659); INSERT INTO "Wine_Variety" VALUES(3143,3200,375); INSERT INTO "Wine_Variety" VALUES(3144,3201,1283); INSERT INTO "Wine_Variety" VALUES(3145,3202,478); INSERT INTO "Wine_Variety" VALUES(3146,3203,502); INSERT INTO "Wine_Variety" VALUES(3147,3204,777); INSERT INTO "Wine_Variety" VALUES(3148,3205,1227); INSERT INTO "Wine_Variety" VALUES(3149,3206,113); INSERT INTO "Wine_Variety" VALUES(3150,3207,382); INSERT INTO "Wine_Variety" VALUES(3151,3208,1263); INSERT INTO "Wine_Variety" VALUES(3152,3209,1286); INSERT INTO "Wine_Variety" VALUES(3153,3210,359); INSERT INTO "Wine_Variety" VALUES(3154,3211,576); INSERT INTO "Wine_Variety" VALUES(3155,3212,201); INSERT INTO "Wine_Variety" VALUES(3156,3213,409); INSERT INTO "Wine_Variety" VALUES(3157,3214,1020); INSERT INTO "Wine_Variety" VALUES(3158,3215,1084); INSERT INTO "Wine_Variety" VALUES(3159,3216,23); INSERT INTO "Wine_Variety" VALUES(3160,3217,708); INSERT INTO "Wine_Variety" VALUES(3161,3218,1286); INSERT INTO "Wine_Variety" VALUES(3162,3219,1107); INSERT INTO "Wine_Variety" VALUES(3163,3220,495); INSERT INTO "Wine_Variety" VALUES(3164,3221,664); INSERT INTO "Wine_Variety" VALUES(3165,3222,1062); INSERT INTO "Wine_Variety" VALUES(3166,3223,1164); INSERT INTO "Wine_Variety" VALUES(3167,3224,609); INSERT INTO "Wine_Variety" VALUES(3168,3225,999); CREATE TABLE Wine_Descriptor (_id INTEGER PRIMARY KEY AUTOINCREMENT, Wine_ID INTEGER REFERENCES Wine(ID) ON DELETE CASCADE, Descriptor_ID INTEGER REFERENCES Descriptor(ID) ON DELETE CASCADE); INSERT INTO "Wine_Descriptor" VALUES(1,1,4); INSERT INTO "Wine_Descriptor" VALUES(2,1,5); INSERT INTO "Wine_Descriptor" VALUES(3,2,4); INSERT INTO "Wine_Descriptor" VALUES(4,2,5); INSERT INTO "Wine_Descriptor" VALUES(5,3,4); INSERT INTO "Wine_Descriptor" VALUES(6,3,5); INSERT INTO "Wine_Descriptor" VALUES(7,4,4); INSERT INTO "Wine_Descriptor" VALUES(8,4,5); INSERT INTO "Wine_Descriptor" VALUES(9,5,4); INSERT INTO "Wine_Descriptor" VALUES(10,5,5); INSERT INTO "Wine_Descriptor" VALUES(11,6,4); INSERT INTO "Wine_Descriptor" VALUES(12,6,5); INSERT INTO "Wine_Descriptor" VALUES(13,7,4); INSERT INTO "Wine_Descriptor" VALUES(14,7,5); INSERT INTO "Wine_Descriptor" VALUES(15,8,4); INSERT INTO "Wine_Descriptor" VALUES(16,8,5); INSERT INTO "Wine_Descriptor" VALUES(17,9,4); INSERT INTO "Wine_Descriptor" VALUES(18,9,5); INSERT INTO "Wine_Descriptor" VALUES(19,10,4); INSERT INTO "Wine_Descriptor" VALUES(20,10,5); INSERT INTO "Wine_Descriptor" VALUES(21,11,4); INSERT INTO "Wine_Descriptor" VALUES(22,11,5); INSERT INTO "Wine_Descriptor" VALUES(23,12,4); INSERT INTO "Wine_Descriptor" VALUES(24,12,5); INSERT INTO "Wine_Descriptor" VALUES(25,13,4); INSERT INTO "Wine_Descriptor" VALUES(26,13,5); INSERT INTO "Wine_Descriptor" VALUES(27,14,4); INSERT INTO "Wine_Descriptor" VALUES(28,14,5); INSERT INTO "Wine_Descriptor" VALUES(29,15,4); INSERT INTO "Wine_Descriptor" VALUES(30,15,5); INSERT INTO "Wine_Descriptor" VALUES(31,16,4); INSERT INTO "Wine_Descriptor" VALUES(32,16,5); INSERT INTO "Wine_Descriptor" VALUES(33,17,4); INSERT INTO "Wine_Descriptor" VALUES(34,17,5); INSERT INTO "Wine_Descriptor" VALUES(35,18,4); INSERT INTO "Wine_Descriptor" VALUES(36,18,5); INSERT INTO "Wine_Descriptor" VALUES(37,19,4); INSERT INTO "Wine_Descriptor" VALUES(38,19,5); INSERT INTO "Wine_Descriptor" VALUES(39,20,4); INSERT INTO "Wine_Descriptor" VALUES(40,20,5); INSERT INTO "Wine_Descriptor" VALUES(41,21,4); INSERT INTO "Wine_Descriptor" VALUES(42,21,5); INSERT INTO "Wine_Descriptor" VALUES(43,22,4); INSERT INTO "Wine_Descriptor" VALUES(44,22,5); INSERT INTO "Wine_Descriptor" VALUES(45,23,4); INSERT INTO "Wine_Descriptor" VALUES(46,23,5); INSERT INTO "Wine_Descriptor" VALUES(47,24,4); INSERT INTO "Wine_Descriptor" VALUES(48,24,5); INSERT INTO "Wine_Descriptor" VALUES(49,25,4); INSERT INTO "Wine_Descriptor" VALUES(50,25,5); INSERT INTO "Wine_Descriptor" VALUES(51,26,4); INSERT INTO "Wine_Descriptor" VALUES(52,26,5); INSERT INTO "Wine_Descriptor" VALUES(53,27,4); INSERT INTO "Wine_Descriptor" VALUES(54,27,5); INSERT INTO "Wine_Descriptor" VALUES(55,28,4); INSERT INTO "Wine_Descriptor" VALUES(56,28,5); INSERT INTO "Wine_Descriptor" VALUES(57,29,4); INSERT INTO "Wine_Descriptor" VALUES(58,29,5); INSERT INTO "Wine_Descriptor" VALUES(59,30,4); INSERT INTO "Wine_Descriptor" VALUES(60,30,5); INSERT INTO "Wine_Descriptor" VALUES(61,31,4); INSERT INTO "Wine_Descriptor" VALUES(62,31,5); INSERT INTO "Wine_Descriptor" VALUES(63,32,4); INSERT INTO "Wine_Descriptor" VALUES(64,32,5); INSERT INTO "Wine_Descriptor" VALUES(65,33,4); INSERT INTO "Wine_Descriptor" VALUES(66,33,5); INSERT INTO "Wine_Descriptor" VALUES(67,34,4); INSERT INTO "Wine_Descriptor" VALUES(68,34,5); INSERT INTO "Wine_Descriptor" VALUES(69,35,4); INSERT INTO "Wine_Descriptor" VALUES(70,35,5); INSERT INTO "Wine_Descriptor" VALUES(71,36,4); INSERT INTO "Wine_Descriptor" VALUES(72,36,5); INSERT INTO "Wine_Descriptor" VALUES(73,37,4); INSERT INTO "Wine_Descriptor" VALUES(74,37,5); INSERT INTO "Wine_Descriptor" VALUES(75,38,4); INSERT INTO "Wine_Descriptor" VALUES(76,38,5); INSERT INTO "Wine_Descriptor" VALUES(77,39,4); INSERT INTO "Wine_Descriptor" VALUES(78,39,5); INSERT INTO "Wine_Descriptor" VALUES(79,40,4); INSERT INTO "Wine_Descriptor" VALUES(80,40,5); INSERT INTO "Wine_Descriptor" VALUES(81,41,4); INSERT INTO "Wine_Descriptor" VALUES(82,41,5); INSERT INTO "Wine_Descriptor" VALUES(83,42,4); INSERT INTO "Wine_Descriptor" VALUES(84,42,5); INSERT INTO "Wine_Descriptor" VALUES(85,43,4); INSERT INTO "Wine_Descriptor" VALUES(86,43,5); INSERT INTO "Wine_Descriptor" VALUES(87,44,4); INSERT INTO "Wine_Descriptor" VALUES(88,44,5); INSERT INTO "Wine_Descriptor" VALUES(89,45,4); INSERT INTO "Wine_Descriptor" VALUES(90,45,5); INSERT INTO "Wine_Descriptor" VALUES(91,46,4); INSERT INTO "Wine_Descriptor" VALUES(92,46,5); INSERT INTO "Wine_Descriptor" VALUES(93,47,4); INSERT INTO "Wine_Descriptor" VALUES(94,47,5); INSERT INTO "Wine_Descriptor" VALUES(95,48,4); INSERT INTO "Wine_Descriptor" VALUES(96,48,5); INSERT INTO "Wine_Descriptor" VALUES(97,49,4); INSERT INTO "Wine_Descriptor" VALUES(98,49,5); INSERT INTO "Wine_Descriptor" VALUES(99,50,4); INSERT INTO "Wine_Descriptor" VALUES(100,50,5); INSERT INTO "Wine_Descriptor" VALUES(101,51,4); INSERT INTO "Wine_Descriptor" VALUES(102,51,5); INSERT INTO "Wine_Descriptor" VALUES(103,52,4); INSERT INTO "Wine_Descriptor" VALUES(104,52,5); INSERT INTO "Wine_Descriptor" VALUES(105,53,4); INSERT INTO "Wine_Descriptor" VALUES(106,53,5); INSERT INTO "Wine_Descriptor" VALUES(107,54,4); INSERT INTO "Wine_Descriptor" VALUES(108,54,5); INSERT INTO "Wine_Descriptor" VALUES(109,55,4); INSERT INTO "Wine_Descriptor" VALUES(110,55,5); INSERT INTO "Wine_Descriptor" VALUES(111,56,4); INSERT INTO "Wine_Descriptor" VALUES(112,56,5); INSERT INTO "Wine_Descriptor" VALUES(113,57,4); INSERT INTO "Wine_Descriptor" VALUES(114,57,5); INSERT INTO "Wine_Descriptor" VALUES(115,58,4); INSERT INTO "Wine_Descriptor" VALUES(116,58,5); INSERT INTO "Wine_Descriptor" VALUES(117,59,4); INSERT INTO "Wine_Descriptor" VALUES(118,59,5); INSERT INTO "Wine_Descriptor" VALUES(119,60,4); INSERT INTO "Wine_Descriptor" VALUES(120,60,5); INSERT INTO "Wine_Descriptor" VALUES(121,61,4); INSERT INTO "Wine_Descriptor" VALUES(122,61,5); INSERT INTO "Wine_Descriptor" VALUES(123,62,4); INSERT INTO "Wine_Descriptor" VALUES(124,62,5); INSERT INTO "Wine_Descriptor" VALUES(125,63,4); INSERT INTO "Wine_Descriptor" VALUES(126,63,5); INSERT INTO "Wine_Descriptor" VALUES(127,64,4); INSERT INTO "Wine_Descriptor" VALUES(128,64,5); INSERT INTO "Wine_Descriptor" VALUES(129,65,4); INSERT INTO "Wine_Descriptor" VALUES(130,65,5); INSERT INTO "Wine_Descriptor" VALUES(131,66,4); INSERT INTO "Wine_Descriptor" VALUES(132,66,5); INSERT INTO "Wine_Descriptor" VALUES(133,67,4); INSERT INTO "Wine_Descriptor" VALUES(134,67,5); INSERT INTO "Wine_Descriptor" VALUES(135,68,4); INSERT INTO "Wine_Descriptor" VALUES(136,68,5); INSERT INTO "Wine_Descriptor" VALUES(137,69,4); INSERT INTO "Wine_Descriptor" VALUES(138,69,5); INSERT INTO "Wine_Descriptor" VALUES(139,70,4); INSERT INTO "Wine_Descriptor" VALUES(140,70,5); INSERT INTO "Wine_Descriptor" VALUES(141,71,4); INSERT INTO "Wine_Descriptor" VALUES(142,71,5); INSERT INTO "Wine_Descriptor" VALUES(143,72,4); INSERT INTO "Wine_Descriptor" VALUES(144,72,5); INSERT INTO "Wine_Descriptor" VALUES(145,73,4); INSERT INTO "Wine_Descriptor" VALUES(146,73,5); INSERT INTO "Wine_Descriptor" VALUES(147,74,4); INSERT INTO "Wine_Descriptor" VALUES(148,74,5); INSERT INTO "Wine_Descriptor" VALUES(149,75,4); INSERT INTO "Wine_Descriptor" VALUES(150,75,5); INSERT INTO "Wine_Descriptor" VALUES(151,76,4); INSERT INTO "Wine_Descriptor" VALUES(152,76,5); INSERT INTO "Wine_Descriptor" VALUES(153,77,4); INSERT INTO "Wine_Descriptor" VALUES(154,77,5); INSERT INTO "Wine_Descriptor" VALUES(155,78,4); INSERT INTO "Wine_Descriptor" VALUES(156,78,5); INSERT INTO "Wine_Descriptor" VALUES(157,79,4); INSERT INTO "Wine_Descriptor" VALUES(158,79,5); INSERT INTO "Wine_Descriptor" VALUES(159,80,4); INSERT INTO "Wine_Descriptor" VALUES(160,80,5); INSERT INTO "Wine_Descriptor" VALUES(161,81,4); INSERT INTO "Wine_Descriptor" VALUES(162,81,5); INSERT INTO "Wine_Descriptor" VALUES(163,82,4); INSERT INTO "Wine_Descriptor" VALUES(164,82,5); INSERT INTO "Wine_Descriptor" VALUES(165,83,4); INSERT INTO "Wine_Descriptor" VALUES(166,83,5); INSERT INTO "Wine_Descriptor" VALUES(167,84,4); INSERT INTO "Wine_Descriptor" VALUES(168,84,5); INSERT INTO "Wine_Descriptor" VALUES(169,85,4); INSERT INTO "Wine_Descriptor" VALUES(170,85,5); INSERT INTO "Wine_Descriptor" VALUES(171,86,4); INSERT INTO "Wine_Descriptor" VALUES(172,86,5); INSERT INTO "Wine_Descriptor" VALUES(173,87,4); INSERT INTO "Wine_Descriptor" VALUES(174,87,5); INSERT INTO "Wine_Descriptor" VALUES(175,88,4); INSERT INTO "Wine_Descriptor" VALUES(176,88,5); INSERT INTO "Wine_Descriptor" VALUES(177,89,4); INSERT INTO "Wine_Descriptor" VALUES(178,89,5); INSERT INTO "Wine_Descriptor" VALUES(179,90,4); INSERT INTO "Wine_Descriptor" VALUES(180,90,5); INSERT INTO "Wine_Descriptor" VALUES(181,91,4); INSERT INTO "Wine_Descriptor" VALUES(182,91,5); INSERT INTO "Wine_Descriptor" VALUES(183,92,4); INSERT INTO "Wine_Descriptor" VALUES(184,92,5); INSERT INTO "Wine_Descriptor" VALUES(185,93,4); INSERT INTO "Wine_Descriptor" VALUES(186,93,5); INSERT INTO "Wine_Descriptor" VALUES(187,94,4); INSERT INTO "Wine_Descriptor" VALUES(188,94,5); INSERT INTO "Wine_Descriptor" VALUES(189,95,4); INSERT INTO "Wine_Descriptor" VALUES(190,95,5); INSERT INTO "Wine_Descriptor" VALUES(191,96,4); INSERT INTO "Wine_Descriptor" VALUES(192,96,5); INSERT INTO "Wine_Descriptor" VALUES(193,97,4); INSERT INTO "Wine_Descriptor" VALUES(194,97,5); INSERT INTO "Wine_Descriptor" VALUES(195,98,4); INSERT INTO "Wine_Descriptor" VALUES(196,98,5); INSERT INTO "Wine_Descriptor" VALUES(197,99,4); INSERT INTO "Wine_Descriptor" VALUES(198,99,5); INSERT INTO "Wine_Descriptor" VALUES(199,100,4); INSERT INTO "Wine_Descriptor" VALUES(200,100,5); INSERT INTO "Wine_Descriptor" VALUES(201,101,4); INSERT INTO "Wine_Descriptor" VALUES(202,101,5); INSERT INTO "Wine_Descriptor" VALUES(203,102,4); INSERT INTO "Wine_Descriptor" VALUES(204,102,5); INSERT INTO "Wine_Descriptor" VALUES(205,103,4); INSERT INTO "Wine_Descriptor" VALUES(206,103,5); INSERT INTO "Wine_Descriptor" VALUES(207,104,4); INSERT INTO "Wine_Descriptor" VALUES(208,104,5); INSERT INTO "Wine_Descriptor" VALUES(209,105,4); INSERT INTO "Wine_Descriptor" VALUES(210,105,5); INSERT INTO "Wine_Descriptor" VALUES(211,106,4); INSERT INTO "Wine_Descriptor" VALUES(212,106,5); INSERT INTO "Wine_Descriptor" VALUES(213,107,4); INSERT INTO "Wine_Descriptor" VALUES(214,107,5); INSERT INTO "Wine_Descriptor" VALUES(215,108,4); INSERT INTO "Wine_Descriptor" VALUES(216,108,5); INSERT INTO "Wine_Descriptor" VALUES(217,109,4); INSERT INTO "Wine_Descriptor" VALUES(218,109,5); INSERT INTO "Wine_Descriptor" VALUES(219,110,4); INSERT INTO "Wine_Descriptor" VALUES(220,110,5); INSERT INTO "Wine_Descriptor" VALUES(221,111,4); INSERT INTO "Wine_Descriptor" VALUES(222,111,5); INSERT INTO "Wine_Descriptor" VALUES(223,112,4); INSERT INTO "Wine_Descriptor" VALUES(224,112,5); INSERT INTO "Wine_Descriptor" VALUES(225,113,4); INSERT INTO "Wine_Descriptor" VALUES(226,113,5); INSERT INTO "Wine_Descriptor" VALUES(227,114,4); INSERT INTO "Wine_Descriptor" VALUES(228,114,5); INSERT INTO "Wine_Descriptor" VALUES(229,115,4); INSERT INTO "Wine_Descriptor" VALUES(230,115,5); INSERT INTO "Wine_Descriptor" VALUES(231,116,4); INSERT INTO "Wine_Descriptor" VALUES(232,116,5); INSERT INTO "Wine_Descriptor" VALUES(233,117,4); INSERT INTO "Wine_Descriptor" VALUES(234,117,5); INSERT INTO "Wine_Descriptor" VALUES(235,118,4); INSERT INTO "Wine_Descriptor" VALUES(236,118,5); INSERT INTO "Wine_Descriptor" VALUES(237,119,4); INSERT INTO "Wine_Descriptor" VALUES(238,119,5); INSERT INTO "Wine_Descriptor" VALUES(239,120,4); INSERT INTO "Wine_Descriptor" VALUES(240,120,5); INSERT INTO "Wine_Descriptor" VALUES(241,121,4); INSERT INTO "Wine_Descriptor" VALUES(242,121,5); INSERT INTO "Wine_Descriptor" VALUES(243,122,4); INSERT INTO "Wine_Descriptor" VALUES(244,122,5); INSERT INTO "Wine_Descriptor" VALUES(245,123,4); INSERT INTO "Wine_Descriptor" VALUES(246,123,5); INSERT INTO "Wine_Descriptor" VALUES(247,124,4); INSERT INTO "Wine_Descriptor" VALUES(248,124,5); INSERT INTO "Wine_Descriptor" VALUES(249,125,4); INSERT INTO "Wine_Descriptor" VALUES(250,125,5); INSERT INTO "Wine_Descriptor" VALUES(251,126,4); INSERT INTO "Wine_Descriptor" VALUES(252,126,5); INSERT INTO "Wine_Descriptor" VALUES(253,127,4); INSERT INTO "Wine_Descriptor" VALUES(254,127,5); INSERT INTO "Wine_Descriptor" VALUES(255,128,4); INSERT INTO "Wine_Descriptor" VALUES(256,128,5); INSERT INTO "Wine_Descriptor" VALUES(257,129,4); INSERT INTO "Wine_Descriptor" VALUES(258,129,5); INSERT INTO "Wine_Descriptor" VALUES(259,130,4); INSERT INTO "Wine_Descriptor" VALUES(260,130,5); INSERT INTO "Wine_Descriptor" VALUES(261,131,4); INSERT INTO "Wine_Descriptor" VALUES(262,131,5); INSERT INTO "Wine_Descriptor" VALUES(263,132,4); INSERT INTO "Wine_Descriptor" VALUES(264,132,5); INSERT INTO "Wine_Descriptor" VALUES(265,133,4); INSERT INTO "Wine_Descriptor" VALUES(266,133,5); INSERT INTO "Wine_Descriptor" VALUES(267,134,4); INSERT INTO "Wine_Descriptor" VALUES(268,134,5); INSERT INTO "Wine_Descriptor" VALUES(269,135,4); INSERT INTO "Wine_Descriptor" VALUES(270,135,5); INSERT INTO "Wine_Descriptor" VALUES(271,136,4); INSERT INTO "Wine_Descriptor" VALUES(272,136,5); INSERT INTO "Wine_Descriptor" VALUES(273,137,4); INSERT INTO "Wine_Descriptor" VALUES(274,137,5); INSERT INTO "Wine_Descriptor" VALUES(275,138,4); INSERT INTO "Wine_Descriptor" VALUES(276,138,5); INSERT INTO "Wine_Descriptor" VALUES(277,139,4); INSERT INTO "Wine_Descriptor" VALUES(278,139,5); INSERT INTO "Wine_Descriptor" VALUES(279,140,4); INSERT INTO "Wine_Descriptor" VALUES(280,140,5); INSERT INTO "Wine_Descriptor" VALUES(281,141,4); INSERT INTO "Wine_Descriptor" VALUES(282,141,5); INSERT INTO "Wine_Descriptor" VALUES(283,142,4); INSERT INTO "Wine_Descriptor" VALUES(284,142,5); INSERT INTO "Wine_Descriptor" VALUES(285,143,4); INSERT INTO "Wine_Descriptor" VALUES(286,143,5); INSERT INTO "Wine_Descriptor" VALUES(287,144,4); INSERT INTO "Wine_Descriptor" VALUES(288,144,5); INSERT INTO "Wine_Descriptor" VALUES(289,145,4); INSERT INTO "Wine_Descriptor" VALUES(290,145,5); INSERT INTO "Wine_Descriptor" VALUES(291,146,4); INSERT INTO "Wine_Descriptor" VALUES(292,146,5); INSERT INTO "Wine_Descriptor" VALUES(293,147,4); INSERT INTO "Wine_Descriptor" VALUES(294,147,5); INSERT INTO "Wine_Descriptor" VALUES(295,148,4); INSERT INTO "Wine_Descriptor" VALUES(296,148,5); INSERT INTO "Wine_Descriptor" VALUES(297,149,4); INSERT INTO "Wine_Descriptor" VALUES(298,149,5); INSERT INTO "Wine_Descriptor" VALUES(299,150,4); INSERT INTO "Wine_Descriptor" VALUES(300,150,5); INSERT INTO "Wine_Descriptor" VALUES(301,151,4); INSERT INTO "Wine_Descriptor" VALUES(302,151,5); INSERT INTO "Wine_Descriptor" VALUES(303,152,4); INSERT INTO "Wine_Descriptor" VALUES(304,152,5); INSERT INTO "Wine_Descriptor" VALUES(305,153,4); INSERT INTO "Wine_Descriptor" VALUES(306,153,5); INSERT INTO "Wine_Descriptor" VALUES(307,154,4); INSERT INTO "Wine_Descriptor" VALUES(308,154,5); INSERT INTO "Wine_Descriptor" VALUES(309,155,4); INSERT INTO "Wine_Descriptor" VALUES(310,155,5); INSERT INTO "Wine_Descriptor" VALUES(311,156,4); INSERT INTO "Wine_Descriptor" VALUES(312,156,5); INSERT INTO "Wine_Descriptor" VALUES(313,157,4); INSERT INTO "Wine_Descriptor" VALUES(314,157,5); INSERT INTO "Wine_Descriptor" VALUES(315,158,4); INSERT INTO "Wine_Descriptor" VALUES(316,158,5); INSERT INTO "Wine_Descriptor" VALUES(317,159,4); INSERT INTO "Wine_Descriptor" VALUES(318,159,5); INSERT INTO "Wine_Descriptor" VALUES(319,160,4); INSERT INTO "Wine_Descriptor" VALUES(320,160,5); INSERT INTO "Wine_Descriptor" VALUES(321,161,4); INSERT INTO "Wine_Descriptor" VALUES(322,161,5); INSERT INTO "Wine_Descriptor" VALUES(323,162,4); INSERT INTO "Wine_Descriptor" VALUES(324,162,5); INSERT INTO "Wine_Descriptor" VALUES(325,163,4); INSERT INTO "Wine_Descriptor" VALUES(326,163,5); INSERT INTO "Wine_Descriptor" VALUES(327,164,4); INSERT INTO "Wine_Descriptor" VALUES(328,164,5); INSERT INTO "Wine_Descriptor" VALUES(329,165,4); INSERT INTO "Wine_Descriptor" VALUES(330,165,5); INSERT INTO "Wine_Descriptor" VALUES(331,166,4); INSERT INTO "Wine_Descriptor" VALUES(332,166,5); INSERT INTO "Wine_Descriptor" VALUES(333,167,4); INSERT INTO "Wine_Descriptor" VALUES(334,167,5); INSERT INTO "Wine_Descriptor" VALUES(335,168,4); INSERT INTO "Wine_Descriptor" VALUES(336,168,5); INSERT INTO "Wine_Descriptor" VALUES(337,169,4); INSERT INTO "Wine_Descriptor" VALUES(338,169,5); INSERT INTO "Wine_Descriptor" VALUES(339,170,4); INSERT INTO "Wine_Descriptor" VALUES(340,170,5); INSERT INTO "Wine_Descriptor" VALUES(341,171,4); INSERT INTO "Wine_Descriptor" VALUES(342,171,5); INSERT INTO "Wine_Descriptor" VALUES(343,172,4); INSERT INTO "Wine_Descriptor" VALUES(344,172,5); INSERT INTO "Wine_Descriptor" VALUES(345,173,4); INSERT INTO "Wine_Descriptor" VALUES(346,173,5); INSERT INTO "Wine_Descriptor" VALUES(347,174,4); INSERT INTO "Wine_Descriptor" VALUES(348,174,5); INSERT INTO "Wine_Descriptor" VALUES(349,175,4); INSERT INTO "Wine_Descriptor" VALUES(350,175,5); INSERT INTO "Wine_Descriptor" VALUES(351,176,4); INSERT INTO "Wine_Descriptor" VALUES(352,176,5); INSERT INTO "Wine_Descriptor" VALUES(353,177,4); INSERT INTO "Wine_Descriptor" VALUES(354,177,5); INSERT INTO "Wine_Descriptor" VALUES(355,178,4); INSERT INTO "Wine_Descriptor" VALUES(356,178,5); INSERT INTO "Wine_Descriptor" VALUES(357,179,4); INSERT INTO "Wine_Descriptor" VALUES(358,179,5); INSERT INTO "Wine_Descriptor" VALUES(359,180,4); INSERT INTO "Wine_Descriptor" VALUES(360,180,5); INSERT INTO "Wine_Descriptor" VALUES(361,181,4); INSERT INTO "Wine_Descriptor" VALUES(362,181,5); INSERT INTO "Wine_Descriptor" VALUES(363,182,4); INSERT INTO "Wine_Descriptor" VALUES(364,182,5); INSERT INTO "Wine_Descriptor" VALUES(365,183,4); INSERT INTO "Wine_Descriptor" VALUES(366,183,5); INSERT INTO "Wine_Descriptor" VALUES(367,184,4); INSERT INTO "Wine_Descriptor" VALUES(368,184,5); INSERT INTO "Wine_Descriptor" VALUES(369,185,4); INSERT INTO "Wine_Descriptor" VALUES(370,185,5); INSERT INTO "Wine_Descriptor" VALUES(371,186,4); INSERT INTO "Wine_Descriptor" VALUES(372,186,5); INSERT INTO "Wine_Descriptor" VALUES(373,187,4); INSERT INTO "Wine_Descriptor" VALUES(374,187,5); INSERT INTO "Wine_Descriptor" VALUES(375,188,4); INSERT INTO "Wine_Descriptor" VALUES(376,188,5); INSERT INTO "Wine_Descriptor" VALUES(377,189,4); INSERT INTO "Wine_Descriptor" VALUES(378,189,5); INSERT INTO "Wine_Descriptor" VALUES(379,190,4); INSERT INTO "Wine_Descriptor" VALUES(380,190,5); INSERT INTO "Wine_Descriptor" VALUES(381,191,4); INSERT INTO "Wine_Descriptor" VALUES(382,191,5); INSERT INTO "Wine_Descriptor" VALUES(383,192,4); INSERT INTO "Wine_Descriptor" VALUES(384,192,5); INSERT INTO "Wine_Descriptor" VALUES(385,193,4); INSERT INTO "Wine_Descriptor" VALUES(386,193,5); INSERT INTO "Wine_Descriptor" VALUES(387,194,4); INSERT INTO "Wine_Descriptor" VALUES(388,194,5); INSERT INTO "Wine_Descriptor" VALUES(389,195,4); INSERT INTO "Wine_Descriptor" VALUES(390,195,5); INSERT INTO "Wine_Descriptor" VALUES(391,196,4); INSERT INTO "Wine_Descriptor" VALUES(392,196,5); INSERT INTO "Wine_Descriptor" VALUES(393,197,4); INSERT INTO "Wine_Descriptor" VALUES(394,197,5); INSERT INTO "Wine_Descriptor" VALUES(395,198,4); INSERT INTO "Wine_Descriptor" VALUES(396,198,5); INSERT INTO "Wine_Descriptor" VALUES(397,199,4); INSERT INTO "Wine_Descriptor" VALUES(398,199,5); INSERT INTO "Wine_Descriptor" VALUES(399,200,4); INSERT INTO "Wine_Descriptor" VALUES(400,200,5); INSERT INTO "Wine_Descriptor" VALUES(401,201,4); INSERT INTO "Wine_Descriptor" VALUES(402,201,5); INSERT INTO "Wine_Descriptor" VALUES(403,202,4); INSERT INTO "Wine_Descriptor" VALUES(404,202,5); INSERT INTO "Wine_Descriptor" VALUES(405,203,4); INSERT INTO "Wine_Descriptor" VALUES(406,203,5); INSERT INTO "Wine_Descriptor" VALUES(407,204,4); INSERT INTO "Wine_Descriptor" VALUES(408,204,5); INSERT INTO "Wine_Descriptor" VALUES(409,205,4); INSERT INTO "Wine_Descriptor" VALUES(410,205,5); INSERT INTO "Wine_Descriptor" VALUES(411,206,4); INSERT INTO "Wine_Descriptor" VALUES(412,206,5); INSERT INTO "Wine_Descriptor" VALUES(413,207,4); INSERT INTO "Wine_Descriptor" VALUES(414,207,5); INSERT INTO "Wine_Descriptor" VALUES(415,208,4); INSERT INTO "Wine_Descriptor" VALUES(416,208,5); INSERT INTO "Wine_Descriptor" VALUES(417,209,4); INSERT INTO "Wine_Descriptor" VALUES(418,209,5); INSERT INTO "Wine_Descriptor" VALUES(419,210,4); INSERT INTO "Wine_Descriptor" VALUES(420,210,5); INSERT INTO "Wine_Descriptor" VALUES(421,211,4); INSERT INTO "Wine_Descriptor" VALUES(422,211,5); INSERT INTO "Wine_Descriptor" VALUES(423,212,4); INSERT INTO "Wine_Descriptor" VALUES(424,212,5); INSERT INTO "Wine_Descriptor" VALUES(425,213,4); INSERT INTO "Wine_Descriptor" VALUES(426,213,5); INSERT INTO "Wine_Descriptor" VALUES(427,214,4); INSERT INTO "Wine_Descriptor" VALUES(428,214,5); INSERT INTO "Wine_Descriptor" VALUES(429,215,4); INSERT INTO "Wine_Descriptor" VALUES(430,215,5); INSERT INTO "Wine_Descriptor" VALUES(431,216,4); INSERT INTO "Wine_Descriptor" VALUES(432,216,5); INSERT INTO "Wine_Descriptor" VALUES(433,217,4); INSERT INTO "Wine_Descriptor" VALUES(434,217,5); INSERT INTO "Wine_Descriptor" VALUES(435,218,4); INSERT INTO "Wine_Descriptor" VALUES(436,218,5); INSERT INTO "Wine_Descriptor" VALUES(437,219,4); INSERT INTO "Wine_Descriptor" VALUES(438,219,5); INSERT INTO "Wine_Descriptor" VALUES(439,220,4); INSERT INTO "Wine_Descriptor" VALUES(440,220,5); INSERT INTO "Wine_Descriptor" VALUES(441,221,4); INSERT INTO "Wine_Descriptor" VALUES(442,221,5); INSERT INTO "Wine_Descriptor" VALUES(443,222,4); INSERT INTO "Wine_Descriptor" VALUES(444,222,5); INSERT INTO "Wine_Descriptor" VALUES(445,223,4); INSERT INTO "Wine_Descriptor" VALUES(446,223,5); INSERT INTO "Wine_Descriptor" VALUES(447,224,4); INSERT INTO "Wine_Descriptor" VALUES(448,224,5); INSERT INTO "Wine_Descriptor" VALUES(449,225,4); INSERT INTO "Wine_Descriptor" VALUES(450,225,5); INSERT INTO "Wine_Descriptor" VALUES(451,226,4); INSERT INTO "Wine_Descriptor" VALUES(452,226,5); INSERT INTO "Wine_Descriptor" VALUES(453,227,4); INSERT INTO "Wine_Descriptor" VALUES(454,227,5); INSERT INTO "Wine_Descriptor" VALUES(455,228,4); INSERT INTO "Wine_Descriptor" VALUES(456,228,5); INSERT INTO "Wine_Descriptor" VALUES(457,229,4); INSERT INTO "Wine_Descriptor" VALUES(458,229,5); INSERT INTO "Wine_Descriptor" VALUES(459,230,4); INSERT INTO "Wine_Descriptor" VALUES(460,230,5); INSERT INTO "Wine_Descriptor" VALUES(461,231,4); INSERT INTO "Wine_Descriptor" VALUES(462,231,5); INSERT INTO "Wine_Descriptor" VALUES(463,232,4); INSERT INTO "Wine_Descriptor" VALUES(464,232,5); INSERT INTO "Wine_Descriptor" VALUES(465,233,4); INSERT INTO "Wine_Descriptor" VALUES(466,233,5); INSERT INTO "Wine_Descriptor" VALUES(467,234,4); INSERT INTO "Wine_Descriptor" VALUES(468,234,5); INSERT INTO "Wine_Descriptor" VALUES(469,235,4); INSERT INTO "Wine_Descriptor" VALUES(470,235,5); INSERT INTO "Wine_Descriptor" VALUES(471,236,4); INSERT INTO "Wine_Descriptor" VALUES(472,236,5); INSERT INTO "Wine_Descriptor" VALUES(473,237,4); INSERT INTO "Wine_Descriptor" VALUES(474,237,5); INSERT INTO "Wine_Descriptor" VALUES(475,238,4); INSERT INTO "Wine_Descriptor" VALUES(476,238,5); INSERT INTO "Wine_Descriptor" VALUES(477,239,4); INSERT INTO "Wine_Descriptor" VALUES(478,239,5); INSERT INTO "Wine_Descriptor" VALUES(479,240,4); INSERT INTO "Wine_Descriptor" VALUES(480,240,5); INSERT INTO "Wine_Descriptor" VALUES(481,241,4); INSERT INTO "Wine_Descriptor" VALUES(482,241,5); INSERT INTO "Wine_Descriptor" VALUES(483,242,4); INSERT INTO "Wine_Descriptor" VALUES(484,242,5); INSERT INTO "Wine_Descriptor" VALUES(485,243,4); INSERT INTO "Wine_Descriptor" VALUES(486,243,5); INSERT INTO "Wine_Descriptor" VALUES(487,244,4); INSERT INTO "Wine_Descriptor" VALUES(488,244,5); INSERT INTO "Wine_Descriptor" VALUES(489,245,4); INSERT INTO "Wine_Descriptor" VALUES(490,245,5); INSERT INTO "Wine_Descriptor" VALUES(491,246,4); INSERT INTO "Wine_Descriptor" VALUES(492,246,5); INSERT INTO "Wine_Descriptor" VALUES(493,247,4); INSERT INTO "Wine_Descriptor" VALUES(494,247,5); INSERT INTO "Wine_Descriptor" VALUES(495,248,4); INSERT INTO "Wine_Descriptor" VALUES(496,248,5); INSERT INTO "Wine_Descriptor" VALUES(497,249,4); INSERT INTO "Wine_Descriptor" VALUES(498,249,5); INSERT INTO "Wine_Descriptor" VALUES(499,250,4); INSERT INTO "Wine_Descriptor" VALUES(500,250,5); INSERT INTO "Wine_Descriptor" VALUES(501,251,4); INSERT INTO "Wine_Descriptor" VALUES(502,251,5); INSERT INTO "Wine_Descriptor" VALUES(503,252,4); INSERT INTO "Wine_Descriptor" VALUES(504,252,5); INSERT INTO "Wine_Descriptor" VALUES(505,253,4); INSERT INTO "Wine_Descriptor" VALUES(506,253,5); INSERT INTO "Wine_Descriptor" VALUES(507,254,4); INSERT INTO "Wine_Descriptor" VALUES(508,254,5); INSERT INTO "Wine_Descriptor" VALUES(509,255,4); INSERT INTO "Wine_Descriptor" VALUES(510,255,5); INSERT INTO "Wine_Descriptor" VALUES(511,256,4); INSERT INTO "Wine_Descriptor" VALUES(512,256,5); INSERT INTO "Wine_Descriptor" VALUES(513,257,4); INSERT INTO "Wine_Descriptor" VALUES(514,257,5); INSERT INTO "Wine_Descriptor" VALUES(515,258,4); INSERT INTO "Wine_Descriptor" VALUES(516,258,5); INSERT INTO "Wine_Descriptor" VALUES(517,259,4); INSERT INTO "Wine_Descriptor" VALUES(518,259,5); INSERT INTO "Wine_Descriptor" VALUES(519,260,4); INSERT INTO "Wine_Descriptor" VALUES(520,260,5); INSERT INTO "Wine_Descriptor" VALUES(521,261,4); INSERT INTO "Wine_Descriptor" VALUES(522,261,5); INSERT INTO "Wine_Descriptor" VALUES(523,262,4); INSERT INTO "Wine_Descriptor" VALUES(524,262,5); INSERT INTO "Wine_Descriptor" VALUES(525,263,4); INSERT INTO "Wine_Descriptor" VALUES(526,263,5); INSERT INTO "Wine_Descriptor" VALUES(527,264,4); INSERT INTO "Wine_Descriptor" VALUES(528,264,5); INSERT INTO "Wine_Descriptor" VALUES(529,265,4); INSERT INTO "Wine_Descriptor" VALUES(530,265,5); INSERT INTO "Wine_Descriptor" VALUES(531,266,4); INSERT INTO "Wine_Descriptor" VALUES(532,266,5); INSERT INTO "Wine_Descriptor" VALUES(533,267,4); INSERT INTO "Wine_Descriptor" VALUES(534,267,5); INSERT INTO "Wine_Descriptor" VALUES(535,268,4); INSERT INTO "Wine_Descriptor" VALUES(536,268,5); INSERT INTO "Wine_Descriptor" VALUES(537,269,4); INSERT INTO "Wine_Descriptor" VALUES(538,269,5); INSERT INTO "Wine_Descriptor" VALUES(539,270,4); INSERT INTO "Wine_Descriptor" VALUES(540,270,5); INSERT INTO "Wine_Descriptor" VALUES(541,271,4); INSERT INTO "Wine_Descriptor" VALUES(542,271,5); INSERT INTO "Wine_Descriptor" VALUES(543,272,4); INSERT INTO "Wine_Descriptor" VALUES(544,272,5); INSERT INTO "Wine_Descriptor" VALUES(545,273,4); INSERT INTO "Wine_Descriptor" VALUES(546,273,5); INSERT INTO "Wine_Descriptor" VALUES(547,274,4); INSERT INTO "Wine_Descriptor" VALUES(548,274,5); INSERT INTO "Wine_Descriptor" VALUES(549,275,4); INSERT INTO "Wine_Descriptor" VALUES(550,275,5); INSERT INTO "Wine_Descriptor" VALUES(551,276,4); INSERT INTO "Wine_Descriptor" VALUES(552,276,5); INSERT INTO "Wine_Descriptor" VALUES(553,277,4); INSERT INTO "Wine_Descriptor" VALUES(554,277,5); INSERT INTO "Wine_Descriptor" VALUES(555,278,4); INSERT INTO "Wine_Descriptor" VALUES(556,278,5); INSERT INTO "Wine_Descriptor" VALUES(557,279,4); INSERT INTO "Wine_Descriptor" VALUES(558,279,5); INSERT INTO "Wine_Descriptor" VALUES(559,280,4); INSERT INTO "Wine_Descriptor" VALUES(560,280,5); INSERT INTO "Wine_Descriptor" VALUES(561,281,4); INSERT INTO "Wine_Descriptor" VALUES(562,281,5); INSERT INTO "Wine_Descriptor" VALUES(563,282,4); INSERT INTO "Wine_Descriptor" VALUES(564,282,5); INSERT INTO "Wine_Descriptor" VALUES(565,283,4); INSERT INTO "Wine_Descriptor" VALUES(566,283,5); INSERT INTO "Wine_Descriptor" VALUES(567,284,4); INSERT INTO "Wine_Descriptor" VALUES(568,284,5); INSERT INTO "Wine_Descriptor" VALUES(569,285,4); INSERT INTO "Wine_Descriptor" VALUES(570,285,5); INSERT INTO "Wine_Descriptor" VALUES(571,286,4); INSERT INTO "Wine_Descriptor" VALUES(572,286,5); INSERT INTO "Wine_Descriptor" VALUES(573,287,4); INSERT INTO "Wine_Descriptor" VALUES(574,287,5); INSERT INTO "Wine_Descriptor" VALUES(575,288,4); INSERT INTO "Wine_Descriptor" VALUES(576,288,5); INSERT INTO "Wine_Descriptor" VALUES(577,289,4); INSERT INTO "Wine_Descriptor" VALUES(578,289,5); INSERT INTO "Wine_Descriptor" VALUES(579,290,4); INSERT INTO "Wine_Descriptor" VALUES(580,290,5); INSERT INTO "Wine_Descriptor" VALUES(581,291,4); INSERT INTO "Wine_Descriptor" VALUES(582,291,5); INSERT INTO "Wine_Descriptor" VALUES(583,292,4); INSERT INTO "Wine_Descriptor" VALUES(584,292,5); INSERT INTO "Wine_Descriptor" VALUES(585,293,4); INSERT INTO "Wine_Descriptor" VALUES(586,293,5); INSERT INTO "Wine_Descriptor" VALUES(587,294,4); INSERT INTO "Wine_Descriptor" VALUES(588,294,5); INSERT INTO "Wine_Descriptor" VALUES(589,295,4); INSERT INTO "Wine_Descriptor" VALUES(590,295,5); INSERT INTO "Wine_Descriptor" VALUES(591,296,4); INSERT INTO "Wine_Descriptor" VALUES(592,296,5); INSERT INTO "Wine_Descriptor" VALUES(593,297,4); INSERT INTO "Wine_Descriptor" VALUES(594,297,5); INSERT INTO "Wine_Descriptor" VALUES(595,298,4); INSERT INTO "Wine_Descriptor" VALUES(596,298,5); INSERT INTO "Wine_Descriptor" VALUES(597,299,4); INSERT INTO "Wine_Descriptor" VALUES(598,299,5); INSERT INTO "Wine_Descriptor" VALUES(599,300,4); INSERT INTO "Wine_Descriptor" VALUES(600,300,5); INSERT INTO "Wine_Descriptor" VALUES(601,301,4); INSERT INTO "Wine_Descriptor" VALUES(602,301,5); INSERT INTO "Wine_Descriptor" VALUES(603,302,4); INSERT INTO "Wine_Descriptor" VALUES(604,302,5); INSERT INTO "Wine_Descriptor" VALUES(605,303,4); INSERT INTO "Wine_Descriptor" VALUES(606,303,5); INSERT INTO "Wine_Descriptor" VALUES(607,304,4); INSERT INTO "Wine_Descriptor" VALUES(608,304,5); INSERT INTO "Wine_Descriptor" VALUES(609,305,4); INSERT INTO "Wine_Descriptor" VALUES(610,305,5); INSERT INTO "Wine_Descriptor" VALUES(611,306,4); INSERT INTO "Wine_Descriptor" VALUES(612,306,5); INSERT INTO "Wine_Descriptor" VALUES(613,307,4); INSERT INTO "Wine_Descriptor" VALUES(614,307,5); INSERT INTO "Wine_Descriptor" VALUES(615,308,4); INSERT INTO "Wine_Descriptor" VALUES(616,308,5); INSERT INTO "Wine_Descriptor" VALUES(617,309,4); INSERT INTO "Wine_Descriptor" VALUES(618,309,5); INSERT INTO "Wine_Descriptor" VALUES(619,310,4); INSERT INTO "Wine_Descriptor" VALUES(620,310,5); INSERT INTO "Wine_Descriptor" VALUES(621,311,4); INSERT INTO "Wine_Descriptor" VALUES(622,311,5); INSERT INTO "Wine_Descriptor" VALUES(623,312,4); INSERT INTO "Wine_Descriptor" VALUES(624,312,5); INSERT INTO "Wine_Descriptor" VALUES(625,313,4); INSERT INTO "Wine_Descriptor" VALUES(626,313,5); INSERT INTO "Wine_Descriptor" VALUES(627,314,0); INSERT INTO "Wine_Descriptor" VALUES(628,314,8); INSERT INTO "Wine_Descriptor" VALUES(629,315,0); INSERT INTO "Wine_Descriptor" VALUES(630,315,8); INSERT INTO "Wine_Descriptor" VALUES(631,316,0); INSERT INTO "Wine_Descriptor" VALUES(632,316,8); INSERT INTO "Wine_Descriptor" VALUES(633,317,0); INSERT INTO "Wine_Descriptor" VALUES(634,317,8); INSERT INTO "Wine_Descriptor" VALUES(635,318,0); INSERT INTO "Wine_Descriptor" VALUES(636,318,8); INSERT INTO "Wine_Descriptor" VALUES(637,319,0); INSERT INTO "Wine_Descriptor" VALUES(638,319,8); INSERT INTO "Wine_Descriptor" VALUES(639,320,0); INSERT INTO "Wine_Descriptor" VALUES(640,320,8); INSERT INTO "Wine_Descriptor" VALUES(641,321,0); INSERT INTO "Wine_Descriptor" VALUES(642,321,8); INSERT INTO "Wine_Descriptor" VALUES(643,322,0); INSERT INTO "Wine_Descriptor" VALUES(644,322,8); INSERT INTO "Wine_Descriptor" VALUES(645,323,0); INSERT INTO "Wine_Descriptor" VALUES(646,323,8); INSERT INTO "Wine_Descriptor" VALUES(647,324,0); INSERT INTO "Wine_Descriptor" VALUES(648,324,8); INSERT INTO "Wine_Descriptor" VALUES(649,325,0); INSERT INTO "Wine_Descriptor" VALUES(650,325,8); INSERT INTO "Wine_Descriptor" VALUES(651,326,0); INSERT INTO "Wine_Descriptor" VALUES(652,326,8); INSERT INTO "Wine_Descriptor" VALUES(653,327,0); INSERT INTO "Wine_Descriptor" VALUES(654,327,8); INSERT INTO "Wine_Descriptor" VALUES(655,328,0); INSERT INTO "Wine_Descriptor" VALUES(656,328,8); INSERT INTO "Wine_Descriptor" VALUES(657,329,0); INSERT INTO "Wine_Descriptor" VALUES(658,329,8); INSERT INTO "Wine_Descriptor" VALUES(659,330,0); INSERT INTO "Wine_Descriptor" VALUES(660,330,8); INSERT INTO "Wine_Descriptor" VALUES(661,331,0); INSERT INTO "Wine_Descriptor" VALUES(662,331,8); INSERT INTO "Wine_Descriptor" VALUES(663,332,0); INSERT INTO "Wine_Descriptor" VALUES(664,332,8); INSERT INTO "Wine_Descriptor" VALUES(665,333,0); INSERT INTO "Wine_Descriptor" VALUES(666,333,8); INSERT INTO "Wine_Descriptor" VALUES(667,334,0); INSERT INTO "Wine_Descriptor" VALUES(668,334,8); INSERT INTO "Wine_Descriptor" VALUES(669,335,0); INSERT INTO "Wine_Descriptor" VALUES(670,335,8); INSERT INTO "Wine_Descriptor" VALUES(671,336,0); INSERT INTO "Wine_Descriptor" VALUES(672,336,8); INSERT INTO "Wine_Descriptor" VALUES(673,337,0); INSERT INTO "Wine_Descriptor" VALUES(674,337,8); INSERT INTO "Wine_Descriptor" VALUES(675,338,0); INSERT INTO "Wine_Descriptor" VALUES(676,338,8); INSERT INTO "Wine_Descriptor" VALUES(677,339,0); INSERT INTO "Wine_Descriptor" VALUES(678,339,8); INSERT INTO "Wine_Descriptor" VALUES(679,340,0); INSERT INTO "Wine_Descriptor" VALUES(680,340,8); INSERT INTO "Wine_Descriptor" VALUES(681,341,0); INSERT INTO "Wine_Descriptor" VALUES(682,341,8); INSERT INTO "Wine_Descriptor" VALUES(683,342,0); INSERT INTO "Wine_Descriptor" VALUES(684,342,8); INSERT INTO "Wine_Descriptor" VALUES(685,343,0); INSERT INTO "Wine_Descriptor" VALUES(686,343,8); INSERT INTO "Wine_Descriptor" VALUES(687,344,0); INSERT INTO "Wine_Descriptor" VALUES(688,344,8); INSERT INTO "Wine_Descriptor" VALUES(689,345,0); INSERT INTO "Wine_Descriptor" VALUES(690,345,8); INSERT INTO "Wine_Descriptor" VALUES(691,346,0); INSERT INTO "Wine_Descriptor" VALUES(692,346,8); INSERT INTO "Wine_Descriptor" VALUES(693,347,0); INSERT INTO "Wine_Descriptor" VALUES(694,347,8); INSERT INTO "Wine_Descriptor" VALUES(695,348,0); INSERT INTO "Wine_Descriptor" VALUES(696,348,8); INSERT INTO "Wine_Descriptor" VALUES(697,349,0); INSERT INTO "Wine_Descriptor" VALUES(698,349,8); INSERT INTO "Wine_Descriptor" VALUES(699,350,0); INSERT INTO "Wine_Descriptor" VALUES(700,350,8); INSERT INTO "Wine_Descriptor" VALUES(701,351,0); INSERT INTO "Wine_Descriptor" VALUES(702,351,8); INSERT INTO "Wine_Descriptor" VALUES(703,352,0); INSERT INTO "Wine_Descriptor" VALUES(704,352,8); INSERT INTO "Wine_Descriptor" VALUES(705,353,0); INSERT INTO "Wine_Descriptor" VALUES(706,353,8); INSERT INTO "Wine_Descriptor" VALUES(707,354,0); INSERT INTO "Wine_Descriptor" VALUES(708,354,8); INSERT INTO "Wine_Descriptor" VALUES(709,355,0); INSERT INTO "Wine_Descriptor" VALUES(710,355,8); INSERT INTO "Wine_Descriptor" VALUES(711,356,0); INSERT INTO "Wine_Descriptor" VALUES(712,356,8); INSERT INTO "Wine_Descriptor" VALUES(713,357,0); INSERT INTO "Wine_Descriptor" VALUES(714,357,8); INSERT INTO "Wine_Descriptor" VALUES(715,358,0); INSERT INTO "Wine_Descriptor" VALUES(716,358,8); INSERT INTO "Wine_Descriptor" VALUES(717,359,0); INSERT INTO "Wine_Descriptor" VALUES(718,359,8); INSERT INTO "Wine_Descriptor" VALUES(719,360,0); INSERT INTO "Wine_Descriptor" VALUES(720,360,8); INSERT INTO "Wine_Descriptor" VALUES(721,361,0); INSERT INTO "Wine_Descriptor" VALUES(722,361,8); INSERT INTO "Wine_Descriptor" VALUES(723,362,0); INSERT INTO "Wine_Descriptor" VALUES(724,362,8); INSERT INTO "Wine_Descriptor" VALUES(725,363,0); INSERT INTO "Wine_Descriptor" VALUES(726,363,8); INSERT INTO "Wine_Descriptor" VALUES(727,364,0); INSERT INTO "Wine_Descriptor" VALUES(728,364,8); INSERT INTO "Wine_Descriptor" VALUES(729,365,0); INSERT INTO "Wine_Descriptor" VALUES(730,365,8); INSERT INTO "Wine_Descriptor" VALUES(731,366,0); INSERT INTO "Wine_Descriptor" VALUES(732,366,8); INSERT INTO "Wine_Descriptor" VALUES(733,367,0); INSERT INTO "Wine_Descriptor" VALUES(734,367,8); INSERT INTO "Wine_Descriptor" VALUES(735,368,0); INSERT INTO "Wine_Descriptor" VALUES(736,368,8); INSERT INTO "Wine_Descriptor" VALUES(737,369,0); INSERT INTO "Wine_Descriptor" VALUES(738,369,8); INSERT INTO "Wine_Descriptor" VALUES(739,370,0); INSERT INTO "Wine_Descriptor" VALUES(740,370,8); INSERT INTO "Wine_Descriptor" VALUES(741,371,0); INSERT INTO "Wine_Descriptor" VALUES(742,371,8); INSERT INTO "Wine_Descriptor" VALUES(743,372,0); INSERT INTO "Wine_Descriptor" VALUES(744,372,8); INSERT INTO "Wine_Descriptor" VALUES(745,373,0); INSERT INTO "Wine_Descriptor" VALUES(746,373,8); INSERT INTO "Wine_Descriptor" VALUES(747,374,0); INSERT INTO "Wine_Descriptor" VALUES(748,374,8); INSERT INTO "Wine_Descriptor" VALUES(749,375,0); INSERT INTO "Wine_Descriptor" VALUES(750,375,8); INSERT INTO "Wine_Descriptor" VALUES(751,376,0); INSERT INTO "Wine_Descriptor" VALUES(752,376,8); INSERT INTO "Wine_Descriptor" VALUES(753,377,0); INSERT INTO "Wine_Descriptor" VALUES(754,377,8); INSERT INTO "Wine_Descriptor" VALUES(755,378,0); INSERT INTO "Wine_Descriptor" VALUES(756,378,8); INSERT INTO "Wine_Descriptor" VALUES(757,379,0); INSERT INTO "Wine_Descriptor" VALUES(758,379,8); INSERT INTO "Wine_Descriptor" VALUES(759,380,0); INSERT INTO "Wine_Descriptor" VALUES(760,380,8); INSERT INTO "Wine_Descriptor" VALUES(761,381,0); INSERT INTO "Wine_Descriptor" VALUES(762,381,8); INSERT INTO "Wine_Descriptor" VALUES(763,382,0); INSERT INTO "Wine_Descriptor" VALUES(764,382,8); INSERT INTO "Wine_Descriptor" VALUES(765,383,0); INSERT INTO "Wine_Descriptor" VALUES(766,383,8); INSERT INTO "Wine_Descriptor" VALUES(767,384,0); INSERT INTO "Wine_Descriptor" VALUES(768,384,8); INSERT INTO "Wine_Descriptor" VALUES(769,385,0); INSERT INTO "Wine_Descriptor" VALUES(770,385,8); INSERT INTO "Wine_Descriptor" VALUES(771,386,0); INSERT INTO "Wine_Descriptor" VALUES(772,386,8); INSERT INTO "Wine_Descriptor" VALUES(773,387,0); INSERT INTO "Wine_Descriptor" VALUES(774,387,8); INSERT INTO "Wine_Descriptor" VALUES(775,388,0); INSERT INTO "Wine_Descriptor" VALUES(776,388,8); INSERT INTO "Wine_Descriptor" VALUES(777,389,0); INSERT INTO "Wine_Descriptor" VALUES(778,389,8); INSERT INTO "Wine_Descriptor" VALUES(779,390,0); INSERT INTO "Wine_Descriptor" VALUES(780,390,8); INSERT INTO "Wine_Descriptor" VALUES(781,391,0); INSERT INTO "Wine_Descriptor" VALUES(782,391,8); INSERT INTO "Wine_Descriptor" VALUES(783,392,0); INSERT INTO "Wine_Descriptor" VALUES(784,392,8); INSERT INTO "Wine_Descriptor" VALUES(785,393,0); INSERT INTO "Wine_Descriptor" VALUES(786,393,8); INSERT INTO "Wine_Descriptor" VALUES(787,394,0); INSERT INTO "Wine_Descriptor" VALUES(788,394,8); INSERT INTO "Wine_Descriptor" VALUES(789,395,0); INSERT INTO "Wine_Descriptor" VALUES(790,395,8); INSERT INTO "Wine_Descriptor" VALUES(791,396,0); INSERT INTO "Wine_Descriptor" VALUES(792,396,8); INSERT INTO "Wine_Descriptor" VALUES(793,397,0); INSERT INTO "Wine_Descriptor" VALUES(794,397,8); INSERT INTO "Wine_Descriptor" VALUES(795,398,0); INSERT INTO "Wine_Descriptor" VALUES(796,398,8); INSERT INTO "Wine_Descriptor" VALUES(797,399,0); INSERT INTO "Wine_Descriptor" VALUES(798,399,8); INSERT INTO "Wine_Descriptor" VALUES(799,400,0); INSERT INTO "Wine_Descriptor" VALUES(800,400,8); INSERT INTO "Wine_Descriptor" VALUES(801,401,0); INSERT INTO "Wine_Descriptor" VALUES(802,401,8); INSERT INTO "Wine_Descriptor" VALUES(803,402,0); INSERT INTO "Wine_Descriptor" VALUES(804,402,8); INSERT INTO "Wine_Descriptor" VALUES(805,403,0); INSERT INTO "Wine_Descriptor" VALUES(806,403,8); INSERT INTO "Wine_Descriptor" VALUES(807,404,0); INSERT INTO "Wine_Descriptor" VALUES(808,404,8); INSERT INTO "Wine_Descriptor" VALUES(809,405,0); INSERT INTO "Wine_Descriptor" VALUES(810,405,8); INSERT INTO "Wine_Descriptor" VALUES(811,406,0); INSERT INTO "Wine_Descriptor" VALUES(812,406,8); INSERT INTO "Wine_Descriptor" VALUES(813,407,0); INSERT INTO "Wine_Descriptor" VALUES(814,407,8); INSERT INTO "Wine_Descriptor" VALUES(815,408,0); INSERT INTO "Wine_Descriptor" VALUES(816,408,8); INSERT INTO "Wine_Descriptor" VALUES(817,409,0); INSERT INTO "Wine_Descriptor" VALUES(818,409,8); INSERT INTO "Wine_Descriptor" VALUES(819,410,0); INSERT INTO "Wine_Descriptor" VALUES(820,410,8); INSERT INTO "Wine_Descriptor" VALUES(821,411,0); INSERT INTO "Wine_Descriptor" VALUES(822,411,8); INSERT INTO "Wine_Descriptor" VALUES(823,412,0); INSERT INTO "Wine_Descriptor" VALUES(824,412,8); INSERT INTO "Wine_Descriptor" VALUES(825,413,0); INSERT INTO "Wine_Descriptor" VALUES(826,413,8); INSERT INTO "Wine_Descriptor" VALUES(827,414,0); INSERT INTO "Wine_Descriptor" VALUES(828,414,8); INSERT INTO "Wine_Descriptor" VALUES(829,415,0); INSERT INTO "Wine_Descriptor" VALUES(830,415,8); INSERT INTO "Wine_Descriptor" VALUES(831,416,0); INSERT INTO "Wine_Descriptor" VALUES(832,416,8); INSERT INTO "Wine_Descriptor" VALUES(833,417,0); INSERT INTO "Wine_Descriptor" VALUES(834,417,8); INSERT INTO "Wine_Descriptor" VALUES(835,418,0); INSERT INTO "Wine_Descriptor" VALUES(836,418,8); INSERT INTO "Wine_Descriptor" VALUES(837,419,0); INSERT INTO "Wine_Descriptor" VALUES(838,419,8); INSERT INTO "Wine_Descriptor" VALUES(839,420,0); INSERT INTO "Wine_Descriptor" VALUES(840,420,8); INSERT INTO "Wine_Descriptor" VALUES(841,421,0); INSERT INTO "Wine_Descriptor" VALUES(842,421,8); INSERT INTO "Wine_Descriptor" VALUES(843,422,0); INSERT INTO "Wine_Descriptor" VALUES(844,422,8); INSERT INTO "Wine_Descriptor" VALUES(845,423,0); INSERT INTO "Wine_Descriptor" VALUES(846,423,8); INSERT INTO "Wine_Descriptor" VALUES(847,424,0); INSERT INTO "Wine_Descriptor" VALUES(848,424,8); INSERT INTO "Wine_Descriptor" VALUES(849,425,0); INSERT INTO "Wine_Descriptor" VALUES(850,425,8); INSERT INTO "Wine_Descriptor" VALUES(851,426,0); INSERT INTO "Wine_Descriptor" VALUES(852,426,8); INSERT INTO "Wine_Descriptor" VALUES(853,427,0); INSERT INTO "Wine_Descriptor" VALUES(854,427,8); INSERT INTO "Wine_Descriptor" VALUES(855,428,0); INSERT INTO "Wine_Descriptor" VALUES(856,428,8); INSERT INTO "Wine_Descriptor" VALUES(857,429,0); INSERT INTO "Wine_Descriptor" VALUES(858,429,8); INSERT INTO "Wine_Descriptor" VALUES(859,430,0); INSERT INTO "Wine_Descriptor" VALUES(860,430,8); INSERT INTO "Wine_Descriptor" VALUES(861,431,0); INSERT INTO "Wine_Descriptor" VALUES(862,431,8); INSERT INTO "Wine_Descriptor" VALUES(863,432,0); INSERT INTO "Wine_Descriptor" VALUES(864,432,8); INSERT INTO "Wine_Descriptor" VALUES(865,433,0); INSERT INTO "Wine_Descriptor" VALUES(866,433,8); INSERT INTO "Wine_Descriptor" VALUES(867,434,0); INSERT INTO "Wine_Descriptor" VALUES(868,434,8); INSERT INTO "Wine_Descriptor" VALUES(869,435,0); INSERT INTO "Wine_Descriptor" VALUES(870,435,8); INSERT INTO "Wine_Descriptor" VALUES(871,436,0); INSERT INTO "Wine_Descriptor" VALUES(872,436,8); INSERT INTO "Wine_Descriptor" VALUES(873,437,0); INSERT INTO "Wine_Descriptor" VALUES(874,437,8); INSERT INTO "Wine_Descriptor" VALUES(875,438,0); INSERT INTO "Wine_Descriptor" VALUES(876,438,8); INSERT INTO "Wine_Descriptor" VALUES(877,439,0); INSERT INTO "Wine_Descriptor" VALUES(878,439,8); INSERT INTO "Wine_Descriptor" VALUES(879,440,0); INSERT INTO "Wine_Descriptor" VALUES(880,440,8); INSERT INTO "Wine_Descriptor" VALUES(881,441,0); INSERT INTO "Wine_Descriptor" VALUES(882,441,8); INSERT INTO "Wine_Descriptor" VALUES(883,442,0); INSERT INTO "Wine_Descriptor" VALUES(884,442,8); INSERT INTO "Wine_Descriptor" VALUES(885,443,0); INSERT INTO "Wine_Descriptor" VALUES(886,443,8); INSERT INTO "Wine_Descriptor" VALUES(887,444,0); INSERT INTO "Wine_Descriptor" VALUES(888,444,8); INSERT INTO "Wine_Descriptor" VALUES(889,445,0); INSERT INTO "Wine_Descriptor" VALUES(890,445,8); INSERT INTO "Wine_Descriptor" VALUES(891,446,0); INSERT INTO "Wine_Descriptor" VALUES(892,446,8); INSERT INTO "Wine_Descriptor" VALUES(893,447,0); INSERT INTO "Wine_Descriptor" VALUES(894,447,8); INSERT INTO "Wine_Descriptor" VALUES(895,448,0); INSERT INTO "Wine_Descriptor" VALUES(896,448,8); INSERT INTO "Wine_Descriptor" VALUES(897,449,0); INSERT INTO "Wine_Descriptor" VALUES(898,449,8); INSERT INTO "Wine_Descriptor" VALUES(899,450,0); INSERT INTO "Wine_Descriptor" VALUES(900,450,8); INSERT INTO "Wine_Descriptor" VALUES(901,451,0); INSERT INTO "Wine_Descriptor" VALUES(902,451,8); INSERT INTO "Wine_Descriptor" VALUES(903,452,0); INSERT INTO "Wine_Descriptor" VALUES(904,452,8); INSERT INTO "Wine_Descriptor" VALUES(905,453,0); INSERT INTO "Wine_Descriptor" VALUES(906,453,8); INSERT INTO "Wine_Descriptor" VALUES(907,454,0); INSERT INTO "Wine_Descriptor" VALUES(908,454,8); INSERT INTO "Wine_Descriptor" VALUES(909,455,0); INSERT INTO "Wine_Descriptor" VALUES(910,455,8); INSERT INTO "Wine_Descriptor" VALUES(911,456,0); INSERT INTO "Wine_Descriptor" VALUES(912,456,8); INSERT INTO "Wine_Descriptor" VALUES(913,457,0); INSERT INTO "Wine_Descriptor" VALUES(914,457,8); INSERT INTO "Wine_Descriptor" VALUES(915,458,0); INSERT INTO "Wine_Descriptor" VALUES(916,458,8); INSERT INTO "Wine_Descriptor" VALUES(917,459,0); INSERT INTO "Wine_Descriptor" VALUES(918,459,8); INSERT INTO "Wine_Descriptor" VALUES(919,460,0); INSERT INTO "Wine_Descriptor" VALUES(920,460,8); INSERT INTO "Wine_Descriptor" VALUES(921,461,0); INSERT INTO "Wine_Descriptor" VALUES(922,461,8); INSERT INTO "Wine_Descriptor" VALUES(923,462,0); INSERT INTO "Wine_Descriptor" VALUES(924,462,8); INSERT INTO "Wine_Descriptor" VALUES(925,463,0); INSERT INTO "Wine_Descriptor" VALUES(926,463,8); INSERT INTO "Wine_Descriptor" VALUES(927,464,0); INSERT INTO "Wine_Descriptor" VALUES(928,464,8); INSERT INTO "Wine_Descriptor" VALUES(929,465,0); INSERT INTO "Wine_Descriptor" VALUES(930,465,8); INSERT INTO "Wine_Descriptor" VALUES(931,466,0); INSERT INTO "Wine_Descriptor" VALUES(932,466,8); INSERT INTO "Wine_Descriptor" VALUES(933,467,0); INSERT INTO "Wine_Descriptor" VALUES(934,467,8); INSERT INTO "Wine_Descriptor" VALUES(935,468,0); INSERT INTO "Wine_Descriptor" VALUES(936,468,8); INSERT INTO "Wine_Descriptor" VALUES(937,469,0); INSERT INTO "Wine_Descriptor" VALUES(938,469,8); INSERT INTO "Wine_Descriptor" VALUES(939,470,0); INSERT INTO "Wine_Descriptor" VALUES(940,470,8); INSERT INTO "Wine_Descriptor" VALUES(941,471,0); INSERT INTO "Wine_Descriptor" VALUES(942,471,8); INSERT INTO "Wine_Descriptor" VALUES(943,472,0); INSERT INTO "Wine_Descriptor" VALUES(944,472,8); INSERT INTO "Wine_Descriptor" VALUES(945,473,0); INSERT INTO "Wine_Descriptor" VALUES(946,473,8); INSERT INTO "Wine_Descriptor" VALUES(947,474,0); INSERT INTO "Wine_Descriptor" VALUES(948,474,8); INSERT INTO "Wine_Descriptor" VALUES(949,475,0); INSERT INTO "Wine_Descriptor" VALUES(950,475,8); INSERT INTO "Wine_Descriptor" VALUES(951,476,0); INSERT INTO "Wine_Descriptor" VALUES(952,476,8); INSERT INTO "Wine_Descriptor" VALUES(953,477,0); INSERT INTO "Wine_Descriptor" VALUES(954,477,8); INSERT INTO "Wine_Descriptor" VALUES(955,478,0); INSERT INTO "Wine_Descriptor" VALUES(956,478,8); INSERT INTO "Wine_Descriptor" VALUES(957,479,0); INSERT INTO "Wine_Descriptor" VALUES(958,479,8); INSERT INTO "Wine_Descriptor" VALUES(959,480,0); INSERT INTO "Wine_Descriptor" VALUES(960,480,8); INSERT INTO "Wine_Descriptor" VALUES(961,481,0); INSERT INTO "Wine_Descriptor" VALUES(962,481,8); INSERT INTO "Wine_Descriptor" VALUES(963,482,0); INSERT INTO "Wine_Descriptor" VALUES(964,482,8); INSERT INTO "Wine_Descriptor" VALUES(965,483,0); INSERT INTO "Wine_Descriptor" VALUES(966,483,8); INSERT INTO "Wine_Descriptor" VALUES(967,484,0); INSERT INTO "Wine_Descriptor" VALUES(968,484,8); INSERT INTO "Wine_Descriptor" VALUES(969,485,0); INSERT INTO "Wine_Descriptor" VALUES(970,485,8); INSERT INTO "Wine_Descriptor" VALUES(971,486,0); INSERT INTO "Wine_Descriptor" VALUES(972,486,8); INSERT INTO "Wine_Descriptor" VALUES(973,487,0); INSERT INTO "Wine_Descriptor" VALUES(974,487,8); INSERT INTO "Wine_Descriptor" VALUES(975,488,0); INSERT INTO "Wine_Descriptor" VALUES(976,488,8); INSERT INTO "Wine_Descriptor" VALUES(977,489,0); INSERT INTO "Wine_Descriptor" VALUES(978,489,8); INSERT INTO "Wine_Descriptor" VALUES(979,490,0); INSERT INTO "Wine_Descriptor" VALUES(980,490,8); INSERT INTO "Wine_Descriptor" VALUES(981,491,0); INSERT INTO "Wine_Descriptor" VALUES(982,491,8); INSERT INTO "Wine_Descriptor" VALUES(983,492,0); INSERT INTO "Wine_Descriptor" VALUES(984,492,8); INSERT INTO "Wine_Descriptor" VALUES(985,493,0); INSERT INTO "Wine_Descriptor" VALUES(986,493,8); INSERT INTO "Wine_Descriptor" VALUES(987,494,0); INSERT INTO "Wine_Descriptor" VALUES(988,494,8); INSERT INTO "Wine_Descriptor" VALUES(989,495,0); INSERT INTO "Wine_Descriptor" VALUES(990,495,8); INSERT INTO "Wine_Descriptor" VALUES(991,496,0); INSERT INTO "Wine_Descriptor" VALUES(992,496,8); INSERT INTO "Wine_Descriptor" VALUES(993,497,0); INSERT INTO "Wine_Descriptor" VALUES(994,497,8); INSERT INTO "Wine_Descriptor" VALUES(995,498,0); INSERT INTO "Wine_Descriptor" VALUES(996,498,8); INSERT INTO "Wine_Descriptor" VALUES(997,499,0); INSERT INTO "Wine_Descriptor" VALUES(998,499,8); INSERT INTO "Wine_Descriptor" VALUES(999,500,0); INSERT INTO "Wine_Descriptor" VALUES(1000,500,8); INSERT INTO "Wine_Descriptor" VALUES(1001,501,0); INSERT INTO "Wine_Descriptor" VALUES(1002,501,8); INSERT INTO "Wine_Descriptor" VALUES(1003,502,0); INSERT INTO "Wine_Descriptor" VALUES(1004,502,8); INSERT INTO "Wine_Descriptor" VALUES(1005,503,0); INSERT INTO "Wine_Descriptor" VALUES(1006,503,8); INSERT INTO "Wine_Descriptor" VALUES(1007,504,0); INSERT INTO "Wine_Descriptor" VALUES(1008,504,8); INSERT INTO "Wine_Descriptor" VALUES(1009,505,0); INSERT INTO "Wine_Descriptor" VALUES(1010,505,8); INSERT INTO "Wine_Descriptor" VALUES(1011,506,0); INSERT INTO "Wine_Descriptor" VALUES(1012,506,8); INSERT INTO "Wine_Descriptor" VALUES(1013,507,0); INSERT INTO "Wine_Descriptor" VALUES(1014,507,8); INSERT INTO "Wine_Descriptor" VALUES(1015,508,0); INSERT INTO "Wine_Descriptor" VALUES(1016,508,8); INSERT INTO "Wine_Descriptor" VALUES(1017,509,0); INSERT INTO "Wine_Descriptor" VALUES(1018,509,8); INSERT INTO "Wine_Descriptor" VALUES(1019,510,0); INSERT INTO "Wine_Descriptor" VALUES(1020,510,8); INSERT INTO "Wine_Descriptor" VALUES(1021,511,0); INSERT INTO "Wine_Descriptor" VALUES(1022,511,8); INSERT INTO "Wine_Descriptor" VALUES(1023,512,0); INSERT INTO "Wine_Descriptor" VALUES(1024,512,8); INSERT INTO "Wine_Descriptor" VALUES(1025,513,0); INSERT INTO "Wine_Descriptor" VALUES(1026,513,8); INSERT INTO "Wine_Descriptor" VALUES(1027,514,0); INSERT INTO "Wine_Descriptor" VALUES(1028,514,8); INSERT INTO "Wine_Descriptor" VALUES(1029,515,0); INSERT INTO "Wine_Descriptor" VALUES(1030,515,8); INSERT INTO "Wine_Descriptor" VALUES(1031,516,0); INSERT INTO "Wine_Descriptor" VALUES(1032,516,8); INSERT INTO "Wine_Descriptor" VALUES(1033,517,0); INSERT INTO "Wine_Descriptor" VALUES(1034,517,8); INSERT INTO "Wine_Descriptor" VALUES(1035,518,0); INSERT INTO "Wine_Descriptor" VALUES(1036,518,8); INSERT INTO "Wine_Descriptor" VALUES(1037,519,0); INSERT INTO "Wine_Descriptor" VALUES(1038,519,8); INSERT INTO "Wine_Descriptor" VALUES(1039,520,0); INSERT INTO "Wine_Descriptor" VALUES(1040,520,8); INSERT INTO "Wine_Descriptor" VALUES(1041,521,0); INSERT INTO "Wine_Descriptor" VALUES(1042,521,8); INSERT INTO "Wine_Descriptor" VALUES(1043,522,0); INSERT INTO "Wine_Descriptor" VALUES(1044,522,8); INSERT INTO "Wine_Descriptor" VALUES(1045,523,0); INSERT INTO "Wine_Descriptor" VALUES(1046,523,8); INSERT INTO "Wine_Descriptor" VALUES(1047,524,0); INSERT INTO "Wine_Descriptor" VALUES(1048,524,8); INSERT INTO "Wine_Descriptor" VALUES(1049,525,0); INSERT INTO "Wine_Descriptor" VALUES(1050,525,8); INSERT INTO "Wine_Descriptor" VALUES(1051,526,0); INSERT INTO "Wine_Descriptor" VALUES(1052,526,8); INSERT INTO "Wine_Descriptor" VALUES(1053,527,0); INSERT INTO "Wine_Descriptor" VALUES(1054,527,8); INSERT INTO "Wine_Descriptor" VALUES(1055,528,0); INSERT INTO "Wine_Descriptor" VALUES(1056,528,8); INSERT INTO "Wine_Descriptor" VALUES(1057,529,0); INSERT INTO "Wine_Descriptor" VALUES(1058,529,8); INSERT INTO "Wine_Descriptor" VALUES(1059,530,0); INSERT INTO "Wine_Descriptor" VALUES(1060,530,8); INSERT INTO "Wine_Descriptor" VALUES(1061,531,0); INSERT INTO "Wine_Descriptor" VALUES(1062,531,8); INSERT INTO "Wine_Descriptor" VALUES(1063,532,0); INSERT INTO "Wine_Descriptor" VALUES(1064,532,8); INSERT INTO "Wine_Descriptor" VALUES(1065,533,0); INSERT INTO "Wine_Descriptor" VALUES(1066,533,8); INSERT INTO "Wine_Descriptor" VALUES(1067,534,0); INSERT INTO "Wine_Descriptor" VALUES(1068,534,8); INSERT INTO "Wine_Descriptor" VALUES(1069,535,0); INSERT INTO "Wine_Descriptor" VALUES(1070,535,8); INSERT INTO "Wine_Descriptor" VALUES(1071,536,0); INSERT INTO "Wine_Descriptor" VALUES(1072,536,8); INSERT INTO "Wine_Descriptor" VALUES(1073,537,0); INSERT INTO "Wine_Descriptor" VALUES(1074,537,8); INSERT INTO "Wine_Descriptor" VALUES(1075,538,0); INSERT INTO "Wine_Descriptor" VALUES(1076,538,8); INSERT INTO "Wine_Descriptor" VALUES(1077,539,0); INSERT INTO "Wine_Descriptor" VALUES(1078,539,8); INSERT INTO "Wine_Descriptor" VALUES(1079,540,0); INSERT INTO "Wine_Descriptor" VALUES(1080,540,8); INSERT INTO "Wine_Descriptor" VALUES(1081,541,0); INSERT INTO "Wine_Descriptor" VALUES(1082,541,8); INSERT INTO "Wine_Descriptor" VALUES(1083,542,0); INSERT INTO "Wine_Descriptor" VALUES(1084,542,8); INSERT INTO "Wine_Descriptor" VALUES(1085,543,0); INSERT INTO "Wine_Descriptor" VALUES(1086,543,8); INSERT INTO "Wine_Descriptor" VALUES(1087,544,0); INSERT INTO "Wine_Descriptor" VALUES(1088,544,8); INSERT INTO "Wine_Descriptor" VALUES(1089,545,0); INSERT INTO "Wine_Descriptor" VALUES(1090,545,8); INSERT INTO "Wine_Descriptor" VALUES(1091,546,0); INSERT INTO "Wine_Descriptor" VALUES(1092,546,8); INSERT INTO "Wine_Descriptor" VALUES(1093,547,0); INSERT INTO "Wine_Descriptor" VALUES(1094,547,8); INSERT INTO "Wine_Descriptor" VALUES(1095,548,0); INSERT INTO "Wine_Descriptor" VALUES(1096,548,8); INSERT INTO "Wine_Descriptor" VALUES(1097,549,0); INSERT INTO "Wine_Descriptor" VALUES(1098,549,8); INSERT INTO "Wine_Descriptor" VALUES(1099,550,0); INSERT INTO "Wine_Descriptor" VALUES(1100,550,8); INSERT INTO "Wine_Descriptor" VALUES(1101,551,0); INSERT INTO "Wine_Descriptor" VALUES(1102,551,8); INSERT INTO "Wine_Descriptor" VALUES(1103,552,0); INSERT INTO "Wine_Descriptor" VALUES(1104,552,8); INSERT INTO "Wine_Descriptor" VALUES(1105,553,0); INSERT INTO "Wine_Descriptor" VALUES(1106,553,8); INSERT INTO "Wine_Descriptor" VALUES(1107,554,0); INSERT INTO "Wine_Descriptor" VALUES(1108,554,8); INSERT INTO "Wine_Descriptor" VALUES(1109,555,0); INSERT INTO "Wine_Descriptor" VALUES(1110,555,8); INSERT INTO "Wine_Descriptor" VALUES(1111,556,0); INSERT INTO "Wine_Descriptor" VALUES(1112,556,8); INSERT INTO "Wine_Descriptor" VALUES(1113,557,0); INSERT INTO "Wine_Descriptor" VALUES(1114,557,8); INSERT INTO "Wine_Descriptor" VALUES(1115,558,0); INSERT INTO "Wine_Descriptor" VALUES(1116,558,8); INSERT INTO "Wine_Descriptor" VALUES(1117,559,0); INSERT INTO "Wine_Descriptor" VALUES(1118,559,8); INSERT INTO "Wine_Descriptor" VALUES(1119,560,0); INSERT INTO "Wine_Descriptor" VALUES(1120,560,8); INSERT INTO "Wine_Descriptor" VALUES(1121,561,0); INSERT INTO "Wine_Descriptor" VALUES(1122,561,8); INSERT INTO "Wine_Descriptor" VALUES(1123,562,0); INSERT INTO "Wine_Descriptor" VALUES(1124,562,8); INSERT INTO "Wine_Descriptor" VALUES(1125,563,0); INSERT INTO "Wine_Descriptor" VALUES(1126,563,8); INSERT INTO "Wine_Descriptor" VALUES(1127,564,0); INSERT INTO "Wine_Descriptor" VALUES(1128,564,8); INSERT INTO "Wine_Descriptor" VALUES(1129,565,0); INSERT INTO "Wine_Descriptor" VALUES(1130,565,8); INSERT INTO "Wine_Descriptor" VALUES(1131,566,0); INSERT INTO "Wine_Descriptor" VALUES(1132,566,8); INSERT INTO "Wine_Descriptor" VALUES(1133,567,0); INSERT INTO "Wine_Descriptor" VALUES(1134,567,8); INSERT INTO "Wine_Descriptor" VALUES(1135,568,0); INSERT INTO "Wine_Descriptor" VALUES(1136,568,8); INSERT INTO "Wine_Descriptor" VALUES(1137,569,0); INSERT INTO "Wine_Descriptor" VALUES(1138,569,8); INSERT INTO "Wine_Descriptor" VALUES(1139,570,0); INSERT INTO "Wine_Descriptor" VALUES(1140,570,8); INSERT INTO "Wine_Descriptor" VALUES(1141,571,0); INSERT INTO "Wine_Descriptor" VALUES(1142,571,8); INSERT INTO "Wine_Descriptor" VALUES(1143,572,0); INSERT INTO "Wine_Descriptor" VALUES(1144,572,8); INSERT INTO "Wine_Descriptor" VALUES(1145,573,0); INSERT INTO "Wine_Descriptor" VALUES(1146,573,8); INSERT INTO "Wine_Descriptor" VALUES(1147,574,0); INSERT INTO "Wine_Descriptor" VALUES(1148,574,8); INSERT INTO "Wine_Descriptor" VALUES(1149,575,0); INSERT INTO "Wine_Descriptor" VALUES(1150,575,8); INSERT INTO "Wine_Descriptor" VALUES(1151,576,0); INSERT INTO "Wine_Descriptor" VALUES(1152,576,8); INSERT INTO "Wine_Descriptor" VALUES(1153,577,0); INSERT INTO "Wine_Descriptor" VALUES(1154,577,8); INSERT INTO "Wine_Descriptor" VALUES(1155,578,0); INSERT INTO "Wine_Descriptor" VALUES(1156,578,8); INSERT INTO "Wine_Descriptor" VALUES(1157,579,0); INSERT INTO "Wine_Descriptor" VALUES(1158,579,8); INSERT INTO "Wine_Descriptor" VALUES(1159,580,0); INSERT INTO "Wine_Descriptor" VALUES(1160,580,8); INSERT INTO "Wine_Descriptor" VALUES(1161,581,0); INSERT INTO "Wine_Descriptor" VALUES(1162,581,8); INSERT INTO "Wine_Descriptor" VALUES(1163,582,0); INSERT INTO "Wine_Descriptor" VALUES(1164,582,8); INSERT INTO "Wine_Descriptor" VALUES(1165,583,0); INSERT INTO "Wine_Descriptor" VALUES(1166,583,8); INSERT INTO "Wine_Descriptor" VALUES(1167,584,0); INSERT INTO "Wine_Descriptor" VALUES(1168,584,8); INSERT INTO "Wine_Descriptor" VALUES(1169,585,0); INSERT INTO "Wine_Descriptor" VALUES(1170,585,8); INSERT INTO "Wine_Descriptor" VALUES(1171,586,0); INSERT INTO "Wine_Descriptor" VALUES(1172,586,8); INSERT INTO "Wine_Descriptor" VALUES(1173,587,0); INSERT INTO "Wine_Descriptor" VALUES(1174,587,8); INSERT INTO "Wine_Descriptor" VALUES(1175,588,0); INSERT INTO "Wine_Descriptor" VALUES(1176,588,8); INSERT INTO "Wine_Descriptor" VALUES(1177,589,0); INSERT INTO "Wine_Descriptor" VALUES(1178,589,8); INSERT INTO "Wine_Descriptor" VALUES(1179,590,0); INSERT INTO "Wine_Descriptor" VALUES(1180,590,8); INSERT INTO "Wine_Descriptor" VALUES(1181,591,0); INSERT INTO "Wine_Descriptor" VALUES(1182,591,8); INSERT INTO "Wine_Descriptor" VALUES(1183,592,0); INSERT INTO "Wine_Descriptor" VALUES(1184,592,8); INSERT INTO "Wine_Descriptor" VALUES(1185,593,0); INSERT INTO "Wine_Descriptor" VALUES(1186,593,8); INSERT INTO "Wine_Descriptor" VALUES(1187,594,0); INSERT INTO "Wine_Descriptor" VALUES(1188,594,8); INSERT INTO "Wine_Descriptor" VALUES(1189,595,0); INSERT INTO "Wine_Descriptor" VALUES(1190,595,8); INSERT INTO "Wine_Descriptor" VALUES(1191,596,0); INSERT INTO "Wine_Descriptor" VALUES(1192,596,8); INSERT INTO "Wine_Descriptor" VALUES(1193,597,1); INSERT INTO "Wine_Descriptor" VALUES(1194,597,2); INSERT INTO "Wine_Descriptor" VALUES(1195,598,1); INSERT INTO "Wine_Descriptor" VALUES(1196,598,2); INSERT INTO "Wine_Descriptor" VALUES(1197,599,1); INSERT INTO "Wine_Descriptor" VALUES(1198,599,2); INSERT INTO "Wine_Descriptor" VALUES(1199,600,1); INSERT INTO "Wine_Descriptor" VALUES(1200,600,2); INSERT INTO "Wine_Descriptor" VALUES(1201,601,1); INSERT INTO "Wine_Descriptor" VALUES(1202,601,2); INSERT INTO "Wine_Descriptor" VALUES(1203,602,1); INSERT INTO "Wine_Descriptor" VALUES(1204,602,2); INSERT INTO "Wine_Descriptor" VALUES(1205,603,1); INSERT INTO "Wine_Descriptor" VALUES(1206,603,2); INSERT INTO "Wine_Descriptor" VALUES(1207,604,1); INSERT INTO "Wine_Descriptor" VALUES(1208,604,2); INSERT INTO "Wine_Descriptor" VALUES(1209,605,1); INSERT INTO "Wine_Descriptor" VALUES(1210,605,2); INSERT INTO "Wine_Descriptor" VALUES(1211,606,1); INSERT INTO "Wine_Descriptor" VALUES(1212,606,2); INSERT INTO "Wine_Descriptor" VALUES(1213,607,1); INSERT INTO "Wine_Descriptor" VALUES(1214,607,2); INSERT INTO "Wine_Descriptor" VALUES(1215,608,1); INSERT INTO "Wine_Descriptor" VALUES(1216,608,2); INSERT INTO "Wine_Descriptor" VALUES(1217,609,1); INSERT INTO "Wine_Descriptor" VALUES(1218,609,2); INSERT INTO "Wine_Descriptor" VALUES(1219,610,1); INSERT INTO "Wine_Descriptor" VALUES(1220,610,2); INSERT INTO "Wine_Descriptor" VALUES(1221,611,1); INSERT INTO "Wine_Descriptor" VALUES(1222,611,2); INSERT INTO "Wine_Descriptor" VALUES(1223,612,1); INSERT INTO "Wine_Descriptor" VALUES(1224,612,2); INSERT INTO "Wine_Descriptor" VALUES(1225,613,1); INSERT INTO "Wine_Descriptor" VALUES(1226,613,2); INSERT INTO "Wine_Descriptor" VALUES(1227,614,1); INSERT INTO "Wine_Descriptor" VALUES(1228,614,2); INSERT INTO "Wine_Descriptor" VALUES(1229,615,1); INSERT INTO "Wine_Descriptor" VALUES(1230,615,2); INSERT INTO "Wine_Descriptor" VALUES(1231,616,1); INSERT INTO "Wine_Descriptor" VALUES(1232,616,2); INSERT INTO "Wine_Descriptor" VALUES(1233,617,1); INSERT INTO "Wine_Descriptor" VALUES(1234,617,2); INSERT INTO "Wine_Descriptor" VALUES(1235,618,1); INSERT INTO "Wine_Descriptor" VALUES(1236,618,2); INSERT INTO "Wine_Descriptor" VALUES(1237,619,1); INSERT INTO "Wine_Descriptor" VALUES(1238,619,2); INSERT INTO "Wine_Descriptor" VALUES(1239,620,1); INSERT INTO "Wine_Descriptor" VALUES(1240,620,2); INSERT INTO "Wine_Descriptor" VALUES(1241,621,1); INSERT INTO "Wine_Descriptor" VALUES(1242,621,2); INSERT INTO "Wine_Descriptor" VALUES(1243,622,1); INSERT INTO "Wine_Descriptor" VALUES(1244,622,2); INSERT INTO "Wine_Descriptor" VALUES(1245,623,1); INSERT INTO "Wine_Descriptor" VALUES(1246,623,2); INSERT INTO "Wine_Descriptor" VALUES(1247,624,1); INSERT INTO "Wine_Descriptor" VALUES(1248,624,2); INSERT INTO "Wine_Descriptor" VALUES(1249,625,1); INSERT INTO "Wine_Descriptor" VALUES(1250,625,2); INSERT INTO "Wine_Descriptor" VALUES(1251,626,1); INSERT INTO "Wine_Descriptor" VALUES(1252,626,2); INSERT INTO "Wine_Descriptor" VALUES(1253,627,1); INSERT INTO "Wine_Descriptor" VALUES(1254,627,2); INSERT INTO "Wine_Descriptor" VALUES(1255,628,1); INSERT INTO "Wine_Descriptor" VALUES(1256,628,2); INSERT INTO "Wine_Descriptor" VALUES(1257,629,1); INSERT INTO "Wine_Descriptor" VALUES(1258,629,2); INSERT INTO "Wine_Descriptor" VALUES(1259,630,1); INSERT INTO "Wine_Descriptor" VALUES(1260,630,2); INSERT INTO "Wine_Descriptor" VALUES(1261,631,1); INSERT INTO "Wine_Descriptor" VALUES(1262,631,2); INSERT INTO "Wine_Descriptor" VALUES(1263,632,1); INSERT INTO "Wine_Descriptor" VALUES(1264,632,2); INSERT INTO "Wine_Descriptor" VALUES(1265,633,1); INSERT INTO "Wine_Descriptor" VALUES(1266,633,2); INSERT INTO "Wine_Descriptor" VALUES(1267,634,1); INSERT INTO "Wine_Descriptor" VALUES(1268,634,2); INSERT INTO "Wine_Descriptor" VALUES(1269,635,1); INSERT INTO "Wine_Descriptor" VALUES(1270,635,2); INSERT INTO "Wine_Descriptor" VALUES(1271,636,1); INSERT INTO "Wine_Descriptor" VALUES(1272,636,2); INSERT INTO "Wine_Descriptor" VALUES(1273,637,1); INSERT INTO "Wine_Descriptor" VALUES(1274,637,2); INSERT INTO "Wine_Descriptor" VALUES(1275,638,1); INSERT INTO "Wine_Descriptor" VALUES(1276,638,2); INSERT INTO "Wine_Descriptor" VALUES(1277,639,1); INSERT INTO "Wine_Descriptor" VALUES(1278,639,2); INSERT INTO "Wine_Descriptor" VALUES(1279,640,1); INSERT INTO "Wine_Descriptor" VALUES(1280,640,2); INSERT INTO "Wine_Descriptor" VALUES(1281,641,1); INSERT INTO "Wine_Descriptor" VALUES(1282,641,2); INSERT INTO "Wine_Descriptor" VALUES(1283,642,1); INSERT INTO "Wine_Descriptor" VALUES(1284,642,2); INSERT INTO "Wine_Descriptor" VALUES(1285,643,1); INSERT INTO "Wine_Descriptor" VALUES(1286,643,2); INSERT INTO "Wine_Descriptor" VALUES(1287,644,1); INSERT INTO "Wine_Descriptor" VALUES(1288,644,2); INSERT INTO "Wine_Descriptor" VALUES(1289,645,1); INSERT INTO "Wine_Descriptor" VALUES(1290,645,2); INSERT INTO "Wine_Descriptor" VALUES(1291,646,1); INSERT INTO "Wine_Descriptor" VALUES(1292,646,2); INSERT INTO "Wine_Descriptor" VALUES(1293,647,1); INSERT INTO "Wine_Descriptor" VALUES(1294,647,2); INSERT INTO "Wine_Descriptor" VALUES(1295,648,1); INSERT INTO "Wine_Descriptor" VALUES(1296,648,2); INSERT INTO "Wine_Descriptor" VALUES(1297,649,1); INSERT INTO "Wine_Descriptor" VALUES(1298,649,2); INSERT INTO "Wine_Descriptor" VALUES(1299,650,1); INSERT INTO "Wine_Descriptor" VALUES(1300,650,2); INSERT INTO "Wine_Descriptor" VALUES(1301,651,1); INSERT INTO "Wine_Descriptor" VALUES(1302,651,2); INSERT INTO "Wine_Descriptor" VALUES(1303,652,1); INSERT INTO "Wine_Descriptor" VALUES(1304,652,2); INSERT INTO "Wine_Descriptor" VALUES(1305,653,1); INSERT INTO "Wine_Descriptor" VALUES(1306,653,2); INSERT INTO "Wine_Descriptor" VALUES(1307,654,1); INSERT INTO "Wine_Descriptor" VALUES(1308,654,2); INSERT INTO "Wine_Descriptor" VALUES(1309,655,1); INSERT INTO "Wine_Descriptor" VALUES(1310,655,2); INSERT INTO "Wine_Descriptor" VALUES(1311,656,1); INSERT INTO "Wine_Descriptor" VALUES(1312,656,2); INSERT INTO "Wine_Descriptor" VALUES(1313,657,1); INSERT INTO "Wine_Descriptor" VALUES(1314,657,2); INSERT INTO "Wine_Descriptor" VALUES(1315,658,1); INSERT INTO "Wine_Descriptor" VALUES(1316,658,2); INSERT INTO "Wine_Descriptor" VALUES(1317,659,1); INSERT INTO "Wine_Descriptor" VALUES(1318,659,2); INSERT INTO "Wine_Descriptor" VALUES(1319,660,1); INSERT INTO "Wine_Descriptor" VALUES(1320,660,2); INSERT INTO "Wine_Descriptor" VALUES(1321,661,1); INSERT INTO "Wine_Descriptor" VALUES(1322,661,2); INSERT INTO "Wine_Descriptor" VALUES(1323,662,1); INSERT INTO "Wine_Descriptor" VALUES(1324,662,2); INSERT INTO "Wine_Descriptor" VALUES(1325,663,1); INSERT INTO "Wine_Descriptor" VALUES(1326,663,2); INSERT INTO "Wine_Descriptor" VALUES(1327,664,1); INSERT INTO "Wine_Descriptor" VALUES(1328,664,2); INSERT INTO "Wine_Descriptor" VALUES(1329,665,1); INSERT INTO "Wine_Descriptor" VALUES(1330,665,2); INSERT INTO "Wine_Descriptor" VALUES(1331,666,1); INSERT INTO "Wine_Descriptor" VALUES(1332,666,2); INSERT INTO "Wine_Descriptor" VALUES(1333,667,1); INSERT INTO "Wine_Descriptor" VALUES(1334,667,2); INSERT INTO "Wine_Descriptor" VALUES(1335,668,1); INSERT INTO "Wine_Descriptor" VALUES(1336,668,2); INSERT INTO "Wine_Descriptor" VALUES(1337,669,1); INSERT INTO "Wine_Descriptor" VALUES(1338,669,2); INSERT INTO "Wine_Descriptor" VALUES(1339,670,1); INSERT INTO "Wine_Descriptor" VALUES(1340,670,2); INSERT INTO "Wine_Descriptor" VALUES(1341,671,1); INSERT INTO "Wine_Descriptor" VALUES(1342,671,2); INSERT INTO "Wine_Descriptor" VALUES(1343,672,1); INSERT INTO "Wine_Descriptor" VALUES(1344,672,2); INSERT INTO "Wine_Descriptor" VALUES(1345,673,1); INSERT INTO "Wine_Descriptor" VALUES(1346,673,2); INSERT INTO "Wine_Descriptor" VALUES(1347,674,1); INSERT INTO "Wine_Descriptor" VALUES(1348,674,2); INSERT INTO "Wine_Descriptor" VALUES(1349,675,1); INSERT INTO "Wine_Descriptor" VALUES(1350,675,2); INSERT INTO "Wine_Descriptor" VALUES(1351,676,1); INSERT INTO "Wine_Descriptor" VALUES(1352,676,2); INSERT INTO "Wine_Descriptor" VALUES(1353,677,1); INSERT INTO "Wine_Descriptor" VALUES(1354,677,2); INSERT INTO "Wine_Descriptor" VALUES(1355,678,1); INSERT INTO "Wine_Descriptor" VALUES(1356,678,2); INSERT INTO "Wine_Descriptor" VALUES(1357,679,1); INSERT INTO "Wine_Descriptor" VALUES(1358,679,2); INSERT INTO "Wine_Descriptor" VALUES(1359,680,1); INSERT INTO "Wine_Descriptor" VALUES(1360,680,2); INSERT INTO "Wine_Descriptor" VALUES(1361,681,1); INSERT INTO "Wine_Descriptor" VALUES(1362,681,2); INSERT INTO "Wine_Descriptor" VALUES(1363,682,1); INSERT INTO "Wine_Descriptor" VALUES(1364,682,2); INSERT INTO "Wine_Descriptor" VALUES(1365,683,1); INSERT INTO "Wine_Descriptor" VALUES(1366,683,2); INSERT INTO "Wine_Descriptor" VALUES(1367,684,1); INSERT INTO "Wine_Descriptor" VALUES(1368,684,2); INSERT INTO "Wine_Descriptor" VALUES(1369,685,1); INSERT INTO "Wine_Descriptor" VALUES(1370,685,2); INSERT INTO "Wine_Descriptor" VALUES(1371,686,1); INSERT INTO "Wine_Descriptor" VALUES(1372,686,2); INSERT INTO "Wine_Descriptor" VALUES(1373,687,1); INSERT INTO "Wine_Descriptor" VALUES(1374,687,2); INSERT INTO "Wine_Descriptor" VALUES(1375,688,1); INSERT INTO "Wine_Descriptor" VALUES(1376,688,2); INSERT INTO "Wine_Descriptor" VALUES(1377,689,1); INSERT INTO "Wine_Descriptor" VALUES(1378,689,2); INSERT INTO "Wine_Descriptor" VALUES(1379,690,1); INSERT INTO "Wine_Descriptor" VALUES(1380,690,2); INSERT INTO "Wine_Descriptor" VALUES(1381,691,1); INSERT INTO "Wine_Descriptor" VALUES(1382,691,2); INSERT INTO "Wine_Descriptor" VALUES(1383,692,1); INSERT INTO "Wine_Descriptor" VALUES(1384,692,2); INSERT INTO "Wine_Descriptor" VALUES(1385,693,1); INSERT INTO "Wine_Descriptor" VALUES(1386,693,2); INSERT INTO "Wine_Descriptor" VALUES(1387,694,1); INSERT INTO "Wine_Descriptor" VALUES(1388,694,2); INSERT INTO "Wine_Descriptor" VALUES(1389,695,1); INSERT INTO "Wine_Descriptor" VALUES(1390,695,2); INSERT INTO "Wine_Descriptor" VALUES(1391,696,1); INSERT INTO "Wine_Descriptor" VALUES(1392,696,2); INSERT INTO "Wine_Descriptor" VALUES(1393,697,1); INSERT INTO "Wine_Descriptor" VALUES(1394,697,2); INSERT INTO "Wine_Descriptor" VALUES(1395,698,1); INSERT INTO "Wine_Descriptor" VALUES(1396,698,2); INSERT INTO "Wine_Descriptor" VALUES(1397,699,1); INSERT INTO "Wine_Descriptor" VALUES(1398,699,2); INSERT INTO "Wine_Descriptor" VALUES(1399,700,1); INSERT INTO "Wine_Descriptor" VALUES(1400,700,2); INSERT INTO "Wine_Descriptor" VALUES(1401,701,1); INSERT INTO "Wine_Descriptor" VALUES(1402,701,2); INSERT INTO "Wine_Descriptor" VALUES(1403,702,1); INSERT INTO "Wine_Descriptor" VALUES(1404,702,2); INSERT INTO "Wine_Descriptor" VALUES(1405,703,1); INSERT INTO "Wine_Descriptor" VALUES(1406,703,2); INSERT INTO "Wine_Descriptor" VALUES(1407,704,1); INSERT INTO "Wine_Descriptor" VALUES(1408,704,2); INSERT INTO "Wine_Descriptor" VALUES(1409,705,1); INSERT INTO "Wine_Descriptor" VALUES(1410,705,2); INSERT INTO "Wine_Descriptor" VALUES(1411,706,1); INSERT INTO "Wine_Descriptor" VALUES(1412,706,2); INSERT INTO "Wine_Descriptor" VALUES(1413,707,1); INSERT INTO "Wine_Descriptor" VALUES(1414,707,2); INSERT INTO "Wine_Descriptor" VALUES(1415,708,1); INSERT INTO "Wine_Descriptor" VALUES(1416,708,2); INSERT INTO "Wine_Descriptor" VALUES(1417,709,1); INSERT INTO "Wine_Descriptor" VALUES(1418,709,2); INSERT INTO "Wine_Descriptor" VALUES(1419,710,1); INSERT INTO "Wine_Descriptor" VALUES(1420,710,2); INSERT INTO "Wine_Descriptor" VALUES(1421,711,1); INSERT INTO "Wine_Descriptor" VALUES(1422,711,2); INSERT INTO "Wine_Descriptor" VALUES(1423,712,1); INSERT INTO "Wine_Descriptor" VALUES(1424,712,2); INSERT INTO "Wine_Descriptor" VALUES(1425,713,1); INSERT INTO "Wine_Descriptor" VALUES(1426,713,2); INSERT INTO "Wine_Descriptor" VALUES(1427,714,1); INSERT INTO "Wine_Descriptor" VALUES(1428,714,2); INSERT INTO "Wine_Descriptor" VALUES(1429,715,1); INSERT INTO "Wine_Descriptor" VALUES(1430,715,2); INSERT INTO "Wine_Descriptor" VALUES(1431,716,1); INSERT INTO "Wine_Descriptor" VALUES(1432,716,2); INSERT INTO "Wine_Descriptor" VALUES(1433,717,1); INSERT INTO "Wine_Descriptor" VALUES(1434,717,2); INSERT INTO "Wine_Descriptor" VALUES(1435,718,1); INSERT INTO "Wine_Descriptor" VALUES(1436,718,2); INSERT INTO "Wine_Descriptor" VALUES(1437,719,1); INSERT INTO "Wine_Descriptor" VALUES(1438,719,2); INSERT INTO "Wine_Descriptor" VALUES(1439,720,1); INSERT INTO "Wine_Descriptor" VALUES(1440,720,2); INSERT INTO "Wine_Descriptor" VALUES(1441,721,1); INSERT INTO "Wine_Descriptor" VALUES(1442,721,2); INSERT INTO "Wine_Descriptor" VALUES(1443,722,1); INSERT INTO "Wine_Descriptor" VALUES(1444,722,2); INSERT INTO "Wine_Descriptor" VALUES(1445,723,1); INSERT INTO "Wine_Descriptor" VALUES(1446,723,2); INSERT INTO "Wine_Descriptor" VALUES(1447,724,1); INSERT INTO "Wine_Descriptor" VALUES(1448,724,2); INSERT INTO "Wine_Descriptor" VALUES(1449,725,1); INSERT INTO "Wine_Descriptor" VALUES(1450,725,2); INSERT INTO "Wine_Descriptor" VALUES(1451,726,1); INSERT INTO "Wine_Descriptor" VALUES(1452,726,2); INSERT INTO "Wine_Descriptor" VALUES(1453,727,1); INSERT INTO "Wine_Descriptor" VALUES(1454,727,2); INSERT INTO "Wine_Descriptor" VALUES(1455,728,1); INSERT INTO "Wine_Descriptor" VALUES(1456,728,2); INSERT INTO "Wine_Descriptor" VALUES(1457,729,1); INSERT INTO "Wine_Descriptor" VALUES(1458,729,2); INSERT INTO "Wine_Descriptor" VALUES(1459,730,1); INSERT INTO "Wine_Descriptor" VALUES(1460,730,2); INSERT INTO "Wine_Descriptor" VALUES(1461,731,1); INSERT INTO "Wine_Descriptor" VALUES(1462,731,2); INSERT INTO "Wine_Descriptor" VALUES(1463,732,1); INSERT INTO "Wine_Descriptor" VALUES(1464,732,2); INSERT INTO "Wine_Descriptor" VALUES(1465,733,1); INSERT INTO "Wine_Descriptor" VALUES(1466,733,2); INSERT INTO "Wine_Descriptor" VALUES(1467,734,1); INSERT INTO "Wine_Descriptor" VALUES(1468,734,2); INSERT INTO "Wine_Descriptor" VALUES(1469,735,1); INSERT INTO "Wine_Descriptor" VALUES(1470,735,2); INSERT INTO "Wine_Descriptor" VALUES(1471,736,1); INSERT INTO "Wine_Descriptor" VALUES(1472,736,2); INSERT INTO "Wine_Descriptor" VALUES(1473,737,1); INSERT INTO "Wine_Descriptor" VALUES(1474,737,2); INSERT INTO "Wine_Descriptor" VALUES(1475,738,1); INSERT INTO "Wine_Descriptor" VALUES(1476,738,2); INSERT INTO "Wine_Descriptor" VALUES(1477,739,1); INSERT INTO "Wine_Descriptor" VALUES(1478,739,2); INSERT INTO "Wine_Descriptor" VALUES(1479,740,1); INSERT INTO "Wine_Descriptor" VALUES(1480,740,2); INSERT INTO "Wine_Descriptor" VALUES(1481,741,1); INSERT INTO "Wine_Descriptor" VALUES(1482,741,2); INSERT INTO "Wine_Descriptor" VALUES(1483,742,1); INSERT INTO "Wine_Descriptor" VALUES(1484,742,2); INSERT INTO "Wine_Descriptor" VALUES(1485,743,1); INSERT INTO "Wine_Descriptor" VALUES(1486,743,2); INSERT INTO "Wine_Descriptor" VALUES(1487,744,1); INSERT INTO "Wine_Descriptor" VALUES(1488,744,2); INSERT INTO "Wine_Descriptor" VALUES(1489,745,1); INSERT INTO "Wine_Descriptor" VALUES(1490,745,2); INSERT INTO "Wine_Descriptor" VALUES(1491,746,1); INSERT INTO "Wine_Descriptor" VALUES(1492,746,2); INSERT INTO "Wine_Descriptor" VALUES(1493,747,1); INSERT INTO "Wine_Descriptor" VALUES(1494,747,2); INSERT INTO "Wine_Descriptor" VALUES(1495,748,1); INSERT INTO "Wine_Descriptor" VALUES(1496,748,2); INSERT INTO "Wine_Descriptor" VALUES(1497,749,1); INSERT INTO "Wine_Descriptor" VALUES(1498,749,2); INSERT INTO "Wine_Descriptor" VALUES(1499,750,1); INSERT INTO "Wine_Descriptor" VALUES(1500,750,2); INSERT INTO "Wine_Descriptor" VALUES(1501,751,1); INSERT INTO "Wine_Descriptor" VALUES(1502,751,2); INSERT INTO "Wine_Descriptor" VALUES(1503,752,1); INSERT INTO "Wine_Descriptor" VALUES(1504,752,2); INSERT INTO "Wine_Descriptor" VALUES(1505,753,1); INSERT INTO "Wine_Descriptor" VALUES(1506,753,2); INSERT INTO "Wine_Descriptor" VALUES(1507,754,1); INSERT INTO "Wine_Descriptor" VALUES(1508,754,2); INSERT INTO "Wine_Descriptor" VALUES(1509,755,1); INSERT INTO "Wine_Descriptor" VALUES(1510,755,2); INSERT INTO "Wine_Descriptor" VALUES(1511,756,1); INSERT INTO "Wine_Descriptor" VALUES(1512,756,2); INSERT INTO "Wine_Descriptor" VALUES(1513,757,1); INSERT INTO "Wine_Descriptor" VALUES(1514,757,2); INSERT INTO "Wine_Descriptor" VALUES(1515,758,1); INSERT INTO "Wine_Descriptor" VALUES(1516,758,2); INSERT INTO "Wine_Descriptor" VALUES(1517,759,1); INSERT INTO "Wine_Descriptor" VALUES(1518,759,2); INSERT INTO "Wine_Descriptor" VALUES(1519,760,1); INSERT INTO "Wine_Descriptor" VALUES(1520,760,2); INSERT INTO "Wine_Descriptor" VALUES(1521,761,1); INSERT INTO "Wine_Descriptor" VALUES(1522,761,2); INSERT INTO "Wine_Descriptor" VALUES(1523,762,1); INSERT INTO "Wine_Descriptor" VALUES(1524,762,2); INSERT INTO "Wine_Descriptor" VALUES(1525,763,1); INSERT INTO "Wine_Descriptor" VALUES(1526,763,2); INSERT INTO "Wine_Descriptor" VALUES(1527,764,1); INSERT INTO "Wine_Descriptor" VALUES(1528,764,2); INSERT INTO "Wine_Descriptor" VALUES(1529,765,1); INSERT INTO "Wine_Descriptor" VALUES(1530,765,2); INSERT INTO "Wine_Descriptor" VALUES(1531,766,1); INSERT INTO "Wine_Descriptor" VALUES(1532,766,2); INSERT INTO "Wine_Descriptor" VALUES(1533,767,1); INSERT INTO "Wine_Descriptor" VALUES(1534,767,2); INSERT INTO "Wine_Descriptor" VALUES(1535,768,1); INSERT INTO "Wine_Descriptor" VALUES(1536,768,2); INSERT INTO "Wine_Descriptor" VALUES(1537,769,1); INSERT INTO "Wine_Descriptor" VALUES(1538,769,2); INSERT INTO "Wine_Descriptor" VALUES(1539,770,1); INSERT INTO "Wine_Descriptor" VALUES(1540,770,2); INSERT INTO "Wine_Descriptor" VALUES(1541,771,1); INSERT INTO "Wine_Descriptor" VALUES(1542,771,2); INSERT INTO "Wine_Descriptor" VALUES(1543,772,1); INSERT INTO "Wine_Descriptor" VALUES(1544,772,2); INSERT INTO "Wine_Descriptor" VALUES(1545,773,1); INSERT INTO "Wine_Descriptor" VALUES(1546,773,2); INSERT INTO "Wine_Descriptor" VALUES(1547,774,1); INSERT INTO "Wine_Descriptor" VALUES(1548,774,2); INSERT INTO "Wine_Descriptor" VALUES(1549,775,1); INSERT INTO "Wine_Descriptor" VALUES(1550,775,2); INSERT INTO "Wine_Descriptor" VALUES(1551,776,1); INSERT INTO "Wine_Descriptor" VALUES(1552,776,2); INSERT INTO "Wine_Descriptor" VALUES(1553,777,1); INSERT INTO "Wine_Descriptor" VALUES(1554,777,2); INSERT INTO "Wine_Descriptor" VALUES(1555,778,1); INSERT INTO "Wine_Descriptor" VALUES(1556,778,2); INSERT INTO "Wine_Descriptor" VALUES(1557,779,1); INSERT INTO "Wine_Descriptor" VALUES(1558,779,2); INSERT INTO "Wine_Descriptor" VALUES(1559,780,1); INSERT INTO "Wine_Descriptor" VALUES(1560,780,2); INSERT INTO "Wine_Descriptor" VALUES(1561,781,1); INSERT INTO "Wine_Descriptor" VALUES(1562,781,2); INSERT INTO "Wine_Descriptor" VALUES(1563,782,1); INSERT INTO "Wine_Descriptor" VALUES(1564,782,2); INSERT INTO "Wine_Descriptor" VALUES(1565,783,1); INSERT INTO "Wine_Descriptor" VALUES(1566,783,2); INSERT INTO "Wine_Descriptor" VALUES(1567,784,1); INSERT INTO "Wine_Descriptor" VALUES(1568,784,2); INSERT INTO "Wine_Descriptor" VALUES(1569,785,1); INSERT INTO "Wine_Descriptor" VALUES(1570,785,2); INSERT INTO "Wine_Descriptor" VALUES(1571,786,1); INSERT INTO "Wine_Descriptor" VALUES(1572,786,2); INSERT INTO "Wine_Descriptor" VALUES(1573,787,1); INSERT INTO "Wine_Descriptor" VALUES(1574,787,2); INSERT INTO "Wine_Descriptor" VALUES(1575,788,1); INSERT INTO "Wine_Descriptor" VALUES(1576,788,2); INSERT INTO "Wine_Descriptor" VALUES(1577,789,1); INSERT INTO "Wine_Descriptor" VALUES(1578,789,2); INSERT INTO "Wine_Descriptor" VALUES(1579,790,1); INSERT INTO "Wine_Descriptor" VALUES(1580,790,2); INSERT INTO "Wine_Descriptor" VALUES(1581,791,1); INSERT INTO "Wine_Descriptor" VALUES(1582,791,2); INSERT INTO "Wine_Descriptor" VALUES(1583,792,1); INSERT INTO "Wine_Descriptor" VALUES(1584,792,2); INSERT INTO "Wine_Descriptor" VALUES(1585,793,1); INSERT INTO "Wine_Descriptor" VALUES(1586,793,2); INSERT INTO "Wine_Descriptor" VALUES(1587,794,1); INSERT INTO "Wine_Descriptor" VALUES(1588,794,2); INSERT INTO "Wine_Descriptor" VALUES(1589,795,1); INSERT INTO "Wine_Descriptor" VALUES(1590,795,2); INSERT INTO "Wine_Descriptor" VALUES(1591,796,1); INSERT INTO "Wine_Descriptor" VALUES(1592,796,2); INSERT INTO "Wine_Descriptor" VALUES(1593,797,1); INSERT INTO "Wine_Descriptor" VALUES(1594,797,2); INSERT INTO "Wine_Descriptor" VALUES(1595,798,1); INSERT INTO "Wine_Descriptor" VALUES(1596,798,2); INSERT INTO "Wine_Descriptor" VALUES(1597,799,1); INSERT INTO "Wine_Descriptor" VALUES(1598,799,2); INSERT INTO "Wine_Descriptor" VALUES(1599,800,1); INSERT INTO "Wine_Descriptor" VALUES(1600,800,2); INSERT INTO "Wine_Descriptor" VALUES(1601,801,1); INSERT INTO "Wine_Descriptor" VALUES(1602,801,2); INSERT INTO "Wine_Descriptor" VALUES(1603,802,1); INSERT INTO "Wine_Descriptor" VALUES(1604,802,2); INSERT INTO "Wine_Descriptor" VALUES(1605,803,1); INSERT INTO "Wine_Descriptor" VALUES(1606,803,2); INSERT INTO "Wine_Descriptor" VALUES(1607,804,1); INSERT INTO "Wine_Descriptor" VALUES(1608,804,2); INSERT INTO "Wine_Descriptor" VALUES(1609,805,1); INSERT INTO "Wine_Descriptor" VALUES(1610,805,2); INSERT INTO "Wine_Descriptor" VALUES(1611,806,1); INSERT INTO "Wine_Descriptor" VALUES(1612,806,2); INSERT INTO "Wine_Descriptor" VALUES(1613,807,1); INSERT INTO "Wine_Descriptor" VALUES(1614,807,2); INSERT INTO "Wine_Descriptor" VALUES(1615,808,1); INSERT INTO "Wine_Descriptor" VALUES(1616,808,2); INSERT INTO "Wine_Descriptor" VALUES(1617,809,1); INSERT INTO "Wine_Descriptor" VALUES(1618,809,2); INSERT INTO "Wine_Descriptor" VALUES(1619,810,1); INSERT INTO "Wine_Descriptor" VALUES(1620,810,2); INSERT INTO "Wine_Descriptor" VALUES(1621,811,1); INSERT INTO "Wine_Descriptor" VALUES(1622,811,2); INSERT INTO "Wine_Descriptor" VALUES(1623,812,1); INSERT INTO "Wine_Descriptor" VALUES(1624,812,2); INSERT INTO "Wine_Descriptor" VALUES(1625,813,1); INSERT INTO "Wine_Descriptor" VALUES(1626,813,2); INSERT INTO "Wine_Descriptor" VALUES(1627,814,1); INSERT INTO "Wine_Descriptor" VALUES(1628,814,2); INSERT INTO "Wine_Descriptor" VALUES(1629,815,1); INSERT INTO "Wine_Descriptor" VALUES(1630,815,2); INSERT INTO "Wine_Descriptor" VALUES(1631,816,1); INSERT INTO "Wine_Descriptor" VALUES(1632,816,2); INSERT INTO "Wine_Descriptor" VALUES(1633,817,1); INSERT INTO "Wine_Descriptor" VALUES(1634,817,2); INSERT INTO "Wine_Descriptor" VALUES(1635,818,1); INSERT INTO "Wine_Descriptor" VALUES(1636,818,2); INSERT INTO "Wine_Descriptor" VALUES(1637,819,1); INSERT INTO "Wine_Descriptor" VALUES(1638,819,2); INSERT INTO "Wine_Descriptor" VALUES(1639,820,1); INSERT INTO "Wine_Descriptor" VALUES(1640,820,2); INSERT INTO "Wine_Descriptor" VALUES(1641,821,1); INSERT INTO "Wine_Descriptor" VALUES(1642,821,2); INSERT INTO "Wine_Descriptor" VALUES(1643,822,1); INSERT INTO "Wine_Descriptor" VALUES(1644,822,2); INSERT INTO "Wine_Descriptor" VALUES(1645,823,1); INSERT INTO "Wine_Descriptor" VALUES(1646,823,2); INSERT INTO "Wine_Descriptor" VALUES(1647,824,1); INSERT INTO "Wine_Descriptor" VALUES(1648,824,2); INSERT INTO "Wine_Descriptor" VALUES(1649,825,1); INSERT INTO "Wine_Descriptor" VALUES(1650,825,2); INSERT INTO "Wine_Descriptor" VALUES(1651,826,1); INSERT INTO "Wine_Descriptor" VALUES(1652,826,2); INSERT INTO "Wine_Descriptor" VALUES(1653,827,1); INSERT INTO "Wine_Descriptor" VALUES(1654,827,2); INSERT INTO "Wine_Descriptor" VALUES(1655,828,1); INSERT INTO "Wine_Descriptor" VALUES(1656,828,2); INSERT INTO "Wine_Descriptor" VALUES(1657,829,1); INSERT INTO "Wine_Descriptor" VALUES(1658,829,2); INSERT INTO "Wine_Descriptor" VALUES(1659,830,1); INSERT INTO "Wine_Descriptor" VALUES(1660,830,2); INSERT INTO "Wine_Descriptor" VALUES(1661,831,1); INSERT INTO "Wine_Descriptor" VALUES(1662,831,2); INSERT INTO "Wine_Descriptor" VALUES(1663,832,1); INSERT INTO "Wine_Descriptor" VALUES(1664,832,2); INSERT INTO "Wine_Descriptor" VALUES(1665,833,1); INSERT INTO "Wine_Descriptor" VALUES(1666,833,2); INSERT INTO "Wine_Descriptor" VALUES(1667,834,1); INSERT INTO "Wine_Descriptor" VALUES(1668,834,2); INSERT INTO "Wine_Descriptor" VALUES(1669,835,1); INSERT INTO "Wine_Descriptor" VALUES(1670,835,2); INSERT INTO "Wine_Descriptor" VALUES(1671,836,1); INSERT INTO "Wine_Descriptor" VALUES(1672,836,2); INSERT INTO "Wine_Descriptor" VALUES(1673,837,1); INSERT INTO "Wine_Descriptor" VALUES(1674,837,2); INSERT INTO "Wine_Descriptor" VALUES(1675,838,1); INSERT INTO "Wine_Descriptor" VALUES(1676,838,2); INSERT INTO "Wine_Descriptor" VALUES(1677,839,1); INSERT INTO "Wine_Descriptor" VALUES(1678,839,2); INSERT INTO "Wine_Descriptor" VALUES(1679,840,1); INSERT INTO "Wine_Descriptor" VALUES(1680,840,2); INSERT INTO "Wine_Descriptor" VALUES(1681,841,1); INSERT INTO "Wine_Descriptor" VALUES(1682,841,2); INSERT INTO "Wine_Descriptor" VALUES(1683,842,1); INSERT INTO "Wine_Descriptor" VALUES(1684,842,2); INSERT INTO "Wine_Descriptor" VALUES(1685,843,1); INSERT INTO "Wine_Descriptor" VALUES(1686,843,2); INSERT INTO "Wine_Descriptor" VALUES(1687,844,1); INSERT INTO "Wine_Descriptor" VALUES(1688,844,2); INSERT INTO "Wine_Descriptor" VALUES(1689,845,1); INSERT INTO "Wine_Descriptor" VALUES(1690,845,2); INSERT INTO "Wine_Descriptor" VALUES(1691,846,1); INSERT INTO "Wine_Descriptor" VALUES(1692,846,2); INSERT INTO "Wine_Descriptor" VALUES(1693,847,1); INSERT INTO "Wine_Descriptor" VALUES(1694,847,2); INSERT INTO "Wine_Descriptor" VALUES(1695,848,1); INSERT INTO "Wine_Descriptor" VALUES(1696,848,2); INSERT INTO "Wine_Descriptor" VALUES(1697,849,1); INSERT INTO "Wine_Descriptor" VALUES(1698,849,2); INSERT INTO "Wine_Descriptor" VALUES(1699,850,1); INSERT INTO "Wine_Descriptor" VALUES(1700,850,2); INSERT INTO "Wine_Descriptor" VALUES(1701,851,1); INSERT INTO "Wine_Descriptor" VALUES(1702,851,2); INSERT INTO "Wine_Descriptor" VALUES(1703,852,1); INSERT INTO "Wine_Descriptor" VALUES(1704,852,2); INSERT INTO "Wine_Descriptor" VALUES(1705,853,1); INSERT INTO "Wine_Descriptor" VALUES(1706,853,2); INSERT INTO "Wine_Descriptor" VALUES(1707,854,1); INSERT INTO "Wine_Descriptor" VALUES(1708,854,2); INSERT INTO "Wine_Descriptor" VALUES(1709,855,1); INSERT INTO "Wine_Descriptor" VALUES(1710,855,2); INSERT INTO "Wine_Descriptor" VALUES(1711,856,1); INSERT INTO "Wine_Descriptor" VALUES(1712,856,2); INSERT INTO "Wine_Descriptor" VALUES(1713,857,1); INSERT INTO "Wine_Descriptor" VALUES(1714,857,2); INSERT INTO "Wine_Descriptor" VALUES(1715,858,1); INSERT INTO "Wine_Descriptor" VALUES(1716,858,2); INSERT INTO "Wine_Descriptor" VALUES(1717,859,1); INSERT INTO "Wine_Descriptor" VALUES(1718,859,2); INSERT INTO "Wine_Descriptor" VALUES(1719,860,1); INSERT INTO "Wine_Descriptor" VALUES(1720,860,2); INSERT INTO "Wine_Descriptor" VALUES(1721,861,1); INSERT INTO "Wine_Descriptor" VALUES(1722,861,2); INSERT INTO "Wine_Descriptor" VALUES(1723,862,1); INSERT INTO "Wine_Descriptor" VALUES(1724,862,2); INSERT INTO "Wine_Descriptor" VALUES(1725,863,1); INSERT INTO "Wine_Descriptor" VALUES(1726,863,2); INSERT INTO "Wine_Descriptor" VALUES(1727,864,1); INSERT INTO "Wine_Descriptor" VALUES(1728,864,2); INSERT INTO "Wine_Descriptor" VALUES(1729,865,1); INSERT INTO "Wine_Descriptor" VALUES(1730,865,2); INSERT INTO "Wine_Descriptor" VALUES(1731,866,1); INSERT INTO "Wine_Descriptor" VALUES(1732,866,2); INSERT INTO "Wine_Descriptor" VALUES(1733,867,1); INSERT INTO "Wine_Descriptor" VALUES(1734,867,2); INSERT INTO "Wine_Descriptor" VALUES(1735,868,1); INSERT INTO "Wine_Descriptor" VALUES(1736,868,2); INSERT INTO "Wine_Descriptor" VALUES(1737,869,1); INSERT INTO "Wine_Descriptor" VALUES(1738,869,2); INSERT INTO "Wine_Descriptor" VALUES(1739,870,1); INSERT INTO "Wine_Descriptor" VALUES(1740,870,2); INSERT INTO "Wine_Descriptor" VALUES(1741,871,1); INSERT INTO "Wine_Descriptor" VALUES(1742,871,2); INSERT INTO "Wine_Descriptor" VALUES(1743,872,1); INSERT INTO "Wine_Descriptor" VALUES(1744,872,2); INSERT INTO "Wine_Descriptor" VALUES(1745,873,1); INSERT INTO "Wine_Descriptor" VALUES(1746,873,2); INSERT INTO "Wine_Descriptor" VALUES(1747,874,1); INSERT INTO "Wine_Descriptor" VALUES(1748,874,2); INSERT INTO "Wine_Descriptor" VALUES(1749,875,1); INSERT INTO "Wine_Descriptor" VALUES(1750,875,2); INSERT INTO "Wine_Descriptor" VALUES(1751,876,1); INSERT INTO "Wine_Descriptor" VALUES(1752,876,2); INSERT INTO "Wine_Descriptor" VALUES(1753,877,1); INSERT INTO "Wine_Descriptor" VALUES(1754,877,2); INSERT INTO "Wine_Descriptor" VALUES(1755,878,1); INSERT INTO "Wine_Descriptor" VALUES(1756,878,2); INSERT INTO "Wine_Descriptor" VALUES(1757,879,1); INSERT INTO "Wine_Descriptor" VALUES(1758,879,2); INSERT INTO "Wine_Descriptor" VALUES(1759,880,1); INSERT INTO "Wine_Descriptor" VALUES(1760,880,2); INSERT INTO "Wine_Descriptor" VALUES(1761,881,1); INSERT INTO "Wine_Descriptor" VALUES(1762,881,2); INSERT INTO "Wine_Descriptor" VALUES(1763,882,1); INSERT INTO "Wine_Descriptor" VALUES(1764,882,2); INSERT INTO "Wine_Descriptor" VALUES(1765,883,1); INSERT INTO "Wine_Descriptor" VALUES(1766,883,2); INSERT INTO "Wine_Descriptor" VALUES(1767,884,1); INSERT INTO "Wine_Descriptor" VALUES(1768,884,2); INSERT INTO "Wine_Descriptor" VALUES(1769,885,1); INSERT INTO "Wine_Descriptor" VALUES(1770,885,2); INSERT INTO "Wine_Descriptor" VALUES(1771,886,1); INSERT INTO "Wine_Descriptor" VALUES(1772,886,2); INSERT INTO "Wine_Descriptor" VALUES(1773,887,1); INSERT INTO "Wine_Descriptor" VALUES(1774,887,2); INSERT INTO "Wine_Descriptor" VALUES(1775,888,1); INSERT INTO "Wine_Descriptor" VALUES(1776,888,2); INSERT INTO "Wine_Descriptor" VALUES(1777,889,1); INSERT INTO "Wine_Descriptor" VALUES(1778,889,2); INSERT INTO "Wine_Descriptor" VALUES(1779,890,1); INSERT INTO "Wine_Descriptor" VALUES(1780,890,2); INSERT INTO "Wine_Descriptor" VALUES(1781,891,1); INSERT INTO "Wine_Descriptor" VALUES(1782,891,2); INSERT INTO "Wine_Descriptor" VALUES(1783,892,1); INSERT INTO "Wine_Descriptor" VALUES(1784,892,2); INSERT INTO "Wine_Descriptor" VALUES(1785,893,1); INSERT INTO "Wine_Descriptor" VALUES(1786,893,2); INSERT INTO "Wine_Descriptor" VALUES(1787,894,1); INSERT INTO "Wine_Descriptor" VALUES(1788,894,2); INSERT INTO "Wine_Descriptor" VALUES(1789,895,1); INSERT INTO "Wine_Descriptor" VALUES(1790,895,2); INSERT INTO "Wine_Descriptor" VALUES(1791,896,1); INSERT INTO "Wine_Descriptor" VALUES(1792,896,2); INSERT INTO "Wine_Descriptor" VALUES(1793,897,1); INSERT INTO "Wine_Descriptor" VALUES(1794,897,2); INSERT INTO "Wine_Descriptor" VALUES(1795,898,1); INSERT INTO "Wine_Descriptor" VALUES(1796,898,2); INSERT INTO "Wine_Descriptor" VALUES(1797,899,1); INSERT INTO "Wine_Descriptor" VALUES(1798,899,2); INSERT INTO "Wine_Descriptor" VALUES(1799,900,1); INSERT INTO "Wine_Descriptor" VALUES(1800,900,2); INSERT INTO "Wine_Descriptor" VALUES(1801,901,1); INSERT INTO "Wine_Descriptor" VALUES(1802,901,2); INSERT INTO "Wine_Descriptor" VALUES(1803,902,1); INSERT INTO "Wine_Descriptor" VALUES(1804,902,2); INSERT INTO "Wine_Descriptor" VALUES(1805,903,1); INSERT INTO "Wine_Descriptor" VALUES(1806,903,2); INSERT INTO "Wine_Descriptor" VALUES(1807,904,1); INSERT INTO "Wine_Descriptor" VALUES(1808,904,2); INSERT INTO "Wine_Descriptor" VALUES(1809,905,1); INSERT INTO "Wine_Descriptor" VALUES(1810,905,2); INSERT INTO "Wine_Descriptor" VALUES(1811,906,1); INSERT INTO "Wine_Descriptor" VALUES(1812,906,2); INSERT INTO "Wine_Descriptor" VALUES(1813,907,1); INSERT INTO "Wine_Descriptor" VALUES(1814,907,2); INSERT INTO "Wine_Descriptor" VALUES(1815,908,1); INSERT INTO "Wine_Descriptor" VALUES(1816,908,2); INSERT INTO "Wine_Descriptor" VALUES(1817,909,1); INSERT INTO "Wine_Descriptor" VALUES(1818,909,2); INSERT INTO "Wine_Descriptor" VALUES(1819,910,1); INSERT INTO "Wine_Descriptor" VALUES(1820,910,2); INSERT INTO "Wine_Descriptor" VALUES(1821,911,1); INSERT INTO "Wine_Descriptor" VALUES(1822,911,2); INSERT INTO "Wine_Descriptor" VALUES(1823,912,1); INSERT INTO "Wine_Descriptor" VALUES(1824,912,2); INSERT INTO "Wine_Descriptor" VALUES(1825,913,1); INSERT INTO "Wine_Descriptor" VALUES(1826,913,2); INSERT INTO "Wine_Descriptor" VALUES(1827,914,1); INSERT INTO "Wine_Descriptor" VALUES(1828,914,2); INSERT INTO "Wine_Descriptor" VALUES(1829,915,1); INSERT INTO "Wine_Descriptor" VALUES(1830,915,2); INSERT INTO "Wine_Descriptor" VALUES(1831,916,1); INSERT INTO "Wine_Descriptor" VALUES(1832,916,2); INSERT INTO "Wine_Descriptor" VALUES(1833,917,1); INSERT INTO "Wine_Descriptor" VALUES(1834,917,2); INSERT INTO "Wine_Descriptor" VALUES(1835,918,1); INSERT INTO "Wine_Descriptor" VALUES(1836,918,2); INSERT INTO "Wine_Descriptor" VALUES(1837,919,1); INSERT INTO "Wine_Descriptor" VALUES(1838,919,2); INSERT INTO "Wine_Descriptor" VALUES(1839,920,1); INSERT INTO "Wine_Descriptor" VALUES(1840,920,2); INSERT INTO "Wine_Descriptor" VALUES(1841,921,1); INSERT INTO "Wine_Descriptor" VALUES(1842,921,2); INSERT INTO "Wine_Descriptor" VALUES(1843,922,1); INSERT INTO "Wine_Descriptor" VALUES(1844,922,2); INSERT INTO "Wine_Descriptor" VALUES(1845,923,1); INSERT INTO "Wine_Descriptor" VALUES(1846,923,2); INSERT INTO "Wine_Descriptor" VALUES(1847,924,1); INSERT INTO "Wine_Descriptor" VALUES(1848,924,2); INSERT INTO "Wine_Descriptor" VALUES(1849,925,1); INSERT INTO "Wine_Descriptor" VALUES(1850,925,2); INSERT INTO "Wine_Descriptor" VALUES(1851,926,1); INSERT INTO "Wine_Descriptor" VALUES(1852,926,2); INSERT INTO "Wine_Descriptor" VALUES(1853,927,1); INSERT INTO "Wine_Descriptor" VALUES(1854,927,2); INSERT INTO "Wine_Descriptor" VALUES(1855,928,1); INSERT INTO "Wine_Descriptor" VALUES(1856,928,2); INSERT INTO "Wine_Descriptor" VALUES(1857,929,1); INSERT INTO "Wine_Descriptor" VALUES(1858,929,2); INSERT INTO "Wine_Descriptor" VALUES(1859,930,1); INSERT INTO "Wine_Descriptor" VALUES(1860,930,2); INSERT INTO "Wine_Descriptor" VALUES(1861,931,1); INSERT INTO "Wine_Descriptor" VALUES(1862,931,2); INSERT INTO "Wine_Descriptor" VALUES(1863,932,1); INSERT INTO "Wine_Descriptor" VALUES(1864,932,2); INSERT INTO "Wine_Descriptor" VALUES(1865,933,1); INSERT INTO "Wine_Descriptor" VALUES(1866,933,2); INSERT INTO "Wine_Descriptor" VALUES(1867,934,1); INSERT INTO "Wine_Descriptor" VALUES(1868,934,2); INSERT INTO "Wine_Descriptor" VALUES(1869,935,9); INSERT INTO "Wine_Descriptor" VALUES(1870,935,10); INSERT INTO "Wine_Descriptor" VALUES(1871,936,9); INSERT INTO "Wine_Descriptor" VALUES(1872,936,10); INSERT INTO "Wine_Descriptor" VALUES(1873,937,9); INSERT INTO "Wine_Descriptor" VALUES(1874,937,10); INSERT INTO "Wine_Descriptor" VALUES(1875,938,9); INSERT INTO "Wine_Descriptor" VALUES(1876,938,10); INSERT INTO "Wine_Descriptor" VALUES(1877,939,9); INSERT INTO "Wine_Descriptor" VALUES(1878,939,10); INSERT INTO "Wine_Descriptor" VALUES(1879,940,9); INSERT INTO "Wine_Descriptor" VALUES(1880,940,10); INSERT INTO "Wine_Descriptor" VALUES(1881,941,9); INSERT INTO "Wine_Descriptor" VALUES(1882,941,10); INSERT INTO "Wine_Descriptor" VALUES(1883,942,9); INSERT INTO "Wine_Descriptor" VALUES(1884,942,10); INSERT INTO "Wine_Descriptor" VALUES(1885,943,9); INSERT INTO "Wine_Descriptor" VALUES(1886,943,10); INSERT INTO "Wine_Descriptor" VALUES(1887,944,9); INSERT INTO "Wine_Descriptor" VALUES(1888,944,10); INSERT INTO "Wine_Descriptor" VALUES(1889,945,9); INSERT INTO "Wine_Descriptor" VALUES(1890,945,10); INSERT INTO "Wine_Descriptor" VALUES(1891,946,9); INSERT INTO "Wine_Descriptor" VALUES(1892,946,10); INSERT INTO "Wine_Descriptor" VALUES(1893,947,9); INSERT INTO "Wine_Descriptor" VALUES(1894,947,10); INSERT INTO "Wine_Descriptor" VALUES(1895,948,9); INSERT INTO "Wine_Descriptor" VALUES(1896,948,10); INSERT INTO "Wine_Descriptor" VALUES(1897,949,9); INSERT INTO "Wine_Descriptor" VALUES(1898,949,10); INSERT INTO "Wine_Descriptor" VALUES(1899,950,9); INSERT INTO "Wine_Descriptor" VALUES(1900,950,10); INSERT INTO "Wine_Descriptor" VALUES(1901,951,9); INSERT INTO "Wine_Descriptor" VALUES(1902,951,10); INSERT INTO "Wine_Descriptor" VALUES(1903,952,9); INSERT INTO "Wine_Descriptor" VALUES(1904,952,10); INSERT INTO "Wine_Descriptor" VALUES(1905,953,9); INSERT INTO "Wine_Descriptor" VALUES(1906,953,10); INSERT INTO "Wine_Descriptor" VALUES(1907,954,9); INSERT INTO "Wine_Descriptor" VALUES(1908,954,10); INSERT INTO "Wine_Descriptor" VALUES(1909,955,9); INSERT INTO "Wine_Descriptor" VALUES(1910,955,10); INSERT INTO "Wine_Descriptor" VALUES(1911,956,9); INSERT INTO "Wine_Descriptor" VALUES(1912,956,10); INSERT INTO "Wine_Descriptor" VALUES(1913,957,9); INSERT INTO "Wine_Descriptor" VALUES(1914,957,10); INSERT INTO "Wine_Descriptor" VALUES(1915,958,9); INSERT INTO "Wine_Descriptor" VALUES(1916,958,10); INSERT INTO "Wine_Descriptor" VALUES(1917,959,9); INSERT INTO "Wine_Descriptor" VALUES(1918,959,10); INSERT INTO "Wine_Descriptor" VALUES(1919,960,9); INSERT INTO "Wine_Descriptor" VALUES(1920,960,10); INSERT INTO "Wine_Descriptor" VALUES(1921,961,9); INSERT INTO "Wine_Descriptor" VALUES(1922,961,10); INSERT INTO "Wine_Descriptor" VALUES(1923,962,9); INSERT INTO "Wine_Descriptor" VALUES(1924,962,10); INSERT INTO "Wine_Descriptor" VALUES(1925,963,9); INSERT INTO "Wine_Descriptor" VALUES(1926,963,10); INSERT INTO "Wine_Descriptor" VALUES(1927,964,9); INSERT INTO "Wine_Descriptor" VALUES(1928,964,10); INSERT INTO "Wine_Descriptor" VALUES(1929,965,9); INSERT INTO "Wine_Descriptor" VALUES(1930,965,10); INSERT INTO "Wine_Descriptor" VALUES(1931,966,9); INSERT INTO "Wine_Descriptor" VALUES(1932,966,10); INSERT INTO "Wine_Descriptor" VALUES(1933,967,9); INSERT INTO "Wine_Descriptor" VALUES(1934,967,10); INSERT INTO "Wine_Descriptor" VALUES(1935,968,9); INSERT INTO "Wine_Descriptor" VALUES(1936,968,10); INSERT INTO "Wine_Descriptor" VALUES(1937,969,9); INSERT INTO "Wine_Descriptor" VALUES(1938,969,10); INSERT INTO "Wine_Descriptor" VALUES(1939,970,9); INSERT INTO "Wine_Descriptor" VALUES(1940,970,10); INSERT INTO "Wine_Descriptor" VALUES(1941,971,9); INSERT INTO "Wine_Descriptor" VALUES(1942,971,10); INSERT INTO "Wine_Descriptor" VALUES(1943,972,9); INSERT INTO "Wine_Descriptor" VALUES(1944,972,10); INSERT INTO "Wine_Descriptor" VALUES(1945,973,9); INSERT INTO "Wine_Descriptor" VALUES(1946,973,10); INSERT INTO "Wine_Descriptor" VALUES(1947,974,9); INSERT INTO "Wine_Descriptor" VALUES(1948,974,10); INSERT INTO "Wine_Descriptor" VALUES(1949,975,9); INSERT INTO "Wine_Descriptor" VALUES(1950,975,10); INSERT INTO "Wine_Descriptor" VALUES(1951,976,9); INSERT INTO "Wine_Descriptor" VALUES(1952,976,10); INSERT INTO "Wine_Descriptor" VALUES(1953,977,9); INSERT INTO "Wine_Descriptor" VALUES(1954,977,10); INSERT INTO "Wine_Descriptor" VALUES(1955,978,9); INSERT INTO "Wine_Descriptor" VALUES(1956,978,10); INSERT INTO "Wine_Descriptor" VALUES(1957,979,9); INSERT INTO "Wine_Descriptor" VALUES(1958,979,10); INSERT INTO "Wine_Descriptor" VALUES(1959,980,9); INSERT INTO "Wine_Descriptor" VALUES(1960,980,10); INSERT INTO "Wine_Descriptor" VALUES(1961,981,9); INSERT INTO "Wine_Descriptor" VALUES(1962,981,10); INSERT INTO "Wine_Descriptor" VALUES(1963,982,9); INSERT INTO "Wine_Descriptor" VALUES(1964,982,10); INSERT INTO "Wine_Descriptor" VALUES(1965,983,9); INSERT INTO "Wine_Descriptor" VALUES(1966,983,10); INSERT INTO "Wine_Descriptor" VALUES(1967,984,9); INSERT INTO "Wine_Descriptor" VALUES(1968,984,10); INSERT INTO "Wine_Descriptor" VALUES(1969,985,9); INSERT INTO "Wine_Descriptor" VALUES(1970,985,10); INSERT INTO "Wine_Descriptor" VALUES(1971,986,9); INSERT INTO "Wine_Descriptor" VALUES(1972,986,10); INSERT INTO "Wine_Descriptor" VALUES(1973,987,9); INSERT INTO "Wine_Descriptor" VALUES(1974,987,10); INSERT INTO "Wine_Descriptor" VALUES(1975,988,9); INSERT INTO "Wine_Descriptor" VALUES(1976,988,10); INSERT INTO "Wine_Descriptor" VALUES(1977,989,9); INSERT INTO "Wine_Descriptor" VALUES(1978,989,10); INSERT INTO "Wine_Descriptor" VALUES(1979,990,9); INSERT INTO "Wine_Descriptor" VALUES(1980,990,10); INSERT INTO "Wine_Descriptor" VALUES(1981,991,9); INSERT INTO "Wine_Descriptor" VALUES(1982,991,10); INSERT INTO "Wine_Descriptor" VALUES(1983,992,9); INSERT INTO "Wine_Descriptor" VALUES(1984,992,10); INSERT INTO "Wine_Descriptor" VALUES(1985,993,9); INSERT INTO "Wine_Descriptor" VALUES(1986,993,10); INSERT INTO "Wine_Descriptor" VALUES(1987,994,9); INSERT INTO "Wine_Descriptor" VALUES(1988,994,10); INSERT INTO "Wine_Descriptor" VALUES(1989,995,9); INSERT INTO "Wine_Descriptor" VALUES(1990,995,10); INSERT INTO "Wine_Descriptor" VALUES(1991,996,9); INSERT INTO "Wine_Descriptor" VALUES(1992,996,10); INSERT INTO "Wine_Descriptor" VALUES(1993,997,9); INSERT INTO "Wine_Descriptor" VALUES(1994,997,10); INSERT INTO "Wine_Descriptor" VALUES(1995,998,9); INSERT INTO "Wine_Descriptor" VALUES(1996,998,10); INSERT INTO "Wine_Descriptor" VALUES(1997,999,9); INSERT INTO "Wine_Descriptor" VALUES(1998,999,10); INSERT INTO "Wine_Descriptor" VALUES(1999,1000,9); INSERT INTO "Wine_Descriptor" VALUES(2000,1000,10); INSERT INTO "Wine_Descriptor" VALUES(2001,1001,9); INSERT INTO "Wine_Descriptor" VALUES(2002,1001,10); INSERT INTO "Wine_Descriptor" VALUES(2003,1002,9); INSERT INTO "Wine_Descriptor" VALUES(2004,1002,10); INSERT INTO "Wine_Descriptor" VALUES(2005,1003,9); INSERT INTO "Wine_Descriptor" VALUES(2006,1003,10); INSERT INTO "Wine_Descriptor" VALUES(2007,1004,9); INSERT INTO "Wine_Descriptor" VALUES(2008,1004,10); INSERT INTO "Wine_Descriptor" VALUES(2009,1005,9); INSERT INTO "Wine_Descriptor" VALUES(2010,1005,10); INSERT INTO "Wine_Descriptor" VALUES(2011,1006,9); INSERT INTO "Wine_Descriptor" VALUES(2012,1006,10); INSERT INTO "Wine_Descriptor" VALUES(2013,1007,9); INSERT INTO "Wine_Descriptor" VALUES(2014,1007,10); INSERT INTO "Wine_Descriptor" VALUES(2015,1008,9); INSERT INTO "Wine_Descriptor" VALUES(2016,1008,10); INSERT INTO "Wine_Descriptor" VALUES(2017,1009,9); INSERT INTO "Wine_Descriptor" VALUES(2018,1009,10); INSERT INTO "Wine_Descriptor" VALUES(2019,1010,9); INSERT INTO "Wine_Descriptor" VALUES(2020,1010,10); INSERT INTO "Wine_Descriptor" VALUES(2021,1011,9); INSERT INTO "Wine_Descriptor" VALUES(2022,1011,10); INSERT INTO "Wine_Descriptor" VALUES(2023,1012,9); INSERT INTO "Wine_Descriptor" VALUES(2024,1012,10); INSERT INTO "Wine_Descriptor" VALUES(2025,1013,9); INSERT INTO "Wine_Descriptor" VALUES(2026,1013,10); INSERT INTO "Wine_Descriptor" VALUES(2027,1014,9); INSERT INTO "Wine_Descriptor" VALUES(2028,1014,10); INSERT INTO "Wine_Descriptor" VALUES(2029,1015,9); INSERT INTO "Wine_Descriptor" VALUES(2030,1015,10); INSERT INTO "Wine_Descriptor" VALUES(2031,1016,9); INSERT INTO "Wine_Descriptor" VALUES(2032,1016,10); INSERT INTO "Wine_Descriptor" VALUES(2033,1017,9); INSERT INTO "Wine_Descriptor" VALUES(2034,1017,10); INSERT INTO "Wine_Descriptor" VALUES(2035,1018,9); INSERT INTO "Wine_Descriptor" VALUES(2036,1018,10); INSERT INTO "Wine_Descriptor" VALUES(2037,1019,9); INSERT INTO "Wine_Descriptor" VALUES(2038,1019,10); INSERT INTO "Wine_Descriptor" VALUES(2039,1020,9); INSERT INTO "Wine_Descriptor" VALUES(2040,1020,10); INSERT INTO "Wine_Descriptor" VALUES(2041,1021,9); INSERT INTO "Wine_Descriptor" VALUES(2042,1021,10); INSERT INTO "Wine_Descriptor" VALUES(2043,1022,9); INSERT INTO "Wine_Descriptor" VALUES(2044,1022,10); INSERT INTO "Wine_Descriptor" VALUES(2045,1023,9); INSERT INTO "Wine_Descriptor" VALUES(2046,1023,10); INSERT INTO "Wine_Descriptor" VALUES(2047,1024,9); INSERT INTO "Wine_Descriptor" VALUES(2048,1024,10); INSERT INTO "Wine_Descriptor" VALUES(2049,1025,9); INSERT INTO "Wine_Descriptor" VALUES(2050,1025,10); INSERT INTO "Wine_Descriptor" VALUES(2051,1026,9); INSERT INTO "Wine_Descriptor" VALUES(2052,1026,10); INSERT INTO "Wine_Descriptor" VALUES(2053,1027,9); INSERT INTO "Wine_Descriptor" VALUES(2054,1027,10); INSERT INTO "Wine_Descriptor" VALUES(2055,1028,9); INSERT INTO "Wine_Descriptor" VALUES(2056,1028,10); INSERT INTO "Wine_Descriptor" VALUES(2057,1029,9); INSERT INTO "Wine_Descriptor" VALUES(2058,1029,10); INSERT INTO "Wine_Descriptor" VALUES(2059,1030,9); INSERT INTO "Wine_Descriptor" VALUES(2060,1030,10); INSERT INTO "Wine_Descriptor" VALUES(2061,1031,9); INSERT INTO "Wine_Descriptor" VALUES(2062,1031,10); INSERT INTO "Wine_Descriptor" VALUES(2063,1032,9); INSERT INTO "Wine_Descriptor" VALUES(2064,1032,10); INSERT INTO "Wine_Descriptor" VALUES(2065,1033,9); INSERT INTO "Wine_Descriptor" VALUES(2066,1033,10); INSERT INTO "Wine_Descriptor" VALUES(2067,1034,9); INSERT INTO "Wine_Descriptor" VALUES(2068,1034,10); INSERT INTO "Wine_Descriptor" VALUES(2069,1035,9); INSERT INTO "Wine_Descriptor" VALUES(2070,1035,10); INSERT INTO "Wine_Descriptor" VALUES(2071,1036,9); INSERT INTO "Wine_Descriptor" VALUES(2072,1036,10); INSERT INTO "Wine_Descriptor" VALUES(2073,1037,9); INSERT INTO "Wine_Descriptor" VALUES(2074,1037,10); INSERT INTO "Wine_Descriptor" VALUES(2075,1038,9); INSERT INTO "Wine_Descriptor" VALUES(2076,1038,10); INSERT INTO "Wine_Descriptor" VALUES(2077,1039,9); INSERT INTO "Wine_Descriptor" VALUES(2078,1039,10); INSERT INTO "Wine_Descriptor" VALUES(2079,1040,9); INSERT INTO "Wine_Descriptor" VALUES(2080,1040,10); INSERT INTO "Wine_Descriptor" VALUES(2081,1041,9); INSERT INTO "Wine_Descriptor" VALUES(2082,1041,10); INSERT INTO "Wine_Descriptor" VALUES(2083,1042,9); INSERT INTO "Wine_Descriptor" VALUES(2084,1042,10); INSERT INTO "Wine_Descriptor" VALUES(2085,1043,9); INSERT INTO "Wine_Descriptor" VALUES(2086,1043,10); INSERT INTO "Wine_Descriptor" VALUES(2087,1044,9); INSERT INTO "Wine_Descriptor" VALUES(2088,1044,10); INSERT INTO "Wine_Descriptor" VALUES(2089,1045,9); INSERT INTO "Wine_Descriptor" VALUES(2090,1045,10); INSERT INTO "Wine_Descriptor" VALUES(2091,1046,9); INSERT INTO "Wine_Descriptor" VALUES(2092,1046,10); INSERT INTO "Wine_Descriptor" VALUES(2093,1047,9); INSERT INTO "Wine_Descriptor" VALUES(2094,1047,10); INSERT INTO "Wine_Descriptor" VALUES(2095,1048,9); INSERT INTO "Wine_Descriptor" VALUES(2096,1048,10); INSERT INTO "Wine_Descriptor" VALUES(2097,1049,9); INSERT INTO "Wine_Descriptor" VALUES(2098,1049,10); INSERT INTO "Wine_Descriptor" VALUES(2099,1050,9); INSERT INTO "Wine_Descriptor" VALUES(2100,1050,10); INSERT INTO "Wine_Descriptor" VALUES(2101,1051,9); INSERT INTO "Wine_Descriptor" VALUES(2102,1051,10); INSERT INTO "Wine_Descriptor" VALUES(2103,1052,9); INSERT INTO "Wine_Descriptor" VALUES(2104,1052,10); INSERT INTO "Wine_Descriptor" VALUES(2105,1053,9); INSERT INTO "Wine_Descriptor" VALUES(2106,1053,10); INSERT INTO "Wine_Descriptor" VALUES(2107,1054,9); INSERT INTO "Wine_Descriptor" VALUES(2108,1054,10); INSERT INTO "Wine_Descriptor" VALUES(2109,1055,9); INSERT INTO "Wine_Descriptor" VALUES(2110,1055,10); INSERT INTO "Wine_Descriptor" VALUES(2111,1056,9); INSERT INTO "Wine_Descriptor" VALUES(2112,1056,10); INSERT INTO "Wine_Descriptor" VALUES(2113,1057,9); INSERT INTO "Wine_Descriptor" VALUES(2114,1057,10); INSERT INTO "Wine_Descriptor" VALUES(2115,1058,9); INSERT INTO "Wine_Descriptor" VALUES(2116,1058,10); INSERT INTO "Wine_Descriptor" VALUES(2117,1059,9); INSERT INTO "Wine_Descriptor" VALUES(2118,1059,10); INSERT INTO "Wine_Descriptor" VALUES(2119,1060,9); INSERT INTO "Wine_Descriptor" VALUES(2120,1060,10); INSERT INTO "Wine_Descriptor" VALUES(2121,1061,9); INSERT INTO "Wine_Descriptor" VALUES(2122,1061,10); INSERT INTO "Wine_Descriptor" VALUES(2123,1062,9); INSERT INTO "Wine_Descriptor" VALUES(2124,1062,10); INSERT INTO "Wine_Descriptor" VALUES(2125,1063,9); INSERT INTO "Wine_Descriptor" VALUES(2126,1063,10); INSERT INTO "Wine_Descriptor" VALUES(2127,1064,9); INSERT INTO "Wine_Descriptor" VALUES(2128,1064,10); INSERT INTO "Wine_Descriptor" VALUES(2129,1065,9); INSERT INTO "Wine_Descriptor" VALUES(2130,1065,10); INSERT INTO "Wine_Descriptor" VALUES(2131,1066,9); INSERT INTO "Wine_Descriptor" VALUES(2132,1066,10); INSERT INTO "Wine_Descriptor" VALUES(2133,1067,9); INSERT INTO "Wine_Descriptor" VALUES(2134,1067,10); INSERT INTO "Wine_Descriptor" VALUES(2135,1068,9); INSERT INTO "Wine_Descriptor" VALUES(2136,1068,10); INSERT INTO "Wine_Descriptor" VALUES(2137,1069,9); INSERT INTO "Wine_Descriptor" VALUES(2138,1069,10); INSERT INTO "Wine_Descriptor" VALUES(2139,1070,9); INSERT INTO "Wine_Descriptor" VALUES(2140,1070,10); INSERT INTO "Wine_Descriptor" VALUES(2141,1071,9); INSERT INTO "Wine_Descriptor" VALUES(2142,1071,10); INSERT INTO "Wine_Descriptor" VALUES(2143,1072,9); INSERT INTO "Wine_Descriptor" VALUES(2144,1072,10); INSERT INTO "Wine_Descriptor" VALUES(2145,1073,9); INSERT INTO "Wine_Descriptor" VALUES(2146,1073,10); INSERT INTO "Wine_Descriptor" VALUES(2147,1074,9); INSERT INTO "Wine_Descriptor" VALUES(2148,1074,10); INSERT INTO "Wine_Descriptor" VALUES(2149,1075,9); INSERT INTO "Wine_Descriptor" VALUES(2150,1075,10); INSERT INTO "Wine_Descriptor" VALUES(2151,1076,9); INSERT INTO "Wine_Descriptor" VALUES(2152,1076,10); INSERT INTO "Wine_Descriptor" VALUES(2153,1077,9); INSERT INTO "Wine_Descriptor" VALUES(2154,1077,10); INSERT INTO "Wine_Descriptor" VALUES(2155,1078,9); INSERT INTO "Wine_Descriptor" VALUES(2156,1078,10); INSERT INTO "Wine_Descriptor" VALUES(2157,1079,9); INSERT INTO "Wine_Descriptor" VALUES(2158,1079,10); INSERT INTO "Wine_Descriptor" VALUES(2159,1080,9); INSERT INTO "Wine_Descriptor" VALUES(2160,1080,10); INSERT INTO "Wine_Descriptor" VALUES(2161,1081,9); INSERT INTO "Wine_Descriptor" VALUES(2162,1081,10); INSERT INTO "Wine_Descriptor" VALUES(2163,1082,9); INSERT INTO "Wine_Descriptor" VALUES(2164,1082,10); INSERT INTO "Wine_Descriptor" VALUES(2165,1083,9); INSERT INTO "Wine_Descriptor" VALUES(2166,1083,10); INSERT INTO "Wine_Descriptor" VALUES(2167,1084,9); INSERT INTO "Wine_Descriptor" VALUES(2168,1084,10); INSERT INTO "Wine_Descriptor" VALUES(2169,1085,9); INSERT INTO "Wine_Descriptor" VALUES(2170,1085,10); INSERT INTO "Wine_Descriptor" VALUES(2171,1086,9); INSERT INTO "Wine_Descriptor" VALUES(2172,1086,10); INSERT INTO "Wine_Descriptor" VALUES(2173,1087,9); INSERT INTO "Wine_Descriptor" VALUES(2174,1087,10); INSERT INTO "Wine_Descriptor" VALUES(2175,1088,9); INSERT INTO "Wine_Descriptor" VALUES(2176,1088,10); INSERT INTO "Wine_Descriptor" VALUES(2177,1089,9); INSERT INTO "Wine_Descriptor" VALUES(2178,1089,10); INSERT INTO "Wine_Descriptor" VALUES(2179,1090,9); INSERT INTO "Wine_Descriptor" VALUES(2180,1090,10); INSERT INTO "Wine_Descriptor" VALUES(2181,1091,9); INSERT INTO "Wine_Descriptor" VALUES(2182,1091,10); INSERT INTO "Wine_Descriptor" VALUES(2183,1092,9); INSERT INTO "Wine_Descriptor" VALUES(2184,1092,10); INSERT INTO "Wine_Descriptor" VALUES(2185,1093,9); INSERT INTO "Wine_Descriptor" VALUES(2186,1093,10); INSERT INTO "Wine_Descriptor" VALUES(2187,1094,9); INSERT INTO "Wine_Descriptor" VALUES(2188,1094,10); INSERT INTO "Wine_Descriptor" VALUES(2189,1095,9); INSERT INTO "Wine_Descriptor" VALUES(2190,1095,10); INSERT INTO "Wine_Descriptor" VALUES(2191,1096,9); INSERT INTO "Wine_Descriptor" VALUES(2192,1096,10); INSERT INTO "Wine_Descriptor" VALUES(2193,1097,9); INSERT INTO "Wine_Descriptor" VALUES(2194,1097,10); INSERT INTO "Wine_Descriptor" VALUES(2195,1098,9); INSERT INTO "Wine_Descriptor" VALUES(2196,1098,10); INSERT INTO "Wine_Descriptor" VALUES(2197,1099,9); INSERT INTO "Wine_Descriptor" VALUES(2198,1099,10); INSERT INTO "Wine_Descriptor" VALUES(2199,1100,9); INSERT INTO "Wine_Descriptor" VALUES(2200,1100,10); INSERT INTO "Wine_Descriptor" VALUES(2201,1101,9); INSERT INTO "Wine_Descriptor" VALUES(2202,1101,10); INSERT INTO "Wine_Descriptor" VALUES(2203,1102,9); INSERT INTO "Wine_Descriptor" VALUES(2204,1102,10); INSERT INTO "Wine_Descriptor" VALUES(2205,1103,9); INSERT INTO "Wine_Descriptor" VALUES(2206,1103,10); INSERT INTO "Wine_Descriptor" VALUES(2207,1104,9); INSERT INTO "Wine_Descriptor" VALUES(2208,1104,10); INSERT INTO "Wine_Descriptor" VALUES(2209,1105,9); INSERT INTO "Wine_Descriptor" VALUES(2210,1105,10); INSERT INTO "Wine_Descriptor" VALUES(2211,1106,9); INSERT INTO "Wine_Descriptor" VALUES(2212,1106,10); INSERT INTO "Wine_Descriptor" VALUES(2213,1107,9); INSERT INTO "Wine_Descriptor" VALUES(2214,1107,10); INSERT INTO "Wine_Descriptor" VALUES(2215,1108,9); INSERT INTO "Wine_Descriptor" VALUES(2216,1108,10); INSERT INTO "Wine_Descriptor" VALUES(2217,1109,9); INSERT INTO "Wine_Descriptor" VALUES(2218,1109,10); INSERT INTO "Wine_Descriptor" VALUES(2219,1110,9); INSERT INTO "Wine_Descriptor" VALUES(2220,1110,10); INSERT INTO "Wine_Descriptor" VALUES(2221,1111,9); INSERT INTO "Wine_Descriptor" VALUES(2222,1111,10); INSERT INTO "Wine_Descriptor" VALUES(2223,1112,6); INSERT INTO "Wine_Descriptor" VALUES(2224,1112,7); INSERT INTO "Wine_Descriptor" VALUES(2225,1113,6); INSERT INTO "Wine_Descriptor" VALUES(2226,1113,7); INSERT INTO "Wine_Descriptor" VALUES(2227,1114,6); INSERT INTO "Wine_Descriptor" VALUES(2228,1114,7); INSERT INTO "Wine_Descriptor" VALUES(2229,1115,6); INSERT INTO "Wine_Descriptor" VALUES(2230,1115,7); INSERT INTO "Wine_Descriptor" VALUES(2231,1116,6); INSERT INTO "Wine_Descriptor" VALUES(2232,1116,7); INSERT INTO "Wine_Descriptor" VALUES(2233,1117,6); INSERT INTO "Wine_Descriptor" VALUES(2234,1117,7); INSERT INTO "Wine_Descriptor" VALUES(2235,1118,6); INSERT INTO "Wine_Descriptor" VALUES(2236,1118,7); INSERT INTO "Wine_Descriptor" VALUES(2237,1119,6); INSERT INTO "Wine_Descriptor" VALUES(2238,1119,7); INSERT INTO "Wine_Descriptor" VALUES(2239,1120,6); INSERT INTO "Wine_Descriptor" VALUES(2240,1120,7); INSERT INTO "Wine_Descriptor" VALUES(2241,1121,6); INSERT INTO "Wine_Descriptor" VALUES(2242,1121,7); INSERT INTO "Wine_Descriptor" VALUES(2243,1122,6); INSERT INTO "Wine_Descriptor" VALUES(2244,1122,7); INSERT INTO "Wine_Descriptor" VALUES(2245,1123,6); INSERT INTO "Wine_Descriptor" VALUES(2246,1123,7); INSERT INTO "Wine_Descriptor" VALUES(2247,1124,6); INSERT INTO "Wine_Descriptor" VALUES(2248,1124,7); INSERT INTO "Wine_Descriptor" VALUES(2249,1125,6); INSERT INTO "Wine_Descriptor" VALUES(2250,1125,7); INSERT INTO "Wine_Descriptor" VALUES(2251,1126,6); INSERT INTO "Wine_Descriptor" VALUES(2252,1126,7); INSERT INTO "Wine_Descriptor" VALUES(2253,1127,6); INSERT INTO "Wine_Descriptor" VALUES(2254,1127,7); INSERT INTO "Wine_Descriptor" VALUES(2255,1128,6); INSERT INTO "Wine_Descriptor" VALUES(2256,1128,7); INSERT INTO "Wine_Descriptor" VALUES(2257,1129,6); INSERT INTO "Wine_Descriptor" VALUES(2258,1129,7); INSERT INTO "Wine_Descriptor" VALUES(2259,1130,6); INSERT INTO "Wine_Descriptor" VALUES(2260,1130,7); INSERT INTO "Wine_Descriptor" VALUES(2261,1131,6); INSERT INTO "Wine_Descriptor" VALUES(2262,1131,7); INSERT INTO "Wine_Descriptor" VALUES(2263,1132,6); INSERT INTO "Wine_Descriptor" VALUES(2264,1132,7); INSERT INTO "Wine_Descriptor" VALUES(2265,1133,6); INSERT INTO "Wine_Descriptor" VALUES(2266,1133,7); INSERT INTO "Wine_Descriptor" VALUES(2267,1134,6); INSERT INTO "Wine_Descriptor" VALUES(2268,1134,7); INSERT INTO "Wine_Descriptor" VALUES(2269,1135,6); INSERT INTO "Wine_Descriptor" VALUES(2270,1135,7); INSERT INTO "Wine_Descriptor" VALUES(2271,1136,6); INSERT INTO "Wine_Descriptor" VALUES(2272,1136,7); INSERT INTO "Wine_Descriptor" VALUES(2273,1137,6); INSERT INTO "Wine_Descriptor" VALUES(2274,1137,7); INSERT INTO "Wine_Descriptor" VALUES(2275,1138,6); INSERT INTO "Wine_Descriptor" VALUES(2276,1138,7); INSERT INTO "Wine_Descriptor" VALUES(2277,1139,6); INSERT INTO "Wine_Descriptor" VALUES(2278,1139,7); INSERT INTO "Wine_Descriptor" VALUES(2279,1140,6); INSERT INTO "Wine_Descriptor" VALUES(2280,1140,7); INSERT INTO "Wine_Descriptor" VALUES(2281,1141,6); INSERT INTO "Wine_Descriptor" VALUES(2282,1141,7); INSERT INTO "Wine_Descriptor" VALUES(2283,1142,6); INSERT INTO "Wine_Descriptor" VALUES(2284,1142,7); INSERT INTO "Wine_Descriptor" VALUES(2285,1143,6); INSERT INTO "Wine_Descriptor" VALUES(2286,1143,7); INSERT INTO "Wine_Descriptor" VALUES(2287,1144,6); INSERT INTO "Wine_Descriptor" VALUES(2288,1144,7); INSERT INTO "Wine_Descriptor" VALUES(2289,1145,6); INSERT INTO "Wine_Descriptor" VALUES(2290,1145,7); INSERT INTO "Wine_Descriptor" VALUES(2291,1146,6); INSERT INTO "Wine_Descriptor" VALUES(2292,1146,7); INSERT INTO "Wine_Descriptor" VALUES(2293,1147,6); INSERT INTO "Wine_Descriptor" VALUES(2294,1147,7); INSERT INTO "Wine_Descriptor" VALUES(2295,1148,6); INSERT INTO "Wine_Descriptor" VALUES(2296,1148,7); INSERT INTO "Wine_Descriptor" VALUES(2297,1149,6); INSERT INTO "Wine_Descriptor" VALUES(2298,1149,7); INSERT INTO "Wine_Descriptor" VALUES(2299,1150,6); INSERT INTO "Wine_Descriptor" VALUES(2300,1150,7); INSERT INTO "Wine_Descriptor" VALUES(2301,1151,6); INSERT INTO "Wine_Descriptor" VALUES(2302,1151,7); INSERT INTO "Wine_Descriptor" VALUES(2303,1152,6); INSERT INTO "Wine_Descriptor" VALUES(2304,1152,7); INSERT INTO "Wine_Descriptor" VALUES(2305,1153,6); INSERT INTO "Wine_Descriptor" VALUES(2306,1153,7); INSERT INTO "Wine_Descriptor" VALUES(2307,1154,6); INSERT INTO "Wine_Descriptor" VALUES(2308,1154,7); INSERT INTO "Wine_Descriptor" VALUES(2309,1155,6); INSERT INTO "Wine_Descriptor" VALUES(2310,1155,7); INSERT INTO "Wine_Descriptor" VALUES(2311,1156,6); INSERT INTO "Wine_Descriptor" VALUES(2312,1156,7); INSERT INTO "Wine_Descriptor" VALUES(2313,1157,6); INSERT INTO "Wine_Descriptor" VALUES(2314,1157,7); INSERT INTO "Wine_Descriptor" VALUES(2315,1158,6); INSERT INTO "Wine_Descriptor" VALUES(2316,1158,7); INSERT INTO "Wine_Descriptor" VALUES(2317,1159,6); INSERT INTO "Wine_Descriptor" VALUES(2318,1159,7); INSERT INTO "Wine_Descriptor" VALUES(2319,1160,6); INSERT INTO "Wine_Descriptor" VALUES(2320,1160,7); INSERT INTO "Wine_Descriptor" VALUES(2321,1161,6); INSERT INTO "Wine_Descriptor" VALUES(2322,1161,7); INSERT INTO "Wine_Descriptor" VALUES(2323,1162,6); INSERT INTO "Wine_Descriptor" VALUES(2324,1162,7); INSERT INTO "Wine_Descriptor" VALUES(2325,1163,6); INSERT INTO "Wine_Descriptor" VALUES(2326,1163,7); INSERT INTO "Wine_Descriptor" VALUES(2327,1164,6); INSERT INTO "Wine_Descriptor" VALUES(2328,1164,7); INSERT INTO "Wine_Descriptor" VALUES(2329,1165,6); INSERT INTO "Wine_Descriptor" VALUES(2330,1165,7); INSERT INTO "Wine_Descriptor" VALUES(2331,1166,6); INSERT INTO "Wine_Descriptor" VALUES(2332,1166,7); INSERT INTO "Wine_Descriptor" VALUES(2333,1167,6); INSERT INTO "Wine_Descriptor" VALUES(2334,1167,7); INSERT INTO "Wine_Descriptor" VALUES(2335,1168,6); INSERT INTO "Wine_Descriptor" VALUES(2336,1168,7); INSERT INTO "Wine_Descriptor" VALUES(2337,1169,6); INSERT INTO "Wine_Descriptor" VALUES(2338,1169,7); INSERT INTO "Wine_Descriptor" VALUES(2339,1170,6); INSERT INTO "Wine_Descriptor" VALUES(2340,1170,7); INSERT INTO "Wine_Descriptor" VALUES(2341,1171,6); INSERT INTO "Wine_Descriptor" VALUES(2342,1171,7); INSERT INTO "Wine_Descriptor" VALUES(2343,1172,6); INSERT INTO "Wine_Descriptor" VALUES(2344,1172,7); INSERT INTO "Wine_Descriptor" VALUES(2345,1173,6); INSERT INTO "Wine_Descriptor" VALUES(2346,1173,7); INSERT INTO "Wine_Descriptor" VALUES(2347,1174,6); INSERT INTO "Wine_Descriptor" VALUES(2348,1174,7); INSERT INTO "Wine_Descriptor" VALUES(2349,1175,6); INSERT INTO "Wine_Descriptor" VALUES(2350,1175,7); INSERT INTO "Wine_Descriptor" VALUES(2351,1176,6); INSERT INTO "Wine_Descriptor" VALUES(2352,1176,7); INSERT INTO "Wine_Descriptor" VALUES(2353,1177,6); INSERT INTO "Wine_Descriptor" VALUES(2354,1177,7); INSERT INTO "Wine_Descriptor" VALUES(2355,1178,6); INSERT INTO "Wine_Descriptor" VALUES(2356,1178,7); INSERT INTO "Wine_Descriptor" VALUES(2357,1179,6); INSERT INTO "Wine_Descriptor" VALUES(2358,1179,7); INSERT INTO "Wine_Descriptor" VALUES(2359,1180,6); INSERT INTO "Wine_Descriptor" VALUES(2360,1180,7); INSERT INTO "Wine_Descriptor" VALUES(2361,1181,6); INSERT INTO "Wine_Descriptor" VALUES(2362,1181,7); INSERT INTO "Wine_Descriptor" VALUES(2363,1182,6); INSERT INTO "Wine_Descriptor" VALUES(2364,1182,7); INSERT INTO "Wine_Descriptor" VALUES(2365,1183,6); INSERT INTO "Wine_Descriptor" VALUES(2366,1183,7); INSERT INTO "Wine_Descriptor" VALUES(2367,1184,6); INSERT INTO "Wine_Descriptor" VALUES(2368,1184,7); INSERT INTO "Wine_Descriptor" VALUES(2369,1185,6); INSERT INTO "Wine_Descriptor" VALUES(2370,1185,7); INSERT INTO "Wine_Descriptor" VALUES(2371,1186,6); INSERT INTO "Wine_Descriptor" VALUES(2372,1186,7); INSERT INTO "Wine_Descriptor" VALUES(2373,1187,6); INSERT INTO "Wine_Descriptor" VALUES(2374,1187,7); INSERT INTO "Wine_Descriptor" VALUES(2375,1188,6); INSERT INTO "Wine_Descriptor" VALUES(2376,1188,7); INSERT INTO "Wine_Descriptor" VALUES(2377,1189,6); INSERT INTO "Wine_Descriptor" VALUES(2378,1189,7); INSERT INTO "Wine_Descriptor" VALUES(2379,1190,6); INSERT INTO "Wine_Descriptor" VALUES(2380,1190,7); INSERT INTO "Wine_Descriptor" VALUES(2381,1191,6); INSERT INTO "Wine_Descriptor" VALUES(2382,1191,7); INSERT INTO "Wine_Descriptor" VALUES(2383,1192,6); INSERT INTO "Wine_Descriptor" VALUES(2384,1192,7); INSERT INTO "Wine_Descriptor" VALUES(2385,1193,6); INSERT INTO "Wine_Descriptor" VALUES(2386,1193,7); INSERT INTO "Wine_Descriptor" VALUES(2387,1194,6); INSERT INTO "Wine_Descriptor" VALUES(2388,1194,7); INSERT INTO "Wine_Descriptor" VALUES(2389,1195,6); INSERT INTO "Wine_Descriptor" VALUES(2390,1195,7); INSERT INTO "Wine_Descriptor" VALUES(2391,1196,6); INSERT INTO "Wine_Descriptor" VALUES(2392,1196,7); INSERT INTO "Wine_Descriptor" VALUES(2393,1197,6); INSERT INTO "Wine_Descriptor" VALUES(2394,1197,7); INSERT INTO "Wine_Descriptor" VALUES(2395,1198,6); INSERT INTO "Wine_Descriptor" VALUES(2396,1198,7); INSERT INTO "Wine_Descriptor" VALUES(2397,1199,6); INSERT INTO "Wine_Descriptor" VALUES(2398,1199,7); INSERT INTO "Wine_Descriptor" VALUES(2399,1200,6); INSERT INTO "Wine_Descriptor" VALUES(2400,1200,7); INSERT INTO "Wine_Descriptor" VALUES(2401,1201,6); INSERT INTO "Wine_Descriptor" VALUES(2402,1201,7); INSERT INTO "Wine_Descriptor" VALUES(2403,1202,6); INSERT INTO "Wine_Descriptor" VALUES(2404,1202,7); INSERT INTO "Wine_Descriptor" VALUES(2405,1203,6); INSERT INTO "Wine_Descriptor" VALUES(2406,1203,7); INSERT INTO "Wine_Descriptor" VALUES(2407,1204,6); INSERT INTO "Wine_Descriptor" VALUES(2408,1204,7); INSERT INTO "Wine_Descriptor" VALUES(2409,1205,6); INSERT INTO "Wine_Descriptor" VALUES(2410,1205,7); INSERT INTO "Wine_Descriptor" VALUES(2411,1206,6); INSERT INTO "Wine_Descriptor" VALUES(2412,1206,7); INSERT INTO "Wine_Descriptor" VALUES(2413,1207,6); INSERT INTO "Wine_Descriptor" VALUES(2414,1207,7); INSERT INTO "Wine_Descriptor" VALUES(2415,1208,6); INSERT INTO "Wine_Descriptor" VALUES(2416,1208,7); INSERT INTO "Wine_Descriptor" VALUES(2417,1209,6); INSERT INTO "Wine_Descriptor" VALUES(2418,1209,7); INSERT INTO "Wine_Descriptor" VALUES(2419,1210,6); INSERT INTO "Wine_Descriptor" VALUES(2420,1210,7); INSERT INTO "Wine_Descriptor" VALUES(2421,1211,6); INSERT INTO "Wine_Descriptor" VALUES(2422,1211,7); INSERT INTO "Wine_Descriptor" VALUES(2423,1212,6); INSERT INTO "Wine_Descriptor" VALUES(2424,1212,7); INSERT INTO "Wine_Descriptor" VALUES(2425,1213,6); INSERT INTO "Wine_Descriptor" VALUES(2426,1213,7); INSERT INTO "Wine_Descriptor" VALUES(2427,1214,6); INSERT INTO "Wine_Descriptor" VALUES(2428,1214,7); INSERT INTO "Wine_Descriptor" VALUES(2429,1215,6); INSERT INTO "Wine_Descriptor" VALUES(2430,1215,7); INSERT INTO "Wine_Descriptor" VALUES(2431,1216,6); INSERT INTO "Wine_Descriptor" VALUES(2432,1216,7); INSERT INTO "Wine_Descriptor" VALUES(2433,1217,6); INSERT INTO "Wine_Descriptor" VALUES(2434,1217,7); INSERT INTO "Wine_Descriptor" VALUES(2435,1218,6); INSERT INTO "Wine_Descriptor" VALUES(2436,1218,7); INSERT INTO "Wine_Descriptor" VALUES(2437,1219,6); INSERT INTO "Wine_Descriptor" VALUES(2438,1219,7); INSERT INTO "Wine_Descriptor" VALUES(2439,1220,6); INSERT INTO "Wine_Descriptor" VALUES(2440,1220,7); INSERT INTO "Wine_Descriptor" VALUES(2441,1221,6); INSERT INTO "Wine_Descriptor" VALUES(2442,1221,7); INSERT INTO "Wine_Descriptor" VALUES(2443,1222,6); INSERT INTO "Wine_Descriptor" VALUES(2444,1222,7); INSERT INTO "Wine_Descriptor" VALUES(2445,1223,6); INSERT INTO "Wine_Descriptor" VALUES(2446,1223,7); INSERT INTO "Wine_Descriptor" VALUES(2447,1224,6); INSERT INTO "Wine_Descriptor" VALUES(2448,1224,7); INSERT INTO "Wine_Descriptor" VALUES(2449,1225,6); INSERT INTO "Wine_Descriptor" VALUES(2450,1225,7); INSERT INTO "Wine_Descriptor" VALUES(2451,1226,6); INSERT INTO "Wine_Descriptor" VALUES(2452,1226,7); INSERT INTO "Wine_Descriptor" VALUES(2453,1227,6); INSERT INTO "Wine_Descriptor" VALUES(2454,1227,7); INSERT INTO "Wine_Descriptor" VALUES(2455,1228,6); INSERT INTO "Wine_Descriptor" VALUES(2456,1228,7); INSERT INTO "Wine_Descriptor" VALUES(2457,1229,6); INSERT INTO "Wine_Descriptor" VALUES(2458,1229,7); INSERT INTO "Wine_Descriptor" VALUES(2459,1230,6); INSERT INTO "Wine_Descriptor" VALUES(2460,1230,7); INSERT INTO "Wine_Descriptor" VALUES(2461,1231,6); INSERT INTO "Wine_Descriptor" VALUES(2462,1231,7); INSERT INTO "Wine_Descriptor" VALUES(2463,1232,6); INSERT INTO "Wine_Descriptor" VALUES(2464,1232,7); INSERT INTO "Wine_Descriptor" VALUES(2465,1233,6); INSERT INTO "Wine_Descriptor" VALUES(2466,1233,7); INSERT INTO "Wine_Descriptor" VALUES(2467,1234,6); INSERT INTO "Wine_Descriptor" VALUES(2468,1234,7); INSERT INTO "Wine_Descriptor" VALUES(2469,1235,6); INSERT INTO "Wine_Descriptor" VALUES(2470,1235,7); INSERT INTO "Wine_Descriptor" VALUES(2471,1236,6); INSERT INTO "Wine_Descriptor" VALUES(2472,1236,7); INSERT INTO "Wine_Descriptor" VALUES(2473,1237,6); INSERT INTO "Wine_Descriptor" VALUES(2474,1237,7); INSERT INTO "Wine_Descriptor" VALUES(2475,1238,6); INSERT INTO "Wine_Descriptor" VALUES(2476,1238,7); INSERT INTO "Wine_Descriptor" VALUES(2477,1239,6); INSERT INTO "Wine_Descriptor" VALUES(2478,1239,7); INSERT INTO "Wine_Descriptor" VALUES(2479,1240,6); INSERT INTO "Wine_Descriptor" VALUES(2480,1240,7); INSERT INTO "Wine_Descriptor" VALUES(2481,1241,6); INSERT INTO "Wine_Descriptor" VALUES(2482,1241,7); INSERT INTO "Wine_Descriptor" VALUES(2483,1242,6); INSERT INTO "Wine_Descriptor" VALUES(2484,1242,7); INSERT INTO "Wine_Descriptor" VALUES(2485,1243,6); INSERT INTO "Wine_Descriptor" VALUES(2486,1243,7); INSERT INTO "Wine_Descriptor" VALUES(2487,1244,6); INSERT INTO "Wine_Descriptor" VALUES(2488,1244,7); INSERT INTO "Wine_Descriptor" VALUES(2489,1245,6); INSERT INTO "Wine_Descriptor" VALUES(2490,1245,7); INSERT INTO "Wine_Descriptor" VALUES(2491,1246,6); INSERT INTO "Wine_Descriptor" VALUES(2492,1246,7); INSERT INTO "Wine_Descriptor" VALUES(2493,1247,6); INSERT INTO "Wine_Descriptor" VALUES(2494,1247,7); INSERT INTO "Wine_Descriptor" VALUES(2495,1248,6); INSERT INTO "Wine_Descriptor" VALUES(2496,1248,7); INSERT INTO "Wine_Descriptor" VALUES(2497,1249,6); INSERT INTO "Wine_Descriptor" VALUES(2498,1249,7); INSERT INTO "Wine_Descriptor" VALUES(2499,1250,6); INSERT INTO "Wine_Descriptor" VALUES(2500,1250,7); INSERT INTO "Wine_Descriptor" VALUES(2501,1251,6); INSERT INTO "Wine_Descriptor" VALUES(2502,1251,7); INSERT INTO "Wine_Descriptor" VALUES(2503,1252,6); INSERT INTO "Wine_Descriptor" VALUES(2504,1252,7); INSERT INTO "Wine_Descriptor" VALUES(2505,1253,6); INSERT INTO "Wine_Descriptor" VALUES(2506,1253,7); INSERT INTO "Wine_Descriptor" VALUES(2507,1254,6); INSERT INTO "Wine_Descriptor" VALUES(2508,1254,7); INSERT INTO "Wine_Descriptor" VALUES(2509,1255,6); INSERT INTO "Wine_Descriptor" VALUES(2510,1255,7); INSERT INTO "Wine_Descriptor" VALUES(2511,1256,6); INSERT INTO "Wine_Descriptor" VALUES(2512,1256,7); INSERT INTO "Wine_Descriptor" VALUES(2513,1257,6); INSERT INTO "Wine_Descriptor" VALUES(2514,1257,7); INSERT INTO "Wine_Descriptor" VALUES(2515,1258,6); INSERT INTO "Wine_Descriptor" VALUES(2516,1258,7); INSERT INTO "Wine_Descriptor" VALUES(2517,1259,6); INSERT INTO "Wine_Descriptor" VALUES(2518,1259,7); INSERT INTO "Wine_Descriptor" VALUES(2519,1260,6); INSERT INTO "Wine_Descriptor" VALUES(2520,1260,7); INSERT INTO "Wine_Descriptor" VALUES(2521,1261,6); INSERT INTO "Wine_Descriptor" VALUES(2522,1261,7); INSERT INTO "Wine_Descriptor" VALUES(2523,1262,6); INSERT INTO "Wine_Descriptor" VALUES(2524,1262,7); INSERT INTO "Wine_Descriptor" VALUES(2525,1263,6); INSERT INTO "Wine_Descriptor" VALUES(2526,1263,7); INSERT INTO "Wine_Descriptor" VALUES(2527,1264,6); INSERT INTO "Wine_Descriptor" VALUES(2528,1264,7); INSERT INTO "Wine_Descriptor" VALUES(2529,1265,6); INSERT INTO "Wine_Descriptor" VALUES(2530,1265,7); INSERT INTO "Wine_Descriptor" VALUES(2531,1266,6); INSERT INTO "Wine_Descriptor" VALUES(2532,1266,7); INSERT INTO "Wine_Descriptor" VALUES(2533,1267,6); INSERT INTO "Wine_Descriptor" VALUES(2534,1267,7); INSERT INTO "Wine_Descriptor" VALUES(2535,1268,6); INSERT INTO "Wine_Descriptor" VALUES(2536,1268,7); INSERT INTO "Wine_Descriptor" VALUES(2537,1269,6); INSERT INTO "Wine_Descriptor" VALUES(2538,1269,7); INSERT INTO "Wine_Descriptor" VALUES(2539,1270,6); INSERT INTO "Wine_Descriptor" VALUES(2540,1270,7); INSERT INTO "Wine_Descriptor" VALUES(2541,1271,6); INSERT INTO "Wine_Descriptor" VALUES(2542,1271,7); INSERT INTO "Wine_Descriptor" VALUES(2543,1272,6); INSERT INTO "Wine_Descriptor" VALUES(2544,1272,7); INSERT INTO "Wine_Descriptor" VALUES(2545,1273,6); INSERT INTO "Wine_Descriptor" VALUES(2546,1273,7); INSERT INTO "Wine_Descriptor" VALUES(2547,1274,6); INSERT INTO "Wine_Descriptor" VALUES(2548,1274,7); INSERT INTO "Wine_Descriptor" VALUES(2549,1275,6); INSERT INTO "Wine_Descriptor" VALUES(2550,1275,7); INSERT INTO "Wine_Descriptor" VALUES(2551,1276,6); INSERT INTO "Wine_Descriptor" VALUES(2552,1276,7); INSERT INTO "Wine_Descriptor" VALUES(2553,1277,6); INSERT INTO "Wine_Descriptor" VALUES(2554,1277,7); INSERT INTO "Wine_Descriptor" VALUES(2555,1278,6); INSERT INTO "Wine_Descriptor" VALUES(2556,1278,7); INSERT INTO "Wine_Descriptor" VALUES(2557,1279,6); INSERT INTO "Wine_Descriptor" VALUES(2558,1279,7); INSERT INTO "Wine_Descriptor" VALUES(2559,1280,6); INSERT INTO "Wine_Descriptor" VALUES(2560,1280,7); INSERT INTO "Wine_Descriptor" VALUES(2561,1281,6); INSERT INTO "Wine_Descriptor" VALUES(2562,1281,7); INSERT INTO "Wine_Descriptor" VALUES(2563,1282,6); INSERT INTO "Wine_Descriptor" VALUES(2564,1282,7); INSERT INTO "Wine_Descriptor" VALUES(2565,1283,6); INSERT INTO "Wine_Descriptor" VALUES(2566,1283,7); INSERT INTO "Wine_Descriptor" VALUES(2567,1284,6); INSERT INTO "Wine_Descriptor" VALUES(2568,1284,7); INSERT INTO "Wine_Descriptor" VALUES(2569,1285,6); INSERT INTO "Wine_Descriptor" VALUES(2570,1285,7); INSERT INTO "Wine_Descriptor" VALUES(2571,1286,6); INSERT INTO "Wine_Descriptor" VALUES(2572,1286,7); INSERT INTO "Wine_Descriptor" VALUES(2573,1287,6); INSERT INTO "Wine_Descriptor" VALUES(2574,1287,7); INSERT INTO "Wine_Descriptor" VALUES(2575,1288,6); INSERT INTO "Wine_Descriptor" VALUES(2576,1288,7); INSERT INTO "Wine_Descriptor" VALUES(2577,1289,6); INSERT INTO "Wine_Descriptor" VALUES(2578,1289,7); INSERT INTO "Wine_Descriptor" VALUES(2579,1290,6); INSERT INTO "Wine_Descriptor" VALUES(2580,1290,7); INSERT INTO "Wine_Descriptor" VALUES(2581,1291,6); INSERT INTO "Wine_Descriptor" VALUES(2582,1291,7); INSERT INTO "Wine_Descriptor" VALUES(2583,1292,6); INSERT INTO "Wine_Descriptor" VALUES(2584,1292,7); INSERT INTO "Wine_Descriptor" VALUES(2585,1293,6); INSERT INTO "Wine_Descriptor" VALUES(2586,1293,7); INSERT INTO "Wine_Descriptor" VALUES(2587,1294,6); INSERT INTO "Wine_Descriptor" VALUES(2588,1294,7); INSERT INTO "Wine_Descriptor" VALUES(2589,1295,6); INSERT INTO "Wine_Descriptor" VALUES(2590,1295,7); INSERT INTO "Wine_Descriptor" VALUES(2591,1296,6); INSERT INTO "Wine_Descriptor" VALUES(2592,1296,7); INSERT INTO "Wine_Descriptor" VALUES(2593,1297,6); INSERT INTO "Wine_Descriptor" VALUES(2594,1297,7); INSERT INTO "Wine_Descriptor" VALUES(2595,1298,6); INSERT INTO "Wine_Descriptor" VALUES(2596,1298,7); INSERT INTO "Wine_Descriptor" VALUES(2597,1299,6); INSERT INTO "Wine_Descriptor" VALUES(2598,1299,7); INSERT INTO "Wine_Descriptor" VALUES(2599,1300,6); INSERT INTO "Wine_Descriptor" VALUES(2600,1300,7); INSERT INTO "Wine_Descriptor" VALUES(2601,1301,6); INSERT INTO "Wine_Descriptor" VALUES(2602,1301,7); INSERT INTO "Wine_Descriptor" VALUES(2603,1302,6); INSERT INTO "Wine_Descriptor" VALUES(2604,1302,7); INSERT INTO "Wine_Descriptor" VALUES(2605,1303,6); INSERT INTO "Wine_Descriptor" VALUES(2606,1303,7); INSERT INTO "Wine_Descriptor" VALUES(2607,1304,6); INSERT INTO "Wine_Descriptor" VALUES(2608,1304,7); INSERT INTO "Wine_Descriptor" VALUES(2609,1305,6); INSERT INTO "Wine_Descriptor" VALUES(2610,1305,7); INSERT INTO "Wine_Descriptor" VALUES(2611,1306,6); INSERT INTO "Wine_Descriptor" VALUES(2612,1306,7); INSERT INTO "Wine_Descriptor" VALUES(2613,1307,6); INSERT INTO "Wine_Descriptor" VALUES(2614,1307,7); INSERT INTO "Wine_Descriptor" VALUES(2615,1308,6); INSERT INTO "Wine_Descriptor" VALUES(2616,1308,7); INSERT INTO "Wine_Descriptor" VALUES(2617,1309,6); INSERT INTO "Wine_Descriptor" VALUES(2618,1309,7); INSERT INTO "Wine_Descriptor" VALUES(2619,1310,6); INSERT INTO "Wine_Descriptor" VALUES(2620,1310,7); INSERT INTO "Wine_Descriptor" VALUES(2621,1311,6); INSERT INTO "Wine_Descriptor" VALUES(2622,1311,7); INSERT INTO "Wine_Descriptor" VALUES(2623,1312,6); INSERT INTO "Wine_Descriptor" VALUES(2624,1312,7); INSERT INTO "Wine_Descriptor" VALUES(2625,1313,6); INSERT INTO "Wine_Descriptor" VALUES(2626,1313,7); INSERT INTO "Wine_Descriptor" VALUES(2627,1314,6); INSERT INTO "Wine_Descriptor" VALUES(2628,1314,7); INSERT INTO "Wine_Descriptor" VALUES(2629,1315,6); INSERT INTO "Wine_Descriptor" VALUES(2630,1315,7); INSERT INTO "Wine_Descriptor" VALUES(2631,1316,6); INSERT INTO "Wine_Descriptor" VALUES(2632,1316,7); INSERT INTO "Wine_Descriptor" VALUES(2633,1317,6); INSERT INTO "Wine_Descriptor" VALUES(2634,1317,7); INSERT INTO "Wine_Descriptor" VALUES(2635,1318,6); INSERT INTO "Wine_Descriptor" VALUES(2636,1318,7); INSERT INTO "Wine_Descriptor" VALUES(2637,1319,6); INSERT INTO "Wine_Descriptor" VALUES(2638,1319,7); INSERT INTO "Wine_Descriptor" VALUES(2639,1320,6); INSERT INTO "Wine_Descriptor" VALUES(2640,1320,7); INSERT INTO "Wine_Descriptor" VALUES(2641,1321,6); INSERT INTO "Wine_Descriptor" VALUES(2642,1321,7); INSERT INTO "Wine_Descriptor" VALUES(2643,1322,6); INSERT INTO "Wine_Descriptor" VALUES(2644,1322,7); INSERT INTO "Wine_Descriptor" VALUES(2645,1323,6); INSERT INTO "Wine_Descriptor" VALUES(2646,1323,7); INSERT INTO "Wine_Descriptor" VALUES(2647,1324,6); INSERT INTO "Wine_Descriptor" VALUES(2648,1324,7); INSERT INTO "Wine_Descriptor" VALUES(2649,1325,6); INSERT INTO "Wine_Descriptor" VALUES(2650,1325,7); INSERT INTO "Wine_Descriptor" VALUES(2651,1326,6); INSERT INTO "Wine_Descriptor" VALUES(2652,1326,7); INSERT INTO "Wine_Descriptor" VALUES(2653,1327,6); INSERT INTO "Wine_Descriptor" VALUES(2654,1327,7); INSERT INTO "Wine_Descriptor" VALUES(2655,1328,6); INSERT INTO "Wine_Descriptor" VALUES(2656,1328,7); INSERT INTO "Wine_Descriptor" VALUES(2657,1329,6); INSERT INTO "Wine_Descriptor" VALUES(2658,1329,7); INSERT INTO "Wine_Descriptor" VALUES(2659,1330,6); INSERT INTO "Wine_Descriptor" VALUES(2660,1330,7); INSERT INTO "Wine_Descriptor" VALUES(2661,1331,6); INSERT INTO "Wine_Descriptor" VALUES(2662,1331,7); INSERT INTO "Wine_Descriptor" VALUES(2663,1332,6); INSERT INTO "Wine_Descriptor" VALUES(2664,1332,7); INSERT INTO "Wine_Descriptor" VALUES(2665,1333,6); INSERT INTO "Wine_Descriptor" VALUES(2666,1333,7); INSERT INTO "Wine_Descriptor" VALUES(2667,1334,6); INSERT INTO "Wine_Descriptor" VALUES(2668,1334,7); INSERT INTO "Wine_Descriptor" VALUES(2669,1335,6); INSERT INTO "Wine_Descriptor" VALUES(2670,1335,7); INSERT INTO "Wine_Descriptor" VALUES(2671,1336,6); INSERT INTO "Wine_Descriptor" VALUES(2672,1336,7); INSERT INTO "Wine_Descriptor" VALUES(2673,1337,6); INSERT INTO "Wine_Descriptor" VALUES(2674,1337,7); INSERT INTO "Wine_Descriptor" VALUES(2675,1338,6); INSERT INTO "Wine_Descriptor" VALUES(2676,1338,7); INSERT INTO "Wine_Descriptor" VALUES(2677,1339,6); INSERT INTO "Wine_Descriptor" VALUES(2678,1339,7); INSERT INTO "Wine_Descriptor" VALUES(2679,1340,6); INSERT INTO "Wine_Descriptor" VALUES(2680,1340,7); INSERT INTO "Wine_Descriptor" VALUES(2681,1341,6); INSERT INTO "Wine_Descriptor" VALUES(2682,1341,7); INSERT INTO "Wine_Descriptor" VALUES(2683,1342,6); INSERT INTO "Wine_Descriptor" VALUES(2684,1342,7); INSERT INTO "Wine_Descriptor" VALUES(2685,1343,6); INSERT INTO "Wine_Descriptor" VALUES(2686,1343,7); INSERT INTO "Wine_Descriptor" VALUES(2687,1344,6); INSERT INTO "Wine_Descriptor" VALUES(2688,1344,7); INSERT INTO "Wine_Descriptor" VALUES(2689,1345,6); INSERT INTO "Wine_Descriptor" VALUES(2690,1345,7); INSERT INTO "Wine_Descriptor" VALUES(2691,1346,6); INSERT INTO "Wine_Descriptor" VALUES(2692,1346,7); INSERT INTO "Wine_Descriptor" VALUES(2693,1347,6); INSERT INTO "Wine_Descriptor" VALUES(2694,1347,7); INSERT INTO "Wine_Descriptor" VALUES(2695,1348,6); INSERT INTO "Wine_Descriptor" VALUES(2696,1348,7); INSERT INTO "Wine_Descriptor" VALUES(2697,1349,6); INSERT INTO "Wine_Descriptor" VALUES(2698,1349,7); INSERT INTO "Wine_Descriptor" VALUES(2699,1350,6); INSERT INTO "Wine_Descriptor" VALUES(2700,1350,7); INSERT INTO "Wine_Descriptor" VALUES(2701,1351,6); INSERT INTO "Wine_Descriptor" VALUES(2702,1351,7); INSERT INTO "Wine_Descriptor" VALUES(2703,1352,6); INSERT INTO "Wine_Descriptor" VALUES(2704,1352,7); INSERT INTO "Wine_Descriptor" VALUES(2705,1353,6); INSERT INTO "Wine_Descriptor" VALUES(2706,1353,7); INSERT INTO "Wine_Descriptor" VALUES(2707,1354,6); INSERT INTO "Wine_Descriptor" VALUES(2708,1354,7); INSERT INTO "Wine_Descriptor" VALUES(2709,1355,6); INSERT INTO "Wine_Descriptor" VALUES(2710,1355,7); INSERT INTO "Wine_Descriptor" VALUES(2711,1356,6); INSERT INTO "Wine_Descriptor" VALUES(2712,1356,7); INSERT INTO "Wine_Descriptor" VALUES(2713,1357,6); INSERT INTO "Wine_Descriptor" VALUES(2714,1357,7); INSERT INTO "Wine_Descriptor" VALUES(2715,1358,6); INSERT INTO "Wine_Descriptor" VALUES(2716,1358,7); INSERT INTO "Wine_Descriptor" VALUES(2717,1359,6); INSERT INTO "Wine_Descriptor" VALUES(2718,1359,7); INSERT INTO "Wine_Descriptor" VALUES(2719,1360,6); INSERT INTO "Wine_Descriptor" VALUES(2720,1360,7); INSERT INTO "Wine_Descriptor" VALUES(2721,1361,6); INSERT INTO "Wine_Descriptor" VALUES(2722,1361,7); INSERT INTO "Wine_Descriptor" VALUES(2723,1362,6); INSERT INTO "Wine_Descriptor" VALUES(2724,1362,7); INSERT INTO "Wine_Descriptor" VALUES(2725,1363,6); INSERT INTO "Wine_Descriptor" VALUES(2726,1363,7); INSERT INTO "Wine_Descriptor" VALUES(2727,1364,6); INSERT INTO "Wine_Descriptor" VALUES(2728,1364,7); INSERT INTO "Wine_Descriptor" VALUES(2729,1365,6); INSERT INTO "Wine_Descriptor" VALUES(2730,1365,7); INSERT INTO "Wine_Descriptor" VALUES(2731,1366,6); INSERT INTO "Wine_Descriptor" VALUES(2732,1366,7); INSERT INTO "Wine_Descriptor" VALUES(2733,1367,6); INSERT INTO "Wine_Descriptor" VALUES(2734,1367,7); INSERT INTO "Wine_Descriptor" VALUES(2735,1368,6); INSERT INTO "Wine_Descriptor" VALUES(2736,1368,7); INSERT INTO "Wine_Descriptor" VALUES(2737,1369,6); INSERT INTO "Wine_Descriptor" VALUES(2738,1369,7); INSERT INTO "Wine_Descriptor" VALUES(2739,1370,6); INSERT INTO "Wine_Descriptor" VALUES(2740,1370,7); INSERT INTO "Wine_Descriptor" VALUES(2741,1371,6); INSERT INTO "Wine_Descriptor" VALUES(2742,1371,7); INSERT INTO "Wine_Descriptor" VALUES(2743,1372,6); INSERT INTO "Wine_Descriptor" VALUES(2744,1372,7); INSERT INTO "Wine_Descriptor" VALUES(2745,1373,6); INSERT INTO "Wine_Descriptor" VALUES(2746,1373,7); INSERT INTO "Wine_Descriptor" VALUES(2747,1374,6); INSERT INTO "Wine_Descriptor" VALUES(2748,1374,7); INSERT INTO "Wine_Descriptor" VALUES(2749,1375,6); INSERT INTO "Wine_Descriptor" VALUES(2750,1375,7); INSERT INTO "Wine_Descriptor" VALUES(2751,1376,6); INSERT INTO "Wine_Descriptor" VALUES(2752,1376,7); INSERT INTO "Wine_Descriptor" VALUES(2753,1377,6); INSERT INTO "Wine_Descriptor" VALUES(2754,1377,7); INSERT INTO "Wine_Descriptor" VALUES(2755,1378,6); INSERT INTO "Wine_Descriptor" VALUES(2756,1378,7); INSERT INTO "Wine_Descriptor" VALUES(2757,1379,6); INSERT INTO "Wine_Descriptor" VALUES(2758,1379,7); INSERT INTO "Wine_Descriptor" VALUES(2759,1380,6); INSERT INTO "Wine_Descriptor" VALUES(2760,1380,7); INSERT INTO "Wine_Descriptor" VALUES(2761,1381,6); INSERT INTO "Wine_Descriptor" VALUES(2762,1381,7); INSERT INTO "Wine_Descriptor" VALUES(2763,1382,6); INSERT INTO "Wine_Descriptor" VALUES(2764,1382,7); INSERT INTO "Wine_Descriptor" VALUES(2765,1383,6); INSERT INTO "Wine_Descriptor" VALUES(2766,1383,7); INSERT INTO "Wine_Descriptor" VALUES(2767,1384,6); INSERT INTO "Wine_Descriptor" VALUES(2768,1384,7); INSERT INTO "Wine_Descriptor" VALUES(2769,1385,6); INSERT INTO "Wine_Descriptor" VALUES(2770,1385,7); INSERT INTO "Wine_Descriptor" VALUES(2771,1386,6); INSERT INTO "Wine_Descriptor" VALUES(2772,1386,7); INSERT INTO "Wine_Descriptor" VALUES(2773,1387,6); INSERT INTO "Wine_Descriptor" VALUES(2774,1387,7); INSERT INTO "Wine_Descriptor" VALUES(2775,1388,6); INSERT INTO "Wine_Descriptor" VALUES(2776,1388,7); INSERT INTO "Wine_Descriptor" VALUES(2777,1389,6); INSERT INTO "Wine_Descriptor" VALUES(2778,1389,7); INSERT INTO "Wine_Descriptor" VALUES(2779,1390,6); INSERT INTO "Wine_Descriptor" VALUES(2780,1390,7); INSERT INTO "Wine_Descriptor" VALUES(2781,1391,6); INSERT INTO "Wine_Descriptor" VALUES(2782,1391,7); INSERT INTO "Wine_Descriptor" VALUES(2783,1392,6); INSERT INTO "Wine_Descriptor" VALUES(2784,1392,7); INSERT INTO "Wine_Descriptor" VALUES(2785,1393,6); INSERT INTO "Wine_Descriptor" VALUES(2786,1393,7); INSERT INTO "Wine_Descriptor" VALUES(2787,1394,6); INSERT INTO "Wine_Descriptor" VALUES(2788,1394,7); INSERT INTO "Wine_Descriptor" VALUES(2789,1395,6); INSERT INTO "Wine_Descriptor" VALUES(2790,1395,7); INSERT INTO "Wine_Descriptor" VALUES(2791,1396,6); INSERT INTO "Wine_Descriptor" VALUES(2792,1396,7); INSERT INTO "Wine_Descriptor" VALUES(2793,1397,6); INSERT INTO "Wine_Descriptor" VALUES(2794,1397,7); INSERT INTO "Wine_Descriptor" VALUES(2795,1398,6); INSERT INTO "Wine_Descriptor" VALUES(2796,1398,7); INSERT INTO "Wine_Descriptor" VALUES(2797,1399,6); INSERT INTO "Wine_Descriptor" VALUES(2798,1399,7); INSERT INTO "Wine_Descriptor" VALUES(2799,1400,6); INSERT INTO "Wine_Descriptor" VALUES(2800,1400,7); INSERT INTO "Wine_Descriptor" VALUES(2801,1401,6); INSERT INTO "Wine_Descriptor" VALUES(2802,1401,7); INSERT INTO "Wine_Descriptor" VALUES(2803,1402,6); INSERT INTO "Wine_Descriptor" VALUES(2804,1402,7); INSERT INTO "Wine_Descriptor" VALUES(2805,1403,6); INSERT INTO "Wine_Descriptor" VALUES(2806,1403,7); INSERT INTO "Wine_Descriptor" VALUES(2807,1404,6); INSERT INTO "Wine_Descriptor" VALUES(2808,1404,7); INSERT INTO "Wine_Descriptor" VALUES(2809,1405,6); INSERT INTO "Wine_Descriptor" VALUES(2810,1405,7); INSERT INTO "Wine_Descriptor" VALUES(2811,1406,6); INSERT INTO "Wine_Descriptor" VALUES(2812,1406,7); INSERT INTO "Wine_Descriptor" VALUES(2813,1407,6); INSERT INTO "Wine_Descriptor" VALUES(2814,1407,7); INSERT INTO "Wine_Descriptor" VALUES(2815,1408,6); INSERT INTO "Wine_Descriptor" VALUES(2816,1408,7); INSERT INTO "Wine_Descriptor" VALUES(2817,1409,6); INSERT INTO "Wine_Descriptor" VALUES(2818,1409,7); INSERT INTO "Wine_Descriptor" VALUES(2819,1410,6); INSERT INTO "Wine_Descriptor" VALUES(2820,1410,7); INSERT INTO "Wine_Descriptor" VALUES(2821,1411,6); INSERT INTO "Wine_Descriptor" VALUES(2822,1411,7); INSERT INTO "Wine_Descriptor" VALUES(2823,1412,6); INSERT INTO "Wine_Descriptor" VALUES(2824,1412,7); INSERT INTO "Wine_Descriptor" VALUES(2825,1413,6); INSERT INTO "Wine_Descriptor" VALUES(2826,1413,7); INSERT INTO "Wine_Descriptor" VALUES(2827,1414,6); INSERT INTO "Wine_Descriptor" VALUES(2828,1414,7); INSERT INTO "Wine_Descriptor" VALUES(2829,1415,6); INSERT INTO "Wine_Descriptor" VALUES(2830,1415,7); INSERT INTO "Wine_Descriptor" VALUES(2831,1416,6); INSERT INTO "Wine_Descriptor" VALUES(2832,1416,7); INSERT INTO "Wine_Descriptor" VALUES(2833,1417,6); INSERT INTO "Wine_Descriptor" VALUES(2834,1417,7); INSERT INTO "Wine_Descriptor" VALUES(2835,1418,6); INSERT INTO "Wine_Descriptor" VALUES(2836,1418,7); INSERT INTO "Wine_Descriptor" VALUES(2837,1419,6); INSERT INTO "Wine_Descriptor" VALUES(2838,1419,7); INSERT INTO "Wine_Descriptor" VALUES(2839,1420,6); INSERT INTO "Wine_Descriptor" VALUES(2840,1420,7); INSERT INTO "Wine_Descriptor" VALUES(2841,1421,6); INSERT INTO "Wine_Descriptor" VALUES(2842,1421,7); INSERT INTO "Wine_Descriptor" VALUES(2843,1422,6); INSERT INTO "Wine_Descriptor" VALUES(2844,1422,7); INSERT INTO "Wine_Descriptor" VALUES(2845,1423,6); INSERT INTO "Wine_Descriptor" VALUES(2846,1423,7); INSERT INTO "Wine_Descriptor" VALUES(2847,1424,6); INSERT INTO "Wine_Descriptor" VALUES(2848,1424,7); INSERT INTO "Wine_Descriptor" VALUES(2849,1425,6); INSERT INTO "Wine_Descriptor" VALUES(2850,1425,7); INSERT INTO "Wine_Descriptor" VALUES(2851,1426,6); INSERT INTO "Wine_Descriptor" VALUES(2852,1426,7); INSERT INTO "Wine_Descriptor" VALUES(2853,1427,6); INSERT INTO "Wine_Descriptor" VALUES(2854,1427,7); INSERT INTO "Wine_Descriptor" VALUES(2855,1428,6); INSERT INTO "Wine_Descriptor" VALUES(2856,1428,7); INSERT INTO "Wine_Descriptor" VALUES(2857,1429,6); INSERT INTO "Wine_Descriptor" VALUES(2858,1429,7); INSERT INTO "Wine_Descriptor" VALUES(2859,1430,6); INSERT INTO "Wine_Descriptor" VALUES(2860,1430,7); INSERT INTO "Wine_Descriptor" VALUES(2861,1431,6); INSERT INTO "Wine_Descriptor" VALUES(2862,1431,7); INSERT INTO "Wine_Descriptor" VALUES(2863,1432,6); INSERT INTO "Wine_Descriptor" VALUES(2864,1432,7); INSERT INTO "Wine_Descriptor" VALUES(2865,1433,6); INSERT INTO "Wine_Descriptor" VALUES(2866,1433,7); INSERT INTO "Wine_Descriptor" VALUES(2867,1434,6); INSERT INTO "Wine_Descriptor" VALUES(2868,1434,7); INSERT INTO "Wine_Descriptor" VALUES(2869,1435,6); INSERT INTO "Wine_Descriptor" VALUES(2870,1435,7); INSERT INTO "Wine_Descriptor" VALUES(2871,1436,6); INSERT INTO "Wine_Descriptor" VALUES(2872,1436,7); INSERT INTO "Wine_Descriptor" VALUES(2873,1437,6); INSERT INTO "Wine_Descriptor" VALUES(2874,1437,7); INSERT INTO "Wine_Descriptor" VALUES(2875,1438,6); INSERT INTO "Wine_Descriptor" VALUES(2876,1438,7); INSERT INTO "Wine_Descriptor" VALUES(2877,1439,6); INSERT INTO "Wine_Descriptor" VALUES(2878,1439,7); INSERT INTO "Wine_Descriptor" VALUES(2879,1440,6); INSERT INTO "Wine_Descriptor" VALUES(2880,1440,7); INSERT INTO "Wine_Descriptor" VALUES(2881,1441,6); INSERT INTO "Wine_Descriptor" VALUES(2882,1441,7); INSERT INTO "Wine_Descriptor" VALUES(2883,1442,6); INSERT INTO "Wine_Descriptor" VALUES(2884,1442,7); INSERT INTO "Wine_Descriptor" VALUES(2885,1443,6); INSERT INTO "Wine_Descriptor" VALUES(2886,1443,7); INSERT INTO "Wine_Descriptor" VALUES(2887,1444,6); INSERT INTO "Wine_Descriptor" VALUES(2888,1444,7); INSERT INTO "Wine_Descriptor" VALUES(2889,1445,6); INSERT INTO "Wine_Descriptor" VALUES(2890,1445,7); INSERT INTO "Wine_Descriptor" VALUES(2891,1446,6); INSERT INTO "Wine_Descriptor" VALUES(2892,1446,7); INSERT INTO "Wine_Descriptor" VALUES(2893,1447,6); INSERT INTO "Wine_Descriptor" VALUES(2894,1447,7); INSERT INTO "Wine_Descriptor" VALUES(2895,1448,6); INSERT INTO "Wine_Descriptor" VALUES(2896,1448,7); INSERT INTO "Wine_Descriptor" VALUES(2897,1449,6); INSERT INTO "Wine_Descriptor" VALUES(2898,1449,7); INSERT INTO "Wine_Descriptor" VALUES(2899,1450,6); INSERT INTO "Wine_Descriptor" VALUES(2900,1450,7); INSERT INTO "Wine_Descriptor" VALUES(2901,1451,6); INSERT INTO "Wine_Descriptor" VALUES(2902,1451,7); INSERT INTO "Wine_Descriptor" VALUES(2903,1452,6); INSERT INTO "Wine_Descriptor" VALUES(2904,1452,7); INSERT INTO "Wine_Descriptor" VALUES(2905,1453,6); INSERT INTO "Wine_Descriptor" VALUES(2906,1453,7); INSERT INTO "Wine_Descriptor" VALUES(2907,1454,6); INSERT INTO "Wine_Descriptor" VALUES(2908,1454,7); INSERT INTO "Wine_Descriptor" VALUES(2909,1455,6); INSERT INTO "Wine_Descriptor" VALUES(2910,1455,7); INSERT INTO "Wine_Descriptor" VALUES(2911,1456,6); INSERT INTO "Wine_Descriptor" VALUES(2912,1456,7); INSERT INTO "Wine_Descriptor" VALUES(2913,1457,6); INSERT INTO "Wine_Descriptor" VALUES(2914,1457,7); INSERT INTO "Wine_Descriptor" VALUES(2915,1458,6); INSERT INTO "Wine_Descriptor" VALUES(2916,1458,7); INSERT INTO "Wine_Descriptor" VALUES(2917,1459,6); INSERT INTO "Wine_Descriptor" VALUES(2918,1459,7); INSERT INTO "Wine_Descriptor" VALUES(2919,1460,6); INSERT INTO "Wine_Descriptor" VALUES(2920,1460,7); INSERT INTO "Wine_Descriptor" VALUES(2921,1461,6); INSERT INTO "Wine_Descriptor" VALUES(2922,1461,7); INSERT INTO "Wine_Descriptor" VALUES(2923,1462,6); INSERT INTO "Wine_Descriptor" VALUES(2924,1462,7); INSERT INTO "Wine_Descriptor" VALUES(2925,1463,6); INSERT INTO "Wine_Descriptor" VALUES(2926,1463,7); INSERT INTO "Wine_Descriptor" VALUES(2927,1464,6); INSERT INTO "Wine_Descriptor" VALUES(2928,1464,7); INSERT INTO "Wine_Descriptor" VALUES(2929,1465,6); INSERT INTO "Wine_Descriptor" VALUES(2930,1465,7); INSERT INTO "Wine_Descriptor" VALUES(2931,1466,6); INSERT INTO "Wine_Descriptor" VALUES(2932,1466,7); INSERT INTO "Wine_Descriptor" VALUES(2933,1467,6); INSERT INTO "Wine_Descriptor" VALUES(2934,1467,7); INSERT INTO "Wine_Descriptor" VALUES(2935,1468,6); INSERT INTO "Wine_Descriptor" VALUES(2936,1468,7); INSERT INTO "Wine_Descriptor" VALUES(2937,1469,6); INSERT INTO "Wine_Descriptor" VALUES(2938,1469,7); INSERT INTO "Wine_Descriptor" VALUES(2939,1470,6); INSERT INTO "Wine_Descriptor" VALUES(2940,1470,7); INSERT INTO "Wine_Descriptor" VALUES(2941,1471,6); INSERT INTO "Wine_Descriptor" VALUES(2942,1471,7); INSERT INTO "Wine_Descriptor" VALUES(2943,1472,6); INSERT INTO "Wine_Descriptor" VALUES(2944,1472,7); INSERT INTO "Wine_Descriptor" VALUES(2945,1473,6); INSERT INTO "Wine_Descriptor" VALUES(2946,1473,7); INSERT INTO "Wine_Descriptor" VALUES(2947,1474,6); INSERT INTO "Wine_Descriptor" VALUES(2948,1474,7); INSERT INTO "Wine_Descriptor" VALUES(2949,1475,6); INSERT INTO "Wine_Descriptor" VALUES(2950,1475,7); INSERT INTO "Wine_Descriptor" VALUES(2951,1476,6); INSERT INTO "Wine_Descriptor" VALUES(2952,1476,7); INSERT INTO "Wine_Descriptor" VALUES(2953,1477,6); INSERT INTO "Wine_Descriptor" VALUES(2954,1477,7); INSERT INTO "Wine_Descriptor" VALUES(2955,1478,6); INSERT INTO "Wine_Descriptor" VALUES(2956,1478,7); INSERT INTO "Wine_Descriptor" VALUES(2957,1479,6); INSERT INTO "Wine_Descriptor" VALUES(2958,1479,7); INSERT INTO "Wine_Descriptor" VALUES(2959,1480,6); INSERT INTO "Wine_Descriptor" VALUES(2960,1480,7); INSERT INTO "Wine_Descriptor" VALUES(2961,1481,6); INSERT INTO "Wine_Descriptor" VALUES(2962,1481,7); INSERT INTO "Wine_Descriptor" VALUES(2963,1482,6); INSERT INTO "Wine_Descriptor" VALUES(2964,1482,7); INSERT INTO "Wine_Descriptor" VALUES(2965,1483,6); INSERT INTO "Wine_Descriptor" VALUES(2966,1483,7); INSERT INTO "Wine_Descriptor" VALUES(2967,1484,6); INSERT INTO "Wine_Descriptor" VALUES(2968,1484,7); INSERT INTO "Wine_Descriptor" VALUES(2969,1485,6); INSERT INTO "Wine_Descriptor" VALUES(2970,1485,7); INSERT INTO "Wine_Descriptor" VALUES(2971,1486,6); INSERT INTO "Wine_Descriptor" VALUES(2972,1486,7); INSERT INTO "Wine_Descriptor" VALUES(2973,1487,6); INSERT INTO "Wine_Descriptor" VALUES(2974,1487,7); INSERT INTO "Wine_Descriptor" VALUES(2975,1488,6); INSERT INTO "Wine_Descriptor" VALUES(2976,1488,7); INSERT INTO "Wine_Descriptor" VALUES(2977,1489,6); INSERT INTO "Wine_Descriptor" VALUES(2978,1489,7); INSERT INTO "Wine_Descriptor" VALUES(2979,1490,6); INSERT INTO "Wine_Descriptor" VALUES(2980,1490,7); INSERT INTO "Wine_Descriptor" VALUES(2981,1491,6); INSERT INTO "Wine_Descriptor" VALUES(2982,1491,7); INSERT INTO "Wine_Descriptor" VALUES(2983,1492,6); INSERT INTO "Wine_Descriptor" VALUES(2984,1492,7); INSERT INTO "Wine_Descriptor" VALUES(2985,1493,6); INSERT INTO "Wine_Descriptor" VALUES(2986,1493,7); INSERT INTO "Wine_Descriptor" VALUES(2987,1494,6); INSERT INTO "Wine_Descriptor" VALUES(2988,1494,7); INSERT INTO "Wine_Descriptor" VALUES(2989,1495,6); INSERT INTO "Wine_Descriptor" VALUES(2990,1495,7); INSERT INTO "Wine_Descriptor" VALUES(2991,1496,6); INSERT INTO "Wine_Descriptor" VALUES(2992,1496,7); INSERT INTO "Wine_Descriptor" VALUES(2993,1497,6); INSERT INTO "Wine_Descriptor" VALUES(2994,1497,7); INSERT INTO "Wine_Descriptor" VALUES(2995,1498,6); INSERT INTO "Wine_Descriptor" VALUES(2996,1498,7); INSERT INTO "Wine_Descriptor" VALUES(2997,1499,6); INSERT INTO "Wine_Descriptor" VALUES(2998,1499,7); INSERT INTO "Wine_Descriptor" VALUES(2999,1500,6); INSERT INTO "Wine_Descriptor" VALUES(3000,1500,7); INSERT INTO "Wine_Descriptor" VALUES(3001,1501,6); INSERT INTO "Wine_Descriptor" VALUES(3002,1501,7); INSERT INTO "Wine_Descriptor" VALUES(3003,1502,6); INSERT INTO "Wine_Descriptor" VALUES(3004,1502,7); INSERT INTO "Wine_Descriptor" VALUES(3005,1503,6); INSERT INTO "Wine_Descriptor" VALUES(3006,1503,7); INSERT INTO "Wine_Descriptor" VALUES(3007,1504,6); INSERT INTO "Wine_Descriptor" VALUES(3008,1504,7); INSERT INTO "Wine_Descriptor" VALUES(3009,1505,6); INSERT INTO "Wine_Descriptor" VALUES(3010,1505,7); INSERT INTO "Wine_Descriptor" VALUES(3011,1506,6); INSERT INTO "Wine_Descriptor" VALUES(3012,1506,7); INSERT INTO "Wine_Descriptor" VALUES(3013,1507,6); INSERT INTO "Wine_Descriptor" VALUES(3014,1507,7); INSERT INTO "Wine_Descriptor" VALUES(3015,1508,6); INSERT INTO "Wine_Descriptor" VALUES(3016,1508,7); INSERT INTO "Wine_Descriptor" VALUES(3017,1509,6); INSERT INTO "Wine_Descriptor" VALUES(3018,1509,7); INSERT INTO "Wine_Descriptor" VALUES(3019,1510,6); INSERT INTO "Wine_Descriptor" VALUES(3020,1510,7); INSERT INTO "Wine_Descriptor" VALUES(3021,1511,6); INSERT INTO "Wine_Descriptor" VALUES(3022,1511,7); INSERT INTO "Wine_Descriptor" VALUES(3023,1512,6); INSERT INTO "Wine_Descriptor" VALUES(3024,1512,7); INSERT INTO "Wine_Descriptor" VALUES(3025,1513,6); INSERT INTO "Wine_Descriptor" VALUES(3026,1513,7); INSERT INTO "Wine_Descriptor" VALUES(3027,1514,6); INSERT INTO "Wine_Descriptor" VALUES(3028,1514,7); INSERT INTO "Wine_Descriptor" VALUES(3029,1515,6); INSERT INTO "Wine_Descriptor" VALUES(3030,1515,7); INSERT INTO "Wine_Descriptor" VALUES(3031,1516,6); INSERT INTO "Wine_Descriptor" VALUES(3032,1516,7); INSERT INTO "Wine_Descriptor" VALUES(3033,1517,6); INSERT INTO "Wine_Descriptor" VALUES(3034,1517,7); INSERT INTO "Wine_Descriptor" VALUES(3035,1518,6); INSERT INTO "Wine_Descriptor" VALUES(3036,1518,7); INSERT INTO "Wine_Descriptor" VALUES(3037,1519,6); INSERT INTO "Wine_Descriptor" VALUES(3038,1519,7); INSERT INTO "Wine_Descriptor" VALUES(3039,1520,6); INSERT INTO "Wine_Descriptor" VALUES(3040,1520,7); INSERT INTO "Wine_Descriptor" VALUES(3041,1521,6); INSERT INTO "Wine_Descriptor" VALUES(3042,1521,7); INSERT INTO "Wine_Descriptor" VALUES(3043,1522,6); INSERT INTO "Wine_Descriptor" VALUES(3044,1522,7); INSERT INTO "Wine_Descriptor" VALUES(3045,1523,6); INSERT INTO "Wine_Descriptor" VALUES(3046,1523,7); INSERT INTO "Wine_Descriptor" VALUES(3047,1524,6); INSERT INTO "Wine_Descriptor" VALUES(3048,1524,7); INSERT INTO "Wine_Descriptor" VALUES(3049,1525,6); INSERT INTO "Wine_Descriptor" VALUES(3050,1525,7); INSERT INTO "Wine_Descriptor" VALUES(3051,1526,6); INSERT INTO "Wine_Descriptor" VALUES(3052,1526,7); INSERT INTO "Wine_Descriptor" VALUES(3053,1527,6); INSERT INTO "Wine_Descriptor" VALUES(3054,1527,7); INSERT INTO "Wine_Descriptor" VALUES(3055,1528,6); INSERT INTO "Wine_Descriptor" VALUES(3056,1528,7); INSERT INTO "Wine_Descriptor" VALUES(3057,1529,6); INSERT INTO "Wine_Descriptor" VALUES(3058,1529,7); INSERT INTO "Wine_Descriptor" VALUES(3059,1530,6); INSERT INTO "Wine_Descriptor" VALUES(3060,1530,7); INSERT INTO "Wine_Descriptor" VALUES(3061,1531,6); INSERT INTO "Wine_Descriptor" VALUES(3062,1531,7); INSERT INTO "Wine_Descriptor" VALUES(3063,1532,6); INSERT INTO "Wine_Descriptor" VALUES(3064,1532,7); INSERT INTO "Wine_Descriptor" VALUES(3065,1533,6); INSERT INTO "Wine_Descriptor" VALUES(3066,1533,7); INSERT INTO "Wine_Descriptor" VALUES(3067,1534,6); INSERT INTO "Wine_Descriptor" VALUES(3068,1534,7); INSERT INTO "Wine_Descriptor" VALUES(3069,1535,6); INSERT INTO "Wine_Descriptor" VALUES(3070,1535,7); INSERT INTO "Wine_Descriptor" VALUES(3071,1536,6); INSERT INTO "Wine_Descriptor" VALUES(3072,1536,7); INSERT INTO "Wine_Descriptor" VALUES(3073,1537,6); INSERT INTO "Wine_Descriptor" VALUES(3074,1537,7); INSERT INTO "Wine_Descriptor" VALUES(3075,1538,6); INSERT INTO "Wine_Descriptor" VALUES(3076,1538,7); INSERT INTO "Wine_Descriptor" VALUES(3077,1539,6); INSERT INTO "Wine_Descriptor" VALUES(3078,1539,7); INSERT INTO "Wine_Descriptor" VALUES(3079,1540,6); INSERT INTO "Wine_Descriptor" VALUES(3080,1540,7); INSERT INTO "Wine_Descriptor" VALUES(3081,1541,6); INSERT INTO "Wine_Descriptor" VALUES(3082,1541,7); INSERT INTO "Wine_Descriptor" VALUES(3083,1542,6); INSERT INTO "Wine_Descriptor" VALUES(3084,1542,7); INSERT INTO "Wine_Descriptor" VALUES(3085,1543,6); INSERT INTO "Wine_Descriptor" VALUES(3086,1543,7); INSERT INTO "Wine_Descriptor" VALUES(3087,1544,6); INSERT INTO "Wine_Descriptor" VALUES(3088,1544,7); INSERT INTO "Wine_Descriptor" VALUES(3089,1545,6); INSERT INTO "Wine_Descriptor" VALUES(3090,1545,7); INSERT INTO "Wine_Descriptor" VALUES(3091,1546,6); INSERT INTO "Wine_Descriptor" VALUES(3092,1546,7); INSERT INTO "Wine_Descriptor" VALUES(3093,1547,6); INSERT INTO "Wine_Descriptor" VALUES(3094,1547,7); INSERT INTO "Wine_Descriptor" VALUES(3095,1548,6); INSERT INTO "Wine_Descriptor" VALUES(3096,1548,7); INSERT INTO "Wine_Descriptor" VALUES(3097,1549,6); INSERT INTO "Wine_Descriptor" VALUES(3098,1549,7); INSERT INTO "Wine_Descriptor" VALUES(3099,1550,6); INSERT INTO "Wine_Descriptor" VALUES(3100,1550,7); INSERT INTO "Wine_Descriptor" VALUES(3101,1551,6); INSERT INTO "Wine_Descriptor" VALUES(3102,1551,7); INSERT INTO "Wine_Descriptor" VALUES(3103,1552,6); INSERT INTO "Wine_Descriptor" VALUES(3104,1552,7); INSERT INTO "Wine_Descriptor" VALUES(3105,1553,6); INSERT INTO "Wine_Descriptor" VALUES(3106,1553,7); INSERT INTO "Wine_Descriptor" VALUES(3107,1554,6); INSERT INTO "Wine_Descriptor" VALUES(3108,1554,7); INSERT INTO "Wine_Descriptor" VALUES(3109,1555,6); INSERT INTO "Wine_Descriptor" VALUES(3110,1555,7); INSERT INTO "Wine_Descriptor" VALUES(3111,1556,6); INSERT INTO "Wine_Descriptor" VALUES(3112,1556,7); INSERT INTO "Wine_Descriptor" VALUES(3113,1557,6); INSERT INTO "Wine_Descriptor" VALUES(3114,1557,7); INSERT INTO "Wine_Descriptor" VALUES(3115,1558,6); INSERT INTO "Wine_Descriptor" VALUES(3116,1558,7); INSERT INTO "Wine_Descriptor" VALUES(3117,1559,6); INSERT INTO "Wine_Descriptor" VALUES(3118,1559,7); INSERT INTO "Wine_Descriptor" VALUES(3119,1560,6); INSERT INTO "Wine_Descriptor" VALUES(3120,1560,7); INSERT INTO "Wine_Descriptor" VALUES(3121,1561,6); INSERT INTO "Wine_Descriptor" VALUES(3122,1561,7); INSERT INTO "Wine_Descriptor" VALUES(3123,1562,6); INSERT INTO "Wine_Descriptor" VALUES(3124,1562,7); INSERT INTO "Wine_Descriptor" VALUES(3125,1563,6); INSERT INTO "Wine_Descriptor" VALUES(3126,1563,7); INSERT INTO "Wine_Descriptor" VALUES(3127,1564,6); INSERT INTO "Wine_Descriptor" VALUES(3128,1564,7); INSERT INTO "Wine_Descriptor" VALUES(3129,1565,6); INSERT INTO "Wine_Descriptor" VALUES(3130,1565,7); INSERT INTO "Wine_Descriptor" VALUES(3131,1566,6); INSERT INTO "Wine_Descriptor" VALUES(3132,1566,7); INSERT INTO "Wine_Descriptor" VALUES(3133,1567,6); INSERT INTO "Wine_Descriptor" VALUES(3134,1567,7); INSERT INTO "Wine_Descriptor" VALUES(3135,1568,6); INSERT INTO "Wine_Descriptor" VALUES(3136,1568,7); INSERT INTO "Wine_Descriptor" VALUES(3137,1569,6); INSERT INTO "Wine_Descriptor" VALUES(3138,1569,7); INSERT INTO "Wine_Descriptor" VALUES(3139,1570,6); INSERT INTO "Wine_Descriptor" VALUES(3140,1570,7); INSERT INTO "Wine_Descriptor" VALUES(3141,1571,6); INSERT INTO "Wine_Descriptor" VALUES(3142,1571,7); INSERT INTO "Wine_Descriptor" VALUES(3143,1572,6); INSERT INTO "Wine_Descriptor" VALUES(3144,1572,7); INSERT INTO "Wine_Descriptor" VALUES(3145,1573,6); INSERT INTO "Wine_Descriptor" VALUES(3146,1573,7); INSERT INTO "Wine_Descriptor" VALUES(3147,1574,6); INSERT INTO "Wine_Descriptor" VALUES(3148,1574,7); INSERT INTO "Wine_Descriptor" VALUES(3149,1575,6); INSERT INTO "Wine_Descriptor" VALUES(3150,1575,7); INSERT INTO "Wine_Descriptor" VALUES(3151,1576,6); INSERT INTO "Wine_Descriptor" VALUES(3152,1576,7); INSERT INTO "Wine_Descriptor" VALUES(3153,1577,6); INSERT INTO "Wine_Descriptor" VALUES(3154,1577,7); INSERT INTO "Wine_Descriptor" VALUES(3155,1578,6); INSERT INTO "Wine_Descriptor" VALUES(3156,1578,7); INSERT INTO "Wine_Descriptor" VALUES(3157,1579,6); INSERT INTO "Wine_Descriptor" VALUES(3158,1579,7); INSERT INTO "Wine_Descriptor" VALUES(3159,1580,6); INSERT INTO "Wine_Descriptor" VALUES(3160,1580,7); INSERT INTO "Wine_Descriptor" VALUES(3161,1581,6); INSERT INTO "Wine_Descriptor" VALUES(3162,1581,7); INSERT INTO "Wine_Descriptor" VALUES(3163,1582,6); INSERT INTO "Wine_Descriptor" VALUES(3164,1582,7); INSERT INTO "Wine_Descriptor" VALUES(3165,1583,6); INSERT INTO "Wine_Descriptor" VALUES(3166,1583,7); INSERT INTO "Wine_Descriptor" VALUES(3167,1584,6); INSERT INTO "Wine_Descriptor" VALUES(3168,1584,7); INSERT INTO "Wine_Descriptor" VALUES(3169,1585,6); INSERT INTO "Wine_Descriptor" VALUES(3170,1585,7); INSERT INTO "Wine_Descriptor" VALUES(3171,1586,6); INSERT INTO "Wine_Descriptor" VALUES(3172,1586,7); INSERT INTO "Wine_Descriptor" VALUES(3173,1587,6); INSERT INTO "Wine_Descriptor" VALUES(3174,1587,7); INSERT INTO "Wine_Descriptor" VALUES(3175,1588,6); INSERT INTO "Wine_Descriptor" VALUES(3176,1588,7); INSERT INTO "Wine_Descriptor" VALUES(3177,1589,6); INSERT INTO "Wine_Descriptor" VALUES(3178,1589,7); INSERT INTO "Wine_Descriptor" VALUES(3179,1590,6); INSERT INTO "Wine_Descriptor" VALUES(3180,1590,7); INSERT INTO "Wine_Descriptor" VALUES(3181,1591,6); INSERT INTO "Wine_Descriptor" VALUES(3182,1591,7); INSERT INTO "Wine_Descriptor" VALUES(3183,1592,6); INSERT INTO "Wine_Descriptor" VALUES(3184,1592,7); INSERT INTO "Wine_Descriptor" VALUES(3185,1593,6); INSERT INTO "Wine_Descriptor" VALUES(3186,1593,7); INSERT INTO "Wine_Descriptor" VALUES(3187,1594,6); INSERT INTO "Wine_Descriptor" VALUES(3188,1594,7); INSERT INTO "Wine_Descriptor" VALUES(3189,1595,6); INSERT INTO "Wine_Descriptor" VALUES(3190,1595,7); INSERT INTO "Wine_Descriptor" VALUES(3191,1596,6); INSERT INTO "Wine_Descriptor" VALUES(3192,1596,7); INSERT INTO "Wine_Descriptor" VALUES(3193,1597,6); INSERT INTO "Wine_Descriptor" VALUES(3194,1597,7); INSERT INTO "Wine_Descriptor" VALUES(3195,1598,6); INSERT INTO "Wine_Descriptor" VALUES(3196,1598,7); INSERT INTO "Wine_Descriptor" VALUES(3197,1599,6); INSERT INTO "Wine_Descriptor" VALUES(3198,1599,7); INSERT INTO "Wine_Descriptor" VALUES(3199,1600,6); INSERT INTO "Wine_Descriptor" VALUES(3200,1600,7); INSERT INTO "Wine_Descriptor" VALUES(3201,1601,6); INSERT INTO "Wine_Descriptor" VALUES(3202,1601,7); INSERT INTO "Wine_Descriptor" VALUES(3203,1602,6); INSERT INTO "Wine_Descriptor" VALUES(3204,1602,7); INSERT INTO "Wine_Descriptor" VALUES(3205,1603,6); INSERT INTO "Wine_Descriptor" VALUES(3206,1603,7); INSERT INTO "Wine_Descriptor" VALUES(3207,1604,6); INSERT INTO "Wine_Descriptor" VALUES(3208,1604,7); INSERT INTO "Wine_Descriptor" VALUES(3209,1605,6); INSERT INTO "Wine_Descriptor" VALUES(3210,1605,7); INSERT INTO "Wine_Descriptor" VALUES(3211,1606,6); INSERT INTO "Wine_Descriptor" VALUES(3212,1606,7); INSERT INTO "Wine_Descriptor" VALUES(3213,1607,6); INSERT INTO "Wine_Descriptor" VALUES(3214,1607,7); INSERT INTO "Wine_Descriptor" VALUES(3215,1608,6); INSERT INTO "Wine_Descriptor" VALUES(3216,1608,7); INSERT INTO "Wine_Descriptor" VALUES(3217,1609,6); INSERT INTO "Wine_Descriptor" VALUES(3218,1609,7); INSERT INTO "Wine_Descriptor" VALUES(3219,1610,6); INSERT INTO "Wine_Descriptor" VALUES(3220,1610,7); INSERT INTO "Wine_Descriptor" VALUES(3221,1611,6); INSERT INTO "Wine_Descriptor" VALUES(3222,1611,7); INSERT INTO "Wine_Descriptor" VALUES(3223,1612,6); INSERT INTO "Wine_Descriptor" VALUES(3224,1612,7); INSERT INTO "Wine_Descriptor" VALUES(3225,1613,6); INSERT INTO "Wine_Descriptor" VALUES(3226,1613,7); INSERT INTO "Wine_Descriptor" VALUES(3227,1614,6); INSERT INTO "Wine_Descriptor" VALUES(3228,1614,7); INSERT INTO "Wine_Descriptor" VALUES(3229,1615,6); INSERT INTO "Wine_Descriptor" VALUES(3230,1615,7); INSERT INTO "Wine_Descriptor" VALUES(3231,1616,6); INSERT INTO "Wine_Descriptor" VALUES(3232,1616,7); INSERT INTO "Wine_Descriptor" VALUES(3233,1617,6); INSERT INTO "Wine_Descriptor" VALUES(3234,1617,7); INSERT INTO "Wine_Descriptor" VALUES(3235,1618,6); INSERT INTO "Wine_Descriptor" VALUES(3236,1618,7); INSERT INTO "Wine_Descriptor" VALUES(3237,1619,6); INSERT INTO "Wine_Descriptor" VALUES(3238,1619,7); INSERT INTO "Wine_Descriptor" VALUES(3239,1620,6); INSERT INTO "Wine_Descriptor" VALUES(3240,1620,7); INSERT INTO "Wine_Descriptor" VALUES(3241,1621,6); INSERT INTO "Wine_Descriptor" VALUES(3242,1621,7); INSERT INTO "Wine_Descriptor" VALUES(3243,1622,6); INSERT INTO "Wine_Descriptor" VALUES(3244,1622,7); INSERT INTO "Wine_Descriptor" VALUES(3245,1623,6); INSERT INTO "Wine_Descriptor" VALUES(3246,1623,7); INSERT INTO "Wine_Descriptor" VALUES(3247,1624,6); INSERT INTO "Wine_Descriptor" VALUES(3248,1624,7); INSERT INTO "Wine_Descriptor" VALUES(3249,1625,6); INSERT INTO "Wine_Descriptor" VALUES(3250,1625,7); INSERT INTO "Wine_Descriptor" VALUES(3251,1626,6); INSERT INTO "Wine_Descriptor" VALUES(3252,1626,7); INSERT INTO "Wine_Descriptor" VALUES(3253,1627,6); INSERT INTO "Wine_Descriptor" VALUES(3254,1627,7); INSERT INTO "Wine_Descriptor" VALUES(3255,1628,6); INSERT INTO "Wine_Descriptor" VALUES(3256,1628,7); INSERT INTO "Wine_Descriptor" VALUES(3257,1629,6); INSERT INTO "Wine_Descriptor" VALUES(3258,1629,7); INSERT INTO "Wine_Descriptor" VALUES(3259,1630,6); INSERT INTO "Wine_Descriptor" VALUES(3260,1630,7); INSERT INTO "Wine_Descriptor" VALUES(3261,1631,6); INSERT INTO "Wine_Descriptor" VALUES(3262,1631,7); INSERT INTO "Wine_Descriptor" VALUES(3263,1632,6); INSERT INTO "Wine_Descriptor" VALUES(3264,1632,7); INSERT INTO "Wine_Descriptor" VALUES(3265,1633,6); INSERT INTO "Wine_Descriptor" VALUES(3266,1633,7); INSERT INTO "Wine_Descriptor" VALUES(3267,1634,6); INSERT INTO "Wine_Descriptor" VALUES(3268,1634,7); INSERT INTO "Wine_Descriptor" VALUES(3269,1635,6); INSERT INTO "Wine_Descriptor" VALUES(3270,1635,7); INSERT INTO "Wine_Descriptor" VALUES(3271,1636,6); INSERT INTO "Wine_Descriptor" VALUES(3272,1636,7); INSERT INTO "Wine_Descriptor" VALUES(3273,1637,6); INSERT INTO "Wine_Descriptor" VALUES(3274,1637,7); INSERT INTO "Wine_Descriptor" VALUES(3275,1638,6); INSERT INTO "Wine_Descriptor" VALUES(3276,1638,7); INSERT INTO "Wine_Descriptor" VALUES(3277,1639,6); INSERT INTO "Wine_Descriptor" VALUES(3278,1639,7); INSERT INTO "Wine_Descriptor" VALUES(3279,1640,6); INSERT INTO "Wine_Descriptor" VALUES(3280,1640,7); INSERT INTO "Wine_Descriptor" VALUES(3281,1641,6); INSERT INTO "Wine_Descriptor" VALUES(3282,1641,7); INSERT INTO "Wine_Descriptor" VALUES(3283,1642,6); INSERT INTO "Wine_Descriptor" VALUES(3284,1642,7); INSERT INTO "Wine_Descriptor" VALUES(3285,1643,6); INSERT INTO "Wine_Descriptor" VALUES(3286,1643,7); INSERT INTO "Wine_Descriptor" VALUES(3287,1644,6); INSERT INTO "Wine_Descriptor" VALUES(3288,1644,7); INSERT INTO "Wine_Descriptor" VALUES(3289,1645,6); INSERT INTO "Wine_Descriptor" VALUES(3290,1645,7); INSERT INTO "Wine_Descriptor" VALUES(3291,1646,6); INSERT INTO "Wine_Descriptor" VALUES(3292,1646,7); INSERT INTO "Wine_Descriptor" VALUES(3293,1647,6); INSERT INTO "Wine_Descriptor" VALUES(3294,1647,7); INSERT INTO "Wine_Descriptor" VALUES(3295,1648,6); INSERT INTO "Wine_Descriptor" VALUES(3296,1648,7); INSERT INTO "Wine_Descriptor" VALUES(3297,1649,6); INSERT INTO "Wine_Descriptor" VALUES(3298,1649,7); INSERT INTO "Wine_Descriptor" VALUES(3299,1650,6); INSERT INTO "Wine_Descriptor" VALUES(3300,1650,7); INSERT INTO "Wine_Descriptor" VALUES(3301,1651,6); INSERT INTO "Wine_Descriptor" VALUES(3302,1651,7); INSERT INTO "Wine_Descriptor" VALUES(3303,1652,6); INSERT INTO "Wine_Descriptor" VALUES(3304,1652,7); INSERT INTO "Wine_Descriptor" VALUES(3305,1653,6); INSERT INTO "Wine_Descriptor" VALUES(3306,1653,7); INSERT INTO "Wine_Descriptor" VALUES(3307,1654,6); INSERT INTO "Wine_Descriptor" VALUES(3308,1654,7); INSERT INTO "Wine_Descriptor" VALUES(3309,1655,6); INSERT INTO "Wine_Descriptor" VALUES(3310,1655,7); INSERT INTO "Wine_Descriptor" VALUES(3311,1656,6); INSERT INTO "Wine_Descriptor" VALUES(3312,1656,7); INSERT INTO "Wine_Descriptor" VALUES(3313,1657,6); INSERT INTO "Wine_Descriptor" VALUES(3314,1657,7); INSERT INTO "Wine_Descriptor" VALUES(3315,1658,6); INSERT INTO "Wine_Descriptor" VALUES(3316,1658,7); INSERT INTO "Wine_Descriptor" VALUES(3317,1659,6); INSERT INTO "Wine_Descriptor" VALUES(3318,1659,7); INSERT INTO "Wine_Descriptor" VALUES(3319,1660,6); INSERT INTO "Wine_Descriptor" VALUES(3320,1660,7); INSERT INTO "Wine_Descriptor" VALUES(3321,1661,6); INSERT INTO "Wine_Descriptor" VALUES(3322,1661,7); INSERT INTO "Wine_Descriptor" VALUES(3323,1662,6); INSERT INTO "Wine_Descriptor" VALUES(3324,1662,7); INSERT INTO "Wine_Descriptor" VALUES(3325,1663,6); INSERT INTO "Wine_Descriptor" VALUES(3326,1663,7); INSERT INTO "Wine_Descriptor" VALUES(3327,1664,6); INSERT INTO "Wine_Descriptor" VALUES(3328,1664,7); INSERT INTO "Wine_Descriptor" VALUES(3329,1665,6); INSERT INTO "Wine_Descriptor" VALUES(3330,1665,7); INSERT INTO "Wine_Descriptor" VALUES(3331,1666,6); INSERT INTO "Wine_Descriptor" VALUES(3332,1666,7); INSERT INTO "Wine_Descriptor" VALUES(3333,1667,6); INSERT INTO "Wine_Descriptor" VALUES(3334,1667,7); INSERT INTO "Wine_Descriptor" VALUES(3335,1668,6); INSERT INTO "Wine_Descriptor" VALUES(3336,1668,7); INSERT INTO "Wine_Descriptor" VALUES(3337,1669,6); INSERT INTO "Wine_Descriptor" VALUES(3338,1669,7); INSERT INTO "Wine_Descriptor" VALUES(3339,1670,6); INSERT INTO "Wine_Descriptor" VALUES(3340,1670,7); INSERT INTO "Wine_Descriptor" VALUES(3341,1671,6); INSERT INTO "Wine_Descriptor" VALUES(3342,1671,7); INSERT INTO "Wine_Descriptor" VALUES(3343,1672,6); INSERT INTO "Wine_Descriptor" VALUES(3344,1672,7); INSERT INTO "Wine_Descriptor" VALUES(3345,1673,6); INSERT INTO "Wine_Descriptor" VALUES(3346,1673,7); INSERT INTO "Wine_Descriptor" VALUES(3347,1674,6); INSERT INTO "Wine_Descriptor" VALUES(3348,1674,7); INSERT INTO "Wine_Descriptor" VALUES(3349,1675,6); INSERT INTO "Wine_Descriptor" VALUES(3350,1675,7); INSERT INTO "Wine_Descriptor" VALUES(3351,1676,6); INSERT INTO "Wine_Descriptor" VALUES(3352,1676,7); INSERT INTO "Wine_Descriptor" VALUES(3353,1677,6); INSERT INTO "Wine_Descriptor" VALUES(3354,1677,7); INSERT INTO "Wine_Descriptor" VALUES(3355,1678,6); INSERT INTO "Wine_Descriptor" VALUES(3356,1678,7); INSERT INTO "Wine_Descriptor" VALUES(3357,1679,6); INSERT INTO "Wine_Descriptor" VALUES(3358,1679,7); INSERT INTO "Wine_Descriptor" VALUES(3359,1680,6); INSERT INTO "Wine_Descriptor" VALUES(3360,1680,7); INSERT INTO "Wine_Descriptor" VALUES(3361,1681,6); INSERT INTO "Wine_Descriptor" VALUES(3362,1681,7); INSERT INTO "Wine_Descriptor" VALUES(3363,1682,6); INSERT INTO "Wine_Descriptor" VALUES(3364,1682,7); INSERT INTO "Wine_Descriptor" VALUES(3365,1683,6); INSERT INTO "Wine_Descriptor" VALUES(3366,1683,7); INSERT INTO "Wine_Descriptor" VALUES(3367,1684,6); INSERT INTO "Wine_Descriptor" VALUES(3368,1684,7); INSERT INTO "Wine_Descriptor" VALUES(3369,1685,6); INSERT INTO "Wine_Descriptor" VALUES(3370,1685,7); INSERT INTO "Wine_Descriptor" VALUES(3371,1686,6); INSERT INTO "Wine_Descriptor" VALUES(3372,1686,7); INSERT INTO "Wine_Descriptor" VALUES(3373,1687,6); INSERT INTO "Wine_Descriptor" VALUES(3374,1687,7); INSERT INTO "Wine_Descriptor" VALUES(3375,1688,6); INSERT INTO "Wine_Descriptor" VALUES(3376,1688,7); INSERT INTO "Wine_Descriptor" VALUES(3377,1689,6); INSERT INTO "Wine_Descriptor" VALUES(3378,1689,7); INSERT INTO "Wine_Descriptor" VALUES(3379,1690,6); INSERT INTO "Wine_Descriptor" VALUES(3380,1690,7); INSERT INTO "Wine_Descriptor" VALUES(3381,1691,6); INSERT INTO "Wine_Descriptor" VALUES(3382,1691,7); INSERT INTO "Wine_Descriptor" VALUES(3383,1692,6); INSERT INTO "Wine_Descriptor" VALUES(3384,1692,7); INSERT INTO "Wine_Descriptor" VALUES(3385,1693,6); INSERT INTO "Wine_Descriptor" VALUES(3386,1693,7); INSERT INTO "Wine_Descriptor" VALUES(3387,1694,6); INSERT INTO "Wine_Descriptor" VALUES(3388,1694,7); INSERT INTO "Wine_Descriptor" VALUES(3389,1695,6); INSERT INTO "Wine_Descriptor" VALUES(3390,1695,7); INSERT INTO "Wine_Descriptor" VALUES(3391,1696,6); INSERT INTO "Wine_Descriptor" VALUES(3392,1696,7); INSERT INTO "Wine_Descriptor" VALUES(3393,1697,6); INSERT INTO "Wine_Descriptor" VALUES(3394,1697,7); INSERT INTO "Wine_Descriptor" VALUES(3395,1698,6); INSERT INTO "Wine_Descriptor" VALUES(3396,1698,7); INSERT INTO "Wine_Descriptor" VALUES(3397,1699,6); INSERT INTO "Wine_Descriptor" VALUES(3398,1699,7); INSERT INTO "Wine_Descriptor" VALUES(3399,1700,6); INSERT INTO "Wine_Descriptor" VALUES(3400,1700,7); INSERT INTO "Wine_Descriptor" VALUES(3401,1701,6); INSERT INTO "Wine_Descriptor" VALUES(3402,1701,7); INSERT INTO "Wine_Descriptor" VALUES(3403,1702,6); INSERT INTO "Wine_Descriptor" VALUES(3404,1702,7); INSERT INTO "Wine_Descriptor" VALUES(3405,1703,6); INSERT INTO "Wine_Descriptor" VALUES(3406,1703,7); INSERT INTO "Wine_Descriptor" VALUES(3407,1704,6); INSERT INTO "Wine_Descriptor" VALUES(3408,1704,7); INSERT INTO "Wine_Descriptor" VALUES(3409,1705,6); INSERT INTO "Wine_Descriptor" VALUES(3410,1705,7); INSERT INTO "Wine_Descriptor" VALUES(3411,1706,6); INSERT INTO "Wine_Descriptor" VALUES(3412,1706,7); INSERT INTO "Wine_Descriptor" VALUES(3413,1707,6); INSERT INTO "Wine_Descriptor" VALUES(3414,1707,7); INSERT INTO "Wine_Descriptor" VALUES(3415,1708,6); INSERT INTO "Wine_Descriptor" VALUES(3416,1708,7); INSERT INTO "Wine_Descriptor" VALUES(3417,1709,6); INSERT INTO "Wine_Descriptor" VALUES(3418,1709,7); INSERT INTO "Wine_Descriptor" VALUES(3419,1710,6); INSERT INTO "Wine_Descriptor" VALUES(3420,1710,7); INSERT INTO "Wine_Descriptor" VALUES(3421,1711,6); INSERT INTO "Wine_Descriptor" VALUES(3422,1711,7); INSERT INTO "Wine_Descriptor" VALUES(3423,1712,6); INSERT INTO "Wine_Descriptor" VALUES(3424,1712,7); INSERT INTO "Wine_Descriptor" VALUES(3425,1713,6); INSERT INTO "Wine_Descriptor" VALUES(3426,1713,7); INSERT INTO "Wine_Descriptor" VALUES(3427,1714,6); INSERT INTO "Wine_Descriptor" VALUES(3428,1714,7); INSERT INTO "Wine_Descriptor" VALUES(3429,1715,6); INSERT INTO "Wine_Descriptor" VALUES(3430,1715,7); INSERT INTO "Wine_Descriptor" VALUES(3431,1716,6); INSERT INTO "Wine_Descriptor" VALUES(3432,1716,7); INSERT INTO "Wine_Descriptor" VALUES(3433,1717,6); INSERT INTO "Wine_Descriptor" VALUES(3434,1717,7); INSERT INTO "Wine_Descriptor" VALUES(3435,1718,6); INSERT INTO "Wine_Descriptor" VALUES(3436,1718,7); INSERT INTO "Wine_Descriptor" VALUES(3437,1719,6); INSERT INTO "Wine_Descriptor" VALUES(3438,1719,7); INSERT INTO "Wine_Descriptor" VALUES(3439,1720,6); INSERT INTO "Wine_Descriptor" VALUES(3440,1720,7); INSERT INTO "Wine_Descriptor" VALUES(3441,1721,6); INSERT INTO "Wine_Descriptor" VALUES(3442,1721,7); INSERT INTO "Wine_Descriptor" VALUES(3443,1722,6); INSERT INTO "Wine_Descriptor" VALUES(3444,1722,7); INSERT INTO "Wine_Descriptor" VALUES(3445,1723,6); INSERT INTO "Wine_Descriptor" VALUES(3446,1723,7); INSERT INTO "Wine_Descriptor" VALUES(3447,1724,6); INSERT INTO "Wine_Descriptor" VALUES(3448,1724,7); INSERT INTO "Wine_Descriptor" VALUES(3449,1725,6); INSERT INTO "Wine_Descriptor" VALUES(3450,1725,7); INSERT INTO "Wine_Descriptor" VALUES(3451,1726,6); INSERT INTO "Wine_Descriptor" VALUES(3452,1726,7); INSERT INTO "Wine_Descriptor" VALUES(3453,1727,6); INSERT INTO "Wine_Descriptor" VALUES(3454,1727,7); INSERT INTO "Wine_Descriptor" VALUES(3455,1728,6); INSERT INTO "Wine_Descriptor" VALUES(3456,1728,7); INSERT INTO "Wine_Descriptor" VALUES(3457,1729,6); INSERT INTO "Wine_Descriptor" VALUES(3458,1729,7); INSERT INTO "Wine_Descriptor" VALUES(3459,1730,6); INSERT INTO "Wine_Descriptor" VALUES(3460,1730,7); INSERT INTO "Wine_Descriptor" VALUES(3461,1731,6); INSERT INTO "Wine_Descriptor" VALUES(3462,1731,7); INSERT INTO "Wine_Descriptor" VALUES(3463,1732,6); INSERT INTO "Wine_Descriptor" VALUES(3464,1732,7); INSERT INTO "Wine_Descriptor" VALUES(3465,1733,6); INSERT INTO "Wine_Descriptor" VALUES(3466,1733,7); INSERT INTO "Wine_Descriptor" VALUES(3467,1734,6); INSERT INTO "Wine_Descriptor" VALUES(3468,1734,7); INSERT INTO "Wine_Descriptor" VALUES(3469,1735,6); INSERT INTO "Wine_Descriptor" VALUES(3470,1735,7); INSERT INTO "Wine_Descriptor" VALUES(3471,1736,6); INSERT INTO "Wine_Descriptor" VALUES(3472,1736,7); INSERT INTO "Wine_Descriptor" VALUES(3473,1737,6); INSERT INTO "Wine_Descriptor" VALUES(3474,1737,7); INSERT INTO "Wine_Descriptor" VALUES(3475,1738,6); INSERT INTO "Wine_Descriptor" VALUES(3476,1738,7); INSERT INTO "Wine_Descriptor" VALUES(3477,1739,6); INSERT INTO "Wine_Descriptor" VALUES(3478,1739,7); INSERT INTO "Wine_Descriptor" VALUES(3479,1740,6); INSERT INTO "Wine_Descriptor" VALUES(3480,1740,7); INSERT INTO "Wine_Descriptor" VALUES(3481,1741,6); INSERT INTO "Wine_Descriptor" VALUES(3482,1741,7); INSERT INTO "Wine_Descriptor" VALUES(3483,1742,6); INSERT INTO "Wine_Descriptor" VALUES(3484,1742,7); INSERT INTO "Wine_Descriptor" VALUES(3485,1743,6); INSERT INTO "Wine_Descriptor" VALUES(3486,1743,7); INSERT INTO "Wine_Descriptor" VALUES(3487,1744,6); INSERT INTO "Wine_Descriptor" VALUES(3488,1744,7); INSERT INTO "Wine_Descriptor" VALUES(3489,1745,6); INSERT INTO "Wine_Descriptor" VALUES(3490,1745,7); INSERT INTO "Wine_Descriptor" VALUES(3491,1746,6); INSERT INTO "Wine_Descriptor" VALUES(3492,1746,7); INSERT INTO "Wine_Descriptor" VALUES(3493,1747,6); INSERT INTO "Wine_Descriptor" VALUES(3494,1747,7); INSERT INTO "Wine_Descriptor" VALUES(3495,1748,6); INSERT INTO "Wine_Descriptor" VALUES(3496,1748,7); INSERT INTO "Wine_Descriptor" VALUES(3497,1749,6); INSERT INTO "Wine_Descriptor" VALUES(3498,1749,7); INSERT INTO "Wine_Descriptor" VALUES(3499,1750,6); INSERT INTO "Wine_Descriptor" VALUES(3500,1750,7); INSERT INTO "Wine_Descriptor" VALUES(3501,1751,6); INSERT INTO "Wine_Descriptor" VALUES(3502,1751,7); INSERT INTO "Wine_Descriptor" VALUES(3503,1752,6); INSERT INTO "Wine_Descriptor" VALUES(3504,1752,7); INSERT INTO "Wine_Descriptor" VALUES(3505,1753,6); INSERT INTO "Wine_Descriptor" VALUES(3506,1753,7); INSERT INTO "Wine_Descriptor" VALUES(3507,1754,6); INSERT INTO "Wine_Descriptor" VALUES(3508,1754,7); INSERT INTO "Wine_Descriptor" VALUES(3509,1755,6); INSERT INTO "Wine_Descriptor" VALUES(3510,1755,7); INSERT INTO "Wine_Descriptor" VALUES(3511,1756,6); INSERT INTO "Wine_Descriptor" VALUES(3512,1756,7); INSERT INTO "Wine_Descriptor" VALUES(3513,1757,6); INSERT INTO "Wine_Descriptor" VALUES(3514,1757,7); INSERT INTO "Wine_Descriptor" VALUES(3515,1758,6); INSERT INTO "Wine_Descriptor" VALUES(3516,1758,7); INSERT INTO "Wine_Descriptor" VALUES(3517,1759,6); INSERT INTO "Wine_Descriptor" VALUES(3518,1759,7); INSERT INTO "Wine_Descriptor" VALUES(3519,1760,6); INSERT INTO "Wine_Descriptor" VALUES(3520,1760,7); INSERT INTO "Wine_Descriptor" VALUES(3521,1761,6); INSERT INTO "Wine_Descriptor" VALUES(3522,1761,7); INSERT INTO "Wine_Descriptor" VALUES(3523,1762,6); INSERT INTO "Wine_Descriptor" VALUES(3524,1762,7); INSERT INTO "Wine_Descriptor" VALUES(3525,1763,6); INSERT INTO "Wine_Descriptor" VALUES(3526,1763,7); INSERT INTO "Wine_Descriptor" VALUES(3527,1764,6); INSERT INTO "Wine_Descriptor" VALUES(3528,1764,7); INSERT INTO "Wine_Descriptor" VALUES(3529,1765,6); INSERT INTO "Wine_Descriptor" VALUES(3530,1765,7); INSERT INTO "Wine_Descriptor" VALUES(3531,1766,6); INSERT INTO "Wine_Descriptor" VALUES(3532,1766,7); INSERT INTO "Wine_Descriptor" VALUES(3533,1767,6); INSERT INTO "Wine_Descriptor" VALUES(3534,1767,7); INSERT INTO "Wine_Descriptor" VALUES(3535,1768,6); INSERT INTO "Wine_Descriptor" VALUES(3536,1768,7); INSERT INTO "Wine_Descriptor" VALUES(3537,1769,6); INSERT INTO "Wine_Descriptor" VALUES(3538,1769,7); INSERT INTO "Wine_Descriptor" VALUES(3539,1770,6); INSERT INTO "Wine_Descriptor" VALUES(3540,1770,7); INSERT INTO "Wine_Descriptor" VALUES(3541,1771,6); INSERT INTO "Wine_Descriptor" VALUES(3542,1771,7); INSERT INTO "Wine_Descriptor" VALUES(3543,1772,6); INSERT INTO "Wine_Descriptor" VALUES(3544,1772,7); INSERT INTO "Wine_Descriptor" VALUES(3545,1773,6); INSERT INTO "Wine_Descriptor" VALUES(3546,1773,7); INSERT INTO "Wine_Descriptor" VALUES(3547,1774,6); INSERT INTO "Wine_Descriptor" VALUES(3548,1774,7); INSERT INTO "Wine_Descriptor" VALUES(3549,1775,6); INSERT INTO "Wine_Descriptor" VALUES(3550,1775,7); INSERT INTO "Wine_Descriptor" VALUES(3551,1776,6); INSERT INTO "Wine_Descriptor" VALUES(3552,1776,7); INSERT INTO "Wine_Descriptor" VALUES(3553,1777,6); INSERT INTO "Wine_Descriptor" VALUES(3554,1777,7); INSERT INTO "Wine_Descriptor" VALUES(3555,1778,6); INSERT INTO "Wine_Descriptor" VALUES(3556,1778,7); INSERT INTO "Wine_Descriptor" VALUES(3557,1779,6); INSERT INTO "Wine_Descriptor" VALUES(3558,1779,7); INSERT INTO "Wine_Descriptor" VALUES(3559,1780,6); INSERT INTO "Wine_Descriptor" VALUES(3560,1780,7); INSERT INTO "Wine_Descriptor" VALUES(3561,1781,6); INSERT INTO "Wine_Descriptor" VALUES(3562,1781,7); INSERT INTO "Wine_Descriptor" VALUES(3563,1782,6); INSERT INTO "Wine_Descriptor" VALUES(3564,1782,7); INSERT INTO "Wine_Descriptor" VALUES(3565,1783,6); INSERT INTO "Wine_Descriptor" VALUES(3566,1783,7); INSERT INTO "Wine_Descriptor" VALUES(3567,1784,6); INSERT INTO "Wine_Descriptor" VALUES(3568,1784,7); INSERT INTO "Wine_Descriptor" VALUES(3569,1785,6); INSERT INTO "Wine_Descriptor" VALUES(3570,1785,7); INSERT INTO "Wine_Descriptor" VALUES(3571,1786,6); INSERT INTO "Wine_Descriptor" VALUES(3572,1786,7); INSERT INTO "Wine_Descriptor" VALUES(3573,1787,6); INSERT INTO "Wine_Descriptor" VALUES(3574,1787,7); INSERT INTO "Wine_Descriptor" VALUES(3575,1788,6); INSERT INTO "Wine_Descriptor" VALUES(3576,1788,7); INSERT INTO "Wine_Descriptor" VALUES(3577,1789,6); INSERT INTO "Wine_Descriptor" VALUES(3578,1789,7); INSERT INTO "Wine_Descriptor" VALUES(3579,1790,6); INSERT INTO "Wine_Descriptor" VALUES(3580,1790,7); INSERT INTO "Wine_Descriptor" VALUES(3581,1791,6); INSERT INTO "Wine_Descriptor" VALUES(3582,1791,7); INSERT INTO "Wine_Descriptor" VALUES(3583,1792,6); INSERT INTO "Wine_Descriptor" VALUES(3584,1792,7); INSERT INTO "Wine_Descriptor" VALUES(3585,1793,6); INSERT INTO "Wine_Descriptor" VALUES(3586,1793,7); INSERT INTO "Wine_Descriptor" VALUES(3587,1794,6); INSERT INTO "Wine_Descriptor" VALUES(3588,1794,7); INSERT INTO "Wine_Descriptor" VALUES(3589,1795,6); INSERT INTO "Wine_Descriptor" VALUES(3590,1795,7); INSERT INTO "Wine_Descriptor" VALUES(3591,1796,6); INSERT INTO "Wine_Descriptor" VALUES(3592,1796,7); INSERT INTO "Wine_Descriptor" VALUES(3593,1797,6); INSERT INTO "Wine_Descriptor" VALUES(3594,1797,7); INSERT INTO "Wine_Descriptor" VALUES(3595,1798,6); INSERT INTO "Wine_Descriptor" VALUES(3596,1798,7); INSERT INTO "Wine_Descriptor" VALUES(3597,1799,6); INSERT INTO "Wine_Descriptor" VALUES(3598,1799,7); INSERT INTO "Wine_Descriptor" VALUES(3599,1800,6); INSERT INTO "Wine_Descriptor" VALUES(3600,1800,7); INSERT INTO "Wine_Descriptor" VALUES(3601,1801,6); INSERT INTO "Wine_Descriptor" VALUES(3602,1801,7); INSERT INTO "Wine_Descriptor" VALUES(3603,1802,6); INSERT INTO "Wine_Descriptor" VALUES(3604,1802,7); INSERT INTO "Wine_Descriptor" VALUES(3605,1803,6); INSERT INTO "Wine_Descriptor" VALUES(3606,1803,7); INSERT INTO "Wine_Descriptor" VALUES(3607,1804,6); INSERT INTO "Wine_Descriptor" VALUES(3608,1804,7); INSERT INTO "Wine_Descriptor" VALUES(3609,1805,6); INSERT INTO "Wine_Descriptor" VALUES(3610,1805,7); INSERT INTO "Wine_Descriptor" VALUES(3611,1806,6); INSERT INTO "Wine_Descriptor" VALUES(3612,1806,7); INSERT INTO "Wine_Descriptor" VALUES(3613,1807,6); INSERT INTO "Wine_Descriptor" VALUES(3614,1807,7); INSERT INTO "Wine_Descriptor" VALUES(3615,1808,6); INSERT INTO "Wine_Descriptor" VALUES(3616,1808,7); INSERT INTO "Wine_Descriptor" VALUES(3617,1809,6); INSERT INTO "Wine_Descriptor" VALUES(3618,1809,7); INSERT INTO "Wine_Descriptor" VALUES(3619,1810,6); INSERT INTO "Wine_Descriptor" VALUES(3620,1810,7); INSERT INTO "Wine_Descriptor" VALUES(3621,1811,6); INSERT INTO "Wine_Descriptor" VALUES(3622,1811,7); INSERT INTO "Wine_Descriptor" VALUES(3623,1812,6); INSERT INTO "Wine_Descriptor" VALUES(3624,1812,7); INSERT INTO "Wine_Descriptor" VALUES(3625,1813,6); INSERT INTO "Wine_Descriptor" VALUES(3626,1813,7); INSERT INTO "Wine_Descriptor" VALUES(3627,1814,6); INSERT INTO "Wine_Descriptor" VALUES(3628,1814,7); INSERT INTO "Wine_Descriptor" VALUES(3629,1815,6); INSERT INTO "Wine_Descriptor" VALUES(3630,1815,7); INSERT INTO "Wine_Descriptor" VALUES(3631,1816,6); INSERT INTO "Wine_Descriptor" VALUES(3632,1816,7); INSERT INTO "Wine_Descriptor" VALUES(3633,1817,6); INSERT INTO "Wine_Descriptor" VALUES(3634,1817,7); INSERT INTO "Wine_Descriptor" VALUES(3635,1818,6); INSERT INTO "Wine_Descriptor" VALUES(3636,1818,7); INSERT INTO "Wine_Descriptor" VALUES(3637,1819,6); INSERT INTO "Wine_Descriptor" VALUES(3638,1819,7); INSERT INTO "Wine_Descriptor" VALUES(3639,1820,6); INSERT INTO "Wine_Descriptor" VALUES(3640,1820,7); INSERT INTO "Wine_Descriptor" VALUES(3641,1821,6); INSERT INTO "Wine_Descriptor" VALUES(3642,1821,7); INSERT INTO "Wine_Descriptor" VALUES(3643,1822,6); INSERT INTO "Wine_Descriptor" VALUES(3644,1822,7); INSERT INTO "Wine_Descriptor" VALUES(3645,1823,6); INSERT INTO "Wine_Descriptor" VALUES(3646,1823,7); INSERT INTO "Wine_Descriptor" VALUES(3647,1824,6); INSERT INTO "Wine_Descriptor" VALUES(3648,1824,7); INSERT INTO "Wine_Descriptor" VALUES(3649,1825,6); INSERT INTO "Wine_Descriptor" VALUES(3650,1825,7); INSERT INTO "Wine_Descriptor" VALUES(3651,1826,6); INSERT INTO "Wine_Descriptor" VALUES(3652,1826,7); INSERT INTO "Wine_Descriptor" VALUES(3653,1827,6); INSERT INTO "Wine_Descriptor" VALUES(3654,1827,7); INSERT INTO "Wine_Descriptor" VALUES(3655,1828,6); INSERT INTO "Wine_Descriptor" VALUES(3656,1828,7); INSERT INTO "Wine_Descriptor" VALUES(3657,1829,6); INSERT INTO "Wine_Descriptor" VALUES(3658,1829,7); INSERT INTO "Wine_Descriptor" VALUES(3659,1830,6); INSERT INTO "Wine_Descriptor" VALUES(3660,1830,7); INSERT INTO "Wine_Descriptor" VALUES(3661,1831,6); INSERT INTO "Wine_Descriptor" VALUES(3662,1831,7); INSERT INTO "Wine_Descriptor" VALUES(3663,1832,6); INSERT INTO "Wine_Descriptor" VALUES(3664,1832,7); INSERT INTO "Wine_Descriptor" VALUES(3665,1833,6); INSERT INTO "Wine_Descriptor" VALUES(3666,1833,7); INSERT INTO "Wine_Descriptor" VALUES(3667,1834,6); INSERT INTO "Wine_Descriptor" VALUES(3668,1834,7); INSERT INTO "Wine_Descriptor" VALUES(3669,1835,6); INSERT INTO "Wine_Descriptor" VALUES(3670,1835,7); INSERT INTO "Wine_Descriptor" VALUES(3671,1836,6); INSERT INTO "Wine_Descriptor" VALUES(3672,1836,7); INSERT INTO "Wine_Descriptor" VALUES(3673,1837,6); INSERT INTO "Wine_Descriptor" VALUES(3674,1837,7); INSERT INTO "Wine_Descriptor" VALUES(3675,1838,6); INSERT INTO "Wine_Descriptor" VALUES(3676,1838,7); INSERT INTO "Wine_Descriptor" VALUES(3677,1839,6); INSERT INTO "Wine_Descriptor" VALUES(3678,1839,7); INSERT INTO "Wine_Descriptor" VALUES(3679,1840,6); INSERT INTO "Wine_Descriptor" VALUES(3680,1840,7); INSERT INTO "Wine_Descriptor" VALUES(3681,1841,6); INSERT INTO "Wine_Descriptor" VALUES(3682,1841,7); INSERT INTO "Wine_Descriptor" VALUES(3683,1842,6); INSERT INTO "Wine_Descriptor" VALUES(3684,1842,7); INSERT INTO "Wine_Descriptor" VALUES(3685,1843,6); INSERT INTO "Wine_Descriptor" VALUES(3686,1843,7); INSERT INTO "Wine_Descriptor" VALUES(3687,1844,6); INSERT INTO "Wine_Descriptor" VALUES(3688,1844,7); INSERT INTO "Wine_Descriptor" VALUES(3689,1845,6); INSERT INTO "Wine_Descriptor" VALUES(3690,1845,7); INSERT INTO "Wine_Descriptor" VALUES(3691,1846,6); INSERT INTO "Wine_Descriptor" VALUES(3692,1846,7); INSERT INTO "Wine_Descriptor" VALUES(3693,1847,6); INSERT INTO "Wine_Descriptor" VALUES(3694,1847,7); INSERT INTO "Wine_Descriptor" VALUES(3695,1848,6); INSERT INTO "Wine_Descriptor" VALUES(3696,1848,7); INSERT INTO "Wine_Descriptor" VALUES(3697,1849,6); INSERT INTO "Wine_Descriptor" VALUES(3698,1849,7); INSERT INTO "Wine_Descriptor" VALUES(3699,1850,6); INSERT INTO "Wine_Descriptor" VALUES(3700,1850,7); INSERT INTO "Wine_Descriptor" VALUES(3701,1851,6); INSERT INTO "Wine_Descriptor" VALUES(3702,1851,7); INSERT INTO "Wine_Descriptor" VALUES(3703,1852,6); INSERT INTO "Wine_Descriptor" VALUES(3704,1852,7); INSERT INTO "Wine_Descriptor" VALUES(3705,1853,6); INSERT INTO "Wine_Descriptor" VALUES(3706,1853,7); INSERT INTO "Wine_Descriptor" VALUES(3707,1854,6); INSERT INTO "Wine_Descriptor" VALUES(3708,1854,7); INSERT INTO "Wine_Descriptor" VALUES(3709,1855,6); INSERT INTO "Wine_Descriptor" VALUES(3710,1855,7); INSERT INTO "Wine_Descriptor" VALUES(3711,1856,6); INSERT INTO "Wine_Descriptor" VALUES(3712,1856,7); INSERT INTO "Wine_Descriptor" VALUES(3713,1857,6); INSERT INTO "Wine_Descriptor" VALUES(3714,1857,7); INSERT INTO "Wine_Descriptor" VALUES(3715,1858,6); INSERT INTO "Wine_Descriptor" VALUES(3716,1858,7); INSERT INTO "Wine_Descriptor" VALUES(3717,1859,6); INSERT INTO "Wine_Descriptor" VALUES(3718,1859,7); INSERT INTO "Wine_Descriptor" VALUES(3719,1860,6); INSERT INTO "Wine_Descriptor" VALUES(3720,1860,7); INSERT INTO "Wine_Descriptor" VALUES(3721,1861,6); INSERT INTO "Wine_Descriptor" VALUES(3722,1861,7); INSERT INTO "Wine_Descriptor" VALUES(3723,1862,6); INSERT INTO "Wine_Descriptor" VALUES(3724,1862,7); INSERT INTO "Wine_Descriptor" VALUES(3725,1863,6); INSERT INTO "Wine_Descriptor" VALUES(3726,1863,7); INSERT INTO "Wine_Descriptor" VALUES(3727,1864,6); INSERT INTO "Wine_Descriptor" VALUES(3728,1864,7); INSERT INTO "Wine_Descriptor" VALUES(3729,1865,6); INSERT INTO "Wine_Descriptor" VALUES(3730,1865,7); INSERT INTO "Wine_Descriptor" VALUES(3731,1866,6); INSERT INTO "Wine_Descriptor" VALUES(3732,1866,7); INSERT INTO "Wine_Descriptor" VALUES(3733,1867,6); INSERT INTO "Wine_Descriptor" VALUES(3734,1867,7); INSERT INTO "Wine_Descriptor" VALUES(3735,1868,6); INSERT INTO "Wine_Descriptor" VALUES(3736,1868,7); INSERT INTO "Wine_Descriptor" VALUES(3737,1869,6); INSERT INTO "Wine_Descriptor" VALUES(3738,1869,7); INSERT INTO "Wine_Descriptor" VALUES(3739,1870,6); INSERT INTO "Wine_Descriptor" VALUES(3740,1870,7); INSERT INTO "Wine_Descriptor" VALUES(3741,1871,6); INSERT INTO "Wine_Descriptor" VALUES(3742,1871,7); INSERT INTO "Wine_Descriptor" VALUES(3743,1872,6); INSERT INTO "Wine_Descriptor" VALUES(3744,1872,7); INSERT INTO "Wine_Descriptor" VALUES(3745,1873,6); INSERT INTO "Wine_Descriptor" VALUES(3746,1873,7); INSERT INTO "Wine_Descriptor" VALUES(3747,1874,6); INSERT INTO "Wine_Descriptor" VALUES(3748,1874,7); INSERT INTO "Wine_Descriptor" VALUES(3749,1875,6); INSERT INTO "Wine_Descriptor" VALUES(3750,1875,7); INSERT INTO "Wine_Descriptor" VALUES(3751,1876,6); INSERT INTO "Wine_Descriptor" VALUES(3752,1876,7); INSERT INTO "Wine_Descriptor" VALUES(3753,1877,6); INSERT INTO "Wine_Descriptor" VALUES(3754,1877,7); INSERT INTO "Wine_Descriptor" VALUES(3755,1878,6); INSERT INTO "Wine_Descriptor" VALUES(3756,1878,7); INSERT INTO "Wine_Descriptor" VALUES(3757,1879,6); INSERT INTO "Wine_Descriptor" VALUES(3758,1879,7); INSERT INTO "Wine_Descriptor" VALUES(3759,1880,6); INSERT INTO "Wine_Descriptor" VALUES(3760,1880,7); INSERT INTO "Wine_Descriptor" VALUES(3761,1881,6); INSERT INTO "Wine_Descriptor" VALUES(3762,1881,7); INSERT INTO "Wine_Descriptor" VALUES(3763,1882,6); INSERT INTO "Wine_Descriptor" VALUES(3764,1882,7); INSERT INTO "Wine_Descriptor" VALUES(3765,1883,6); INSERT INTO "Wine_Descriptor" VALUES(3766,1883,7); INSERT INTO "Wine_Descriptor" VALUES(3767,1884,6); INSERT INTO "Wine_Descriptor" VALUES(3768,1884,7); INSERT INTO "Wine_Descriptor" VALUES(3769,1885,6); INSERT INTO "Wine_Descriptor" VALUES(3770,1885,7); INSERT INTO "Wine_Descriptor" VALUES(3771,1886,6); INSERT INTO "Wine_Descriptor" VALUES(3772,1886,7); INSERT INTO "Wine_Descriptor" VALUES(3773,1887,6); INSERT INTO "Wine_Descriptor" VALUES(3774,1887,7); INSERT INTO "Wine_Descriptor" VALUES(3775,1888,6); INSERT INTO "Wine_Descriptor" VALUES(3776,1888,7); INSERT INTO "Wine_Descriptor" VALUES(3777,1889,6); INSERT INTO "Wine_Descriptor" VALUES(3778,1889,7); INSERT INTO "Wine_Descriptor" VALUES(3779,1890,6); INSERT INTO "Wine_Descriptor" VALUES(3780,1890,7); INSERT INTO "Wine_Descriptor" VALUES(3781,1891,6); INSERT INTO "Wine_Descriptor" VALUES(3782,1891,7); INSERT INTO "Wine_Descriptor" VALUES(3783,1892,6); INSERT INTO "Wine_Descriptor" VALUES(3784,1892,7); INSERT INTO "Wine_Descriptor" VALUES(3785,1893,6); INSERT INTO "Wine_Descriptor" VALUES(3786,1893,7); INSERT INTO "Wine_Descriptor" VALUES(3787,1894,6); INSERT INTO "Wine_Descriptor" VALUES(3788,1894,7); INSERT INTO "Wine_Descriptor" VALUES(3789,1895,6); INSERT INTO "Wine_Descriptor" VALUES(3790,1895,7); INSERT INTO "Wine_Descriptor" VALUES(3791,1896,6); INSERT INTO "Wine_Descriptor" VALUES(3792,1896,7); INSERT INTO "Wine_Descriptor" VALUES(3793,1897,6); INSERT INTO "Wine_Descriptor" VALUES(3794,1897,7); INSERT INTO "Wine_Descriptor" VALUES(3795,1898,6); INSERT INTO "Wine_Descriptor" VALUES(3796,1898,7); INSERT INTO "Wine_Descriptor" VALUES(3797,1899,6); INSERT INTO "Wine_Descriptor" VALUES(3798,1899,7); INSERT INTO "Wine_Descriptor" VALUES(3799,1900,6); INSERT INTO "Wine_Descriptor" VALUES(3800,1900,7); INSERT INTO "Wine_Descriptor" VALUES(3801,1901,6); INSERT INTO "Wine_Descriptor" VALUES(3802,1901,7); INSERT INTO "Wine_Descriptor" VALUES(3803,1902,6); INSERT INTO "Wine_Descriptor" VALUES(3804,1902,7); INSERT INTO "Wine_Descriptor" VALUES(3805,1903,6); INSERT INTO "Wine_Descriptor" VALUES(3806,1903,7); INSERT INTO "Wine_Descriptor" VALUES(3807,1904,6); INSERT INTO "Wine_Descriptor" VALUES(3808,1904,7); INSERT INTO "Wine_Descriptor" VALUES(3809,1905,6); INSERT INTO "Wine_Descriptor" VALUES(3810,1905,7); INSERT INTO "Wine_Descriptor" VALUES(3811,1906,6); INSERT INTO "Wine_Descriptor" VALUES(3812,1906,7); INSERT INTO "Wine_Descriptor" VALUES(3813,1907,6); INSERT INTO "Wine_Descriptor" VALUES(3814,1907,7); INSERT INTO "Wine_Descriptor" VALUES(3815,1908,6); INSERT INTO "Wine_Descriptor" VALUES(3816,1908,7); INSERT INTO "Wine_Descriptor" VALUES(3817,1909,6); INSERT INTO "Wine_Descriptor" VALUES(3818,1909,7); INSERT INTO "Wine_Descriptor" VALUES(3819,1910,6); INSERT INTO "Wine_Descriptor" VALUES(3820,1910,7); INSERT INTO "Wine_Descriptor" VALUES(3821,1911,6); INSERT INTO "Wine_Descriptor" VALUES(3822,1911,7); INSERT INTO "Wine_Descriptor" VALUES(3823,1912,6); INSERT INTO "Wine_Descriptor" VALUES(3824,1912,7); INSERT INTO "Wine_Descriptor" VALUES(3825,1913,6); INSERT INTO "Wine_Descriptor" VALUES(3826,1913,7); INSERT INTO "Wine_Descriptor" VALUES(3827,1914,6); INSERT INTO "Wine_Descriptor" VALUES(3828,1914,7); INSERT INTO "Wine_Descriptor" VALUES(3829,1915,6); INSERT INTO "Wine_Descriptor" VALUES(3830,1915,7); INSERT INTO "Wine_Descriptor" VALUES(3831,1916,6); INSERT INTO "Wine_Descriptor" VALUES(3832,1916,7); INSERT INTO "Wine_Descriptor" VALUES(3833,1917,6); INSERT INTO "Wine_Descriptor" VALUES(3834,1917,7); INSERT INTO "Wine_Descriptor" VALUES(3835,1918,6); INSERT INTO "Wine_Descriptor" VALUES(3836,1918,7); INSERT INTO "Wine_Descriptor" VALUES(3837,1919,6); INSERT INTO "Wine_Descriptor" VALUES(3838,1919,7); INSERT INTO "Wine_Descriptor" VALUES(3839,1920,6); INSERT INTO "Wine_Descriptor" VALUES(3840,1920,7); INSERT INTO "Wine_Descriptor" VALUES(3841,1921,6); INSERT INTO "Wine_Descriptor" VALUES(3842,1921,7); INSERT INTO "Wine_Descriptor" VALUES(3843,1922,6); INSERT INTO "Wine_Descriptor" VALUES(3844,1922,7); INSERT INTO "Wine_Descriptor" VALUES(3845,1923,6); INSERT INTO "Wine_Descriptor" VALUES(3846,1923,7); INSERT INTO "Wine_Descriptor" VALUES(3847,1924,6); INSERT INTO "Wine_Descriptor" VALUES(3848,1924,7); INSERT INTO "Wine_Descriptor" VALUES(3849,1925,6); INSERT INTO "Wine_Descriptor" VALUES(3850,1925,7); INSERT INTO "Wine_Descriptor" VALUES(3851,1926,6); INSERT INTO "Wine_Descriptor" VALUES(3852,1926,7); INSERT INTO "Wine_Descriptor" VALUES(3853,1927,6); INSERT INTO "Wine_Descriptor" VALUES(3854,1927,7); INSERT INTO "Wine_Descriptor" VALUES(3855,1928,6); INSERT INTO "Wine_Descriptor" VALUES(3856,1928,7); INSERT INTO "Wine_Descriptor" VALUES(3857,1929,6); INSERT INTO "Wine_Descriptor" VALUES(3858,1929,7); INSERT INTO "Wine_Descriptor" VALUES(3859,1930,6); INSERT INTO "Wine_Descriptor" VALUES(3860,1930,7); INSERT INTO "Wine_Descriptor" VALUES(3861,1931,6); INSERT INTO "Wine_Descriptor" VALUES(3862,1931,7); INSERT INTO "Wine_Descriptor" VALUES(3863,1932,6); INSERT INTO "Wine_Descriptor" VALUES(3864,1932,7); INSERT INTO "Wine_Descriptor" VALUES(3865,1933,6); INSERT INTO "Wine_Descriptor" VALUES(3866,1933,7); INSERT INTO "Wine_Descriptor" VALUES(3867,1934,6); INSERT INTO "Wine_Descriptor" VALUES(3868,1934,7); INSERT INTO "Wine_Descriptor" VALUES(3869,1935,6); INSERT INTO "Wine_Descriptor" VALUES(3870,1935,7); INSERT INTO "Wine_Descriptor" VALUES(3871,1936,6); INSERT INTO "Wine_Descriptor" VALUES(3872,1936,7); INSERT INTO "Wine_Descriptor" VALUES(3873,1937,6); INSERT INTO "Wine_Descriptor" VALUES(3874,1937,7); INSERT INTO "Wine_Descriptor" VALUES(3875,1938,6); INSERT INTO "Wine_Descriptor" VALUES(3876,1938,7); INSERT INTO "Wine_Descriptor" VALUES(3877,1939,6); INSERT INTO "Wine_Descriptor" VALUES(3878,1939,7); INSERT INTO "Wine_Descriptor" VALUES(3879,1940,6); INSERT INTO "Wine_Descriptor" VALUES(3880,1940,7); INSERT INTO "Wine_Descriptor" VALUES(3881,1941,6); INSERT INTO "Wine_Descriptor" VALUES(3882,1941,7); INSERT INTO "Wine_Descriptor" VALUES(3883,1942,6); INSERT INTO "Wine_Descriptor" VALUES(3884,1942,7); INSERT INTO "Wine_Descriptor" VALUES(3885,1943,6); INSERT INTO "Wine_Descriptor" VALUES(3886,1943,7); INSERT INTO "Wine_Descriptor" VALUES(3887,1944,6); INSERT INTO "Wine_Descriptor" VALUES(3888,1944,7); INSERT INTO "Wine_Descriptor" VALUES(3889,1945,6); INSERT INTO "Wine_Descriptor" VALUES(3890,1945,7); INSERT INTO "Wine_Descriptor" VALUES(3891,1946,6); INSERT INTO "Wine_Descriptor" VALUES(3892,1946,7); INSERT INTO "Wine_Descriptor" VALUES(3893,1947,6); INSERT INTO "Wine_Descriptor" VALUES(3894,1947,7); INSERT INTO "Wine_Descriptor" VALUES(3895,1948,6); INSERT INTO "Wine_Descriptor" VALUES(3896,1948,7); INSERT INTO "Wine_Descriptor" VALUES(3897,1949,6); INSERT INTO "Wine_Descriptor" VALUES(3898,1949,7); INSERT INTO "Wine_Descriptor" VALUES(3899,1950,6); INSERT INTO "Wine_Descriptor" VALUES(3900,1950,7); INSERT INTO "Wine_Descriptor" VALUES(3901,1951,6); INSERT INTO "Wine_Descriptor" VALUES(3902,1951,7); INSERT INTO "Wine_Descriptor" VALUES(3903,1952,6); INSERT INTO "Wine_Descriptor" VALUES(3904,1952,7); INSERT INTO "Wine_Descriptor" VALUES(3905,1953,6); INSERT INTO "Wine_Descriptor" VALUES(3906,1953,7); INSERT INTO "Wine_Descriptor" VALUES(3907,1954,6); INSERT INTO "Wine_Descriptor" VALUES(3908,1954,7); INSERT INTO "Wine_Descriptor" VALUES(3909,1955,6); INSERT INTO "Wine_Descriptor" VALUES(3910,1955,7); INSERT INTO "Wine_Descriptor" VALUES(3911,1956,6); INSERT INTO "Wine_Descriptor" VALUES(3912,1956,7); INSERT INTO "Wine_Descriptor" VALUES(3913,1957,6); INSERT INTO "Wine_Descriptor" VALUES(3914,1957,7); INSERT INTO "Wine_Descriptor" VALUES(3915,1958,6); INSERT INTO "Wine_Descriptor" VALUES(3916,1958,7); INSERT INTO "Wine_Descriptor" VALUES(3917,1959,6); INSERT INTO "Wine_Descriptor" VALUES(3918,1959,7); INSERT INTO "Wine_Descriptor" VALUES(3919,1960,6); INSERT INTO "Wine_Descriptor" VALUES(3920,1960,7); INSERT INTO "Wine_Descriptor" VALUES(3921,1961,6); INSERT INTO "Wine_Descriptor" VALUES(3922,1961,7); INSERT INTO "Wine_Descriptor" VALUES(3923,1962,6); INSERT INTO "Wine_Descriptor" VALUES(3924,1962,7); INSERT INTO "Wine_Descriptor" VALUES(3925,1963,6); INSERT INTO "Wine_Descriptor" VALUES(3926,1963,7); INSERT INTO "Wine_Descriptor" VALUES(3927,1964,6); INSERT INTO "Wine_Descriptor" VALUES(3928,1964,7); INSERT INTO "Wine_Descriptor" VALUES(3929,1965,6); INSERT INTO "Wine_Descriptor" VALUES(3930,1965,7); INSERT INTO "Wine_Descriptor" VALUES(3931,1966,6); INSERT INTO "Wine_Descriptor" VALUES(3932,1966,7); INSERT INTO "Wine_Descriptor" VALUES(3933,1967,6); INSERT INTO "Wine_Descriptor" VALUES(3934,1967,7); INSERT INTO "Wine_Descriptor" VALUES(3935,1968,6); INSERT INTO "Wine_Descriptor" VALUES(3936,1968,7); INSERT INTO "Wine_Descriptor" VALUES(3937,1969,6); INSERT INTO "Wine_Descriptor" VALUES(3938,1969,7); INSERT INTO "Wine_Descriptor" VALUES(3939,1970,6); INSERT INTO "Wine_Descriptor" VALUES(3940,1970,7); INSERT INTO "Wine_Descriptor" VALUES(3941,1971,6); INSERT INTO "Wine_Descriptor" VALUES(3942,1971,7); INSERT INTO "Wine_Descriptor" VALUES(3943,1972,6); INSERT INTO "Wine_Descriptor" VALUES(3944,1972,7); INSERT INTO "Wine_Descriptor" VALUES(3945,1973,6); INSERT INTO "Wine_Descriptor" VALUES(3946,1973,7); INSERT INTO "Wine_Descriptor" VALUES(3947,1974,6); INSERT INTO "Wine_Descriptor" VALUES(3948,1974,7); INSERT INTO "Wine_Descriptor" VALUES(3949,1975,6); INSERT INTO "Wine_Descriptor" VALUES(3950,1975,7); INSERT INTO "Wine_Descriptor" VALUES(3951,1976,6); INSERT INTO "Wine_Descriptor" VALUES(3952,1976,7); INSERT INTO "Wine_Descriptor" VALUES(3953,1977,6); INSERT INTO "Wine_Descriptor" VALUES(3954,1977,7); INSERT INTO "Wine_Descriptor" VALUES(3955,1978,6); INSERT INTO "Wine_Descriptor" VALUES(3956,1978,7); INSERT INTO "Wine_Descriptor" VALUES(3957,1979,6); INSERT INTO "Wine_Descriptor" VALUES(3958,1979,7); INSERT INTO "Wine_Descriptor" VALUES(3959,1980,6); INSERT INTO "Wine_Descriptor" VALUES(3960,1980,7); INSERT INTO "Wine_Descriptor" VALUES(3961,1981,6); INSERT INTO "Wine_Descriptor" VALUES(3962,1981,7); INSERT INTO "Wine_Descriptor" VALUES(3963,1982,6); INSERT INTO "Wine_Descriptor" VALUES(3964,1982,7); INSERT INTO "Wine_Descriptor" VALUES(3965,1983,6); INSERT INTO "Wine_Descriptor" VALUES(3966,1983,7); INSERT INTO "Wine_Descriptor" VALUES(3967,1984,6); INSERT INTO "Wine_Descriptor" VALUES(3968,1984,7); INSERT INTO "Wine_Descriptor" VALUES(3969,1985,6); INSERT INTO "Wine_Descriptor" VALUES(3970,1985,7); INSERT INTO "Wine_Descriptor" VALUES(3971,1986,6); INSERT INTO "Wine_Descriptor" VALUES(3972,1986,7); INSERT INTO "Wine_Descriptor" VALUES(3973,1987,6); INSERT INTO "Wine_Descriptor" VALUES(3974,1987,7); INSERT INTO "Wine_Descriptor" VALUES(3975,1988,6); INSERT INTO "Wine_Descriptor" VALUES(3976,1988,7); INSERT INTO "Wine_Descriptor" VALUES(3977,1989,6); INSERT INTO "Wine_Descriptor" VALUES(3978,1989,7); INSERT INTO "Wine_Descriptor" VALUES(3979,1990,6); INSERT INTO "Wine_Descriptor" VALUES(3980,1990,7); INSERT INTO "Wine_Descriptor" VALUES(3981,1991,6); INSERT INTO "Wine_Descriptor" VALUES(3982,1991,7); INSERT INTO "Wine_Descriptor" VALUES(3983,1992,6); INSERT INTO "Wine_Descriptor" VALUES(3984,1992,7); INSERT INTO "Wine_Descriptor" VALUES(3985,1993,6); INSERT INTO "Wine_Descriptor" VALUES(3986,1993,7); INSERT INTO "Wine_Descriptor" VALUES(3987,1994,6); INSERT INTO "Wine_Descriptor" VALUES(3988,1994,7); INSERT INTO "Wine_Descriptor" VALUES(3989,1995,6); INSERT INTO "Wine_Descriptor" VALUES(3990,1995,7); INSERT INTO "Wine_Descriptor" VALUES(3991,1996,6); INSERT INTO "Wine_Descriptor" VALUES(3992,1996,7); INSERT INTO "Wine_Descriptor" VALUES(3993,1997,6); INSERT INTO "Wine_Descriptor" VALUES(3994,1997,7); INSERT INTO "Wine_Descriptor" VALUES(3995,1998,6); INSERT INTO "Wine_Descriptor" VALUES(3996,1998,7); INSERT INTO "Wine_Descriptor" VALUES(3997,1999,6); INSERT INTO "Wine_Descriptor" VALUES(3998,1999,7); INSERT INTO "Wine_Descriptor" VALUES(3999,2000,6); INSERT INTO "Wine_Descriptor" VALUES(4000,2000,7); INSERT INTO "Wine_Descriptor" VALUES(4001,2001,6); INSERT INTO "Wine_Descriptor" VALUES(4002,2001,7); INSERT INTO "Wine_Descriptor" VALUES(4003,2002,6); INSERT INTO "Wine_Descriptor" VALUES(4004,2002,7); INSERT INTO "Wine_Descriptor" VALUES(4005,2003,6); INSERT INTO "Wine_Descriptor" VALUES(4006,2003,7); INSERT INTO "Wine_Descriptor" VALUES(4007,2004,6); INSERT INTO "Wine_Descriptor" VALUES(4008,2004,7); INSERT INTO "Wine_Descriptor" VALUES(4009,2005,6); INSERT INTO "Wine_Descriptor" VALUES(4010,2005,7); INSERT INTO "Wine_Descriptor" VALUES(4011,2006,6); INSERT INTO "Wine_Descriptor" VALUES(4012,2006,7); INSERT INTO "Wine_Descriptor" VALUES(4013,2007,6); INSERT INTO "Wine_Descriptor" VALUES(4014,2007,7); INSERT INTO "Wine_Descriptor" VALUES(4015,2008,6); INSERT INTO "Wine_Descriptor" VALUES(4016,2008,7); INSERT INTO "Wine_Descriptor" VALUES(4017,2009,6); INSERT INTO "Wine_Descriptor" VALUES(4018,2009,7); INSERT INTO "Wine_Descriptor" VALUES(4019,2010,6); INSERT INTO "Wine_Descriptor" VALUES(4020,2010,7); INSERT INTO "Wine_Descriptor" VALUES(4021,2011,6); INSERT INTO "Wine_Descriptor" VALUES(4022,2011,7); INSERT INTO "Wine_Descriptor" VALUES(4023,2012,6); INSERT INTO "Wine_Descriptor" VALUES(4024,2012,7); INSERT INTO "Wine_Descriptor" VALUES(4025,2013,6); INSERT INTO "Wine_Descriptor" VALUES(4026,2013,7); INSERT INTO "Wine_Descriptor" VALUES(4027,2014,6); INSERT INTO "Wine_Descriptor" VALUES(4028,2014,7); INSERT INTO "Wine_Descriptor" VALUES(4029,2015,6); INSERT INTO "Wine_Descriptor" VALUES(4030,2015,7); INSERT INTO "Wine_Descriptor" VALUES(4031,2016,6); INSERT INTO "Wine_Descriptor" VALUES(4032,2016,7); INSERT INTO "Wine_Descriptor" VALUES(4033,2017,6); INSERT INTO "Wine_Descriptor" VALUES(4034,2017,7); INSERT INTO "Wine_Descriptor" VALUES(4035,2018,6); INSERT INTO "Wine_Descriptor" VALUES(4036,2018,7); INSERT INTO "Wine_Descriptor" VALUES(4037,2019,6); INSERT INTO "Wine_Descriptor" VALUES(4038,2019,7); INSERT INTO "Wine_Descriptor" VALUES(4039,2020,6); INSERT INTO "Wine_Descriptor" VALUES(4040,2020,7); INSERT INTO "Wine_Descriptor" VALUES(4041,2021,6); INSERT INTO "Wine_Descriptor" VALUES(4042,2021,7); INSERT INTO "Wine_Descriptor" VALUES(4043,2022,6); INSERT INTO "Wine_Descriptor" VALUES(4044,2022,7); INSERT INTO "Wine_Descriptor" VALUES(4045,2023,6); INSERT INTO "Wine_Descriptor" VALUES(4046,2023,7); INSERT INTO "Wine_Descriptor" VALUES(4047,2024,6); INSERT INTO "Wine_Descriptor" VALUES(4048,2024,7); INSERT INTO "Wine_Descriptor" VALUES(4049,2025,6); INSERT INTO "Wine_Descriptor" VALUES(4050,2025,7); INSERT INTO "Wine_Descriptor" VALUES(4051,2026,6); INSERT INTO "Wine_Descriptor" VALUES(4052,2026,7); INSERT INTO "Wine_Descriptor" VALUES(4053,2027,6); INSERT INTO "Wine_Descriptor" VALUES(4054,2027,7); INSERT INTO "Wine_Descriptor" VALUES(4055,2028,6); INSERT INTO "Wine_Descriptor" VALUES(4056,2028,7); INSERT INTO "Wine_Descriptor" VALUES(4057,2029,6); INSERT INTO "Wine_Descriptor" VALUES(4058,2029,7); INSERT INTO "Wine_Descriptor" VALUES(4059,2030,6); INSERT INTO "Wine_Descriptor" VALUES(4060,2030,7); INSERT INTO "Wine_Descriptor" VALUES(4061,2031,6); INSERT INTO "Wine_Descriptor" VALUES(4062,2031,7); INSERT INTO "Wine_Descriptor" VALUES(4063,2032,6); INSERT INTO "Wine_Descriptor" VALUES(4064,2032,7); INSERT INTO "Wine_Descriptor" VALUES(4065,2033,6); INSERT INTO "Wine_Descriptor" VALUES(4066,2033,7); INSERT INTO "Wine_Descriptor" VALUES(4067,2034,6); INSERT INTO "Wine_Descriptor" VALUES(4068,2034,7); INSERT INTO "Wine_Descriptor" VALUES(4069,2035,6); INSERT INTO "Wine_Descriptor" VALUES(4070,2035,7); INSERT INTO "Wine_Descriptor" VALUES(4071,2036,6); INSERT INTO "Wine_Descriptor" VALUES(4072,2036,7); INSERT INTO "Wine_Descriptor" VALUES(4073,2037,6); INSERT INTO "Wine_Descriptor" VALUES(4074,2037,7); INSERT INTO "Wine_Descriptor" VALUES(4075,2038,6); INSERT INTO "Wine_Descriptor" VALUES(4076,2038,7); INSERT INTO "Wine_Descriptor" VALUES(4077,2039,6); INSERT INTO "Wine_Descriptor" VALUES(4078,2039,7); INSERT INTO "Wine_Descriptor" VALUES(4079,2040,6); INSERT INTO "Wine_Descriptor" VALUES(4080,2040,7); INSERT INTO "Wine_Descriptor" VALUES(4081,2041,6); INSERT INTO "Wine_Descriptor" VALUES(4082,2041,7); INSERT INTO "Wine_Descriptor" VALUES(4083,2042,6); INSERT INTO "Wine_Descriptor" VALUES(4084,2042,7); INSERT INTO "Wine_Descriptor" VALUES(4085,2043,6); INSERT INTO "Wine_Descriptor" VALUES(4086,2043,7); INSERT INTO "Wine_Descriptor" VALUES(4087,2044,6); INSERT INTO "Wine_Descriptor" VALUES(4088,2044,7); INSERT INTO "Wine_Descriptor" VALUES(4089,2045,6); INSERT INTO "Wine_Descriptor" VALUES(4090,2045,7); INSERT INTO "Wine_Descriptor" VALUES(4091,2046,6); INSERT INTO "Wine_Descriptor" VALUES(4092,2046,7); INSERT INTO "Wine_Descriptor" VALUES(4093,2047,6); INSERT INTO "Wine_Descriptor" VALUES(4094,2047,7); INSERT INTO "Wine_Descriptor" VALUES(4095,2048,6); INSERT INTO "Wine_Descriptor" VALUES(4096,2048,7); INSERT INTO "Wine_Descriptor" VALUES(4097,2049,6); INSERT INTO "Wine_Descriptor" VALUES(4098,2049,7); INSERT INTO "Wine_Descriptor" VALUES(4099,2050,6); INSERT INTO "Wine_Descriptor" VALUES(4100,2050,7); INSERT INTO "Wine_Descriptor" VALUES(4101,2051,6); INSERT INTO "Wine_Descriptor" VALUES(4102,2051,7); INSERT INTO "Wine_Descriptor" VALUES(4103,2052,6); INSERT INTO "Wine_Descriptor" VALUES(4104,2052,7); INSERT INTO "Wine_Descriptor" VALUES(4105,2053,6); INSERT INTO "Wine_Descriptor" VALUES(4106,2053,7); INSERT INTO "Wine_Descriptor" VALUES(4107,2054,6); INSERT INTO "Wine_Descriptor" VALUES(4108,2054,7); INSERT INTO "Wine_Descriptor" VALUES(4109,2055,6); INSERT INTO "Wine_Descriptor" VALUES(4110,2055,7); INSERT INTO "Wine_Descriptor" VALUES(4111,2056,6); INSERT INTO "Wine_Descriptor" VALUES(4112,2056,7); INSERT INTO "Wine_Descriptor" VALUES(4113,2057,6); INSERT INTO "Wine_Descriptor" VALUES(4114,2057,7); INSERT INTO "Wine_Descriptor" VALUES(4115,2058,6); INSERT INTO "Wine_Descriptor" VALUES(4116,2058,7); INSERT INTO "Wine_Descriptor" VALUES(4117,2059,6); INSERT INTO "Wine_Descriptor" VALUES(4118,2059,7); INSERT INTO "Wine_Descriptor" VALUES(4119,2060,6); INSERT INTO "Wine_Descriptor" VALUES(4120,2060,7); INSERT INTO "Wine_Descriptor" VALUES(4121,2061,6); INSERT INTO "Wine_Descriptor" VALUES(4122,2061,7); INSERT INTO "Wine_Descriptor" VALUES(4123,2062,6); INSERT INTO "Wine_Descriptor" VALUES(4124,2062,7); INSERT INTO "Wine_Descriptor" VALUES(4125,2063,6); INSERT INTO "Wine_Descriptor" VALUES(4126,2063,7); INSERT INTO "Wine_Descriptor" VALUES(4127,2064,6); INSERT INTO "Wine_Descriptor" VALUES(4128,2064,7); INSERT INTO "Wine_Descriptor" VALUES(4129,2065,6); INSERT INTO "Wine_Descriptor" VALUES(4130,2065,7); INSERT INTO "Wine_Descriptor" VALUES(4131,2066,6); INSERT INTO "Wine_Descriptor" VALUES(4132,2066,7); INSERT INTO "Wine_Descriptor" VALUES(4133,2067,6); INSERT INTO "Wine_Descriptor" VALUES(4134,2067,7); INSERT INTO "Wine_Descriptor" VALUES(4135,2068,6); INSERT INTO "Wine_Descriptor" VALUES(4136,2068,7); INSERT INTO "Wine_Descriptor" VALUES(4137,2069,6); INSERT INTO "Wine_Descriptor" VALUES(4138,2069,7); INSERT INTO "Wine_Descriptor" VALUES(4139,2070,6); INSERT INTO "Wine_Descriptor" VALUES(4140,2070,7); INSERT INTO "Wine_Descriptor" VALUES(4141,2071,6); INSERT INTO "Wine_Descriptor" VALUES(4142,2071,7); INSERT INTO "Wine_Descriptor" VALUES(4143,2072,6); INSERT INTO "Wine_Descriptor" VALUES(4144,2072,7); INSERT INTO "Wine_Descriptor" VALUES(4145,2073,6); INSERT INTO "Wine_Descriptor" VALUES(4146,2073,7); INSERT INTO "Wine_Descriptor" VALUES(4147,2074,6); INSERT INTO "Wine_Descriptor" VALUES(4148,2074,7); INSERT INTO "Wine_Descriptor" VALUES(4149,2075,6); INSERT INTO "Wine_Descriptor" VALUES(4150,2075,7); INSERT INTO "Wine_Descriptor" VALUES(4151,2076,6); INSERT INTO "Wine_Descriptor" VALUES(4152,2076,7); INSERT INTO "Wine_Descriptor" VALUES(4153,2077,6); INSERT INTO "Wine_Descriptor" VALUES(4154,2077,7); INSERT INTO "Wine_Descriptor" VALUES(4155,2078,6); INSERT INTO "Wine_Descriptor" VALUES(4156,2078,7); INSERT INTO "Wine_Descriptor" VALUES(4157,2079,6); INSERT INTO "Wine_Descriptor" VALUES(4158,2079,7); INSERT INTO "Wine_Descriptor" VALUES(4159,2080,6); INSERT INTO "Wine_Descriptor" VALUES(4160,2080,7); INSERT INTO "Wine_Descriptor" VALUES(4161,2081,6); INSERT INTO "Wine_Descriptor" VALUES(4162,2081,7); INSERT INTO "Wine_Descriptor" VALUES(4163,2082,6); INSERT INTO "Wine_Descriptor" VALUES(4164,2082,7); INSERT INTO "Wine_Descriptor" VALUES(4165,2083,6); INSERT INTO "Wine_Descriptor" VALUES(4166,2083,7); INSERT INTO "Wine_Descriptor" VALUES(4167,2084,6); INSERT INTO "Wine_Descriptor" VALUES(4168,2084,7); INSERT INTO "Wine_Descriptor" VALUES(4169,2085,6); INSERT INTO "Wine_Descriptor" VALUES(4170,2085,7); INSERT INTO "Wine_Descriptor" VALUES(4171,2086,6); INSERT INTO "Wine_Descriptor" VALUES(4172,2086,7); INSERT INTO "Wine_Descriptor" VALUES(4173,2087,6); INSERT INTO "Wine_Descriptor" VALUES(4174,2087,7); INSERT INTO "Wine_Descriptor" VALUES(4175,2088,6); INSERT INTO "Wine_Descriptor" VALUES(4176,2088,7); INSERT INTO "Wine_Descriptor" VALUES(4177,2089,6); INSERT INTO "Wine_Descriptor" VALUES(4178,2089,7); INSERT INTO "Wine_Descriptor" VALUES(4179,2090,6); INSERT INTO "Wine_Descriptor" VALUES(4180,2090,7); INSERT INTO "Wine_Descriptor" VALUES(4181,2091,6); INSERT INTO "Wine_Descriptor" VALUES(4182,2091,7); INSERT INTO "Wine_Descriptor" VALUES(4183,2092,6); INSERT INTO "Wine_Descriptor" VALUES(4184,2092,7); INSERT INTO "Wine_Descriptor" VALUES(4185,2093,6); INSERT INTO "Wine_Descriptor" VALUES(4186,2093,7); INSERT INTO "Wine_Descriptor" VALUES(4187,2094,6); INSERT INTO "Wine_Descriptor" VALUES(4188,2094,7); INSERT INTO "Wine_Descriptor" VALUES(4189,2095,6); INSERT INTO "Wine_Descriptor" VALUES(4190,2095,7); INSERT INTO "Wine_Descriptor" VALUES(4191,2096,6); INSERT INTO "Wine_Descriptor" VALUES(4192,2096,7); INSERT INTO "Wine_Descriptor" VALUES(4193,2097,6); INSERT INTO "Wine_Descriptor" VALUES(4194,2097,7); INSERT INTO "Wine_Descriptor" VALUES(4195,2098,6); INSERT INTO "Wine_Descriptor" VALUES(4196,2098,7); INSERT INTO "Wine_Descriptor" VALUES(4197,2099,6); INSERT INTO "Wine_Descriptor" VALUES(4198,2099,7); INSERT INTO "Wine_Descriptor" VALUES(4199,2100,6); INSERT INTO "Wine_Descriptor" VALUES(4200,2100,7); INSERT INTO "Wine_Descriptor" VALUES(4201,2101,6); INSERT INTO "Wine_Descriptor" VALUES(4202,2101,7); INSERT INTO "Wine_Descriptor" VALUES(4203,2102,6); INSERT INTO "Wine_Descriptor" VALUES(4204,2102,7); INSERT INTO "Wine_Descriptor" VALUES(4205,2103,6); INSERT INTO "Wine_Descriptor" VALUES(4206,2103,7); INSERT INTO "Wine_Descriptor" VALUES(4207,2104,6); INSERT INTO "Wine_Descriptor" VALUES(4208,2104,7); INSERT INTO "Wine_Descriptor" VALUES(4209,2105,6); INSERT INTO "Wine_Descriptor" VALUES(4210,2105,7); INSERT INTO "Wine_Descriptor" VALUES(4211,2106,6); INSERT INTO "Wine_Descriptor" VALUES(4212,2106,7); INSERT INTO "Wine_Descriptor" VALUES(4213,2107,6); INSERT INTO "Wine_Descriptor" VALUES(4214,2107,7); INSERT INTO "Wine_Descriptor" VALUES(4215,2108,6); INSERT INTO "Wine_Descriptor" VALUES(4216,2108,7); INSERT INTO "Wine_Descriptor" VALUES(4217,2109,6); INSERT INTO "Wine_Descriptor" VALUES(4218,2109,7); INSERT INTO "Wine_Descriptor" VALUES(4219,2110,6); INSERT INTO "Wine_Descriptor" VALUES(4220,2110,7); INSERT INTO "Wine_Descriptor" VALUES(4221,2111,6); INSERT INTO "Wine_Descriptor" VALUES(4222,2111,7); INSERT INTO "Wine_Descriptor" VALUES(4223,2112,6); INSERT INTO "Wine_Descriptor" VALUES(4224,2112,7); INSERT INTO "Wine_Descriptor" VALUES(4225,2113,6); INSERT INTO "Wine_Descriptor" VALUES(4226,2113,7); INSERT INTO "Wine_Descriptor" VALUES(4227,2114,6); INSERT INTO "Wine_Descriptor" VALUES(4228,2114,7); INSERT INTO "Wine_Descriptor" VALUES(4229,2115,6); INSERT INTO "Wine_Descriptor" VALUES(4230,2115,7); INSERT INTO "Wine_Descriptor" VALUES(4231,2116,6); INSERT INTO "Wine_Descriptor" VALUES(4232,2116,7); INSERT INTO "Wine_Descriptor" VALUES(4233,2117,6); INSERT INTO "Wine_Descriptor" VALUES(4234,2117,7); INSERT INTO "Wine_Descriptor" VALUES(4235,2118,6); INSERT INTO "Wine_Descriptor" VALUES(4236,2118,7); INSERT INTO "Wine_Descriptor" VALUES(4237,2119,6); INSERT INTO "Wine_Descriptor" VALUES(4238,2119,7); INSERT INTO "Wine_Descriptor" VALUES(4239,2120,6); INSERT INTO "Wine_Descriptor" VALUES(4240,2120,7); INSERT INTO "Wine_Descriptor" VALUES(4241,2121,6); INSERT INTO "Wine_Descriptor" VALUES(4242,2121,7); INSERT INTO "Wine_Descriptor" VALUES(4243,2122,6); INSERT INTO "Wine_Descriptor" VALUES(4244,2122,7); INSERT INTO "Wine_Descriptor" VALUES(4245,2123,6); INSERT INTO "Wine_Descriptor" VALUES(4246,2123,7); INSERT INTO "Wine_Descriptor" VALUES(4247,2124,6); INSERT INTO "Wine_Descriptor" VALUES(4248,2124,7); INSERT INTO "Wine_Descriptor" VALUES(4249,2125,6); INSERT INTO "Wine_Descriptor" VALUES(4250,2125,7); INSERT INTO "Wine_Descriptor" VALUES(4251,2126,6); INSERT INTO "Wine_Descriptor" VALUES(4252,2126,7); INSERT INTO "Wine_Descriptor" VALUES(4253,2127,6); INSERT INTO "Wine_Descriptor" VALUES(4254,2127,7); INSERT INTO "Wine_Descriptor" VALUES(4255,2128,6); INSERT INTO "Wine_Descriptor" VALUES(4256,2128,7); INSERT INTO "Wine_Descriptor" VALUES(4257,2129,6); INSERT INTO "Wine_Descriptor" VALUES(4258,2129,7); INSERT INTO "Wine_Descriptor" VALUES(4259,2130,6); INSERT INTO "Wine_Descriptor" VALUES(4260,2130,7); INSERT INTO "Wine_Descriptor" VALUES(4261,2131,6); INSERT INTO "Wine_Descriptor" VALUES(4262,2131,7); INSERT INTO "Wine_Descriptor" VALUES(4263,2132,6); INSERT INTO "Wine_Descriptor" VALUES(4264,2132,7); INSERT INTO "Wine_Descriptor" VALUES(4265,2133,6); INSERT INTO "Wine_Descriptor" VALUES(4266,2133,7); INSERT INTO "Wine_Descriptor" VALUES(4267,2134,6); INSERT INTO "Wine_Descriptor" VALUES(4268,2134,7); INSERT INTO "Wine_Descriptor" VALUES(4269,2135,6); INSERT INTO "Wine_Descriptor" VALUES(4270,2135,7); INSERT INTO "Wine_Descriptor" VALUES(4271,2136,6); INSERT INTO "Wine_Descriptor" VALUES(4272,2136,7); INSERT INTO "Wine_Descriptor" VALUES(4273,2137,6); INSERT INTO "Wine_Descriptor" VALUES(4274,2137,7); INSERT INTO "Wine_Descriptor" VALUES(4275,2138,6); INSERT INTO "Wine_Descriptor" VALUES(4276,2138,7); INSERT INTO "Wine_Descriptor" VALUES(4277,2139,6); INSERT INTO "Wine_Descriptor" VALUES(4278,2139,7); INSERT INTO "Wine_Descriptor" VALUES(4279,2140,6); INSERT INTO "Wine_Descriptor" VALUES(4280,2140,7); INSERT INTO "Wine_Descriptor" VALUES(4281,2141,6); INSERT INTO "Wine_Descriptor" VALUES(4282,2141,7); INSERT INTO "Wine_Descriptor" VALUES(4283,2142,6); INSERT INTO "Wine_Descriptor" VALUES(4284,2142,7); INSERT INTO "Wine_Descriptor" VALUES(4285,2143,6); INSERT INTO "Wine_Descriptor" VALUES(4286,2143,7); INSERT INTO "Wine_Descriptor" VALUES(4287,2144,6); INSERT INTO "Wine_Descriptor" VALUES(4288,2144,7); INSERT INTO "Wine_Descriptor" VALUES(4289,2145,6); INSERT INTO "Wine_Descriptor" VALUES(4290,2145,7); INSERT INTO "Wine_Descriptor" VALUES(4291,2146,6); INSERT INTO "Wine_Descriptor" VALUES(4292,2146,7); INSERT INTO "Wine_Descriptor" VALUES(4293,2147,6); INSERT INTO "Wine_Descriptor" VALUES(4294,2147,7); INSERT INTO "Wine_Descriptor" VALUES(4295,2148,6); INSERT INTO "Wine_Descriptor" VALUES(4296,2148,7); INSERT INTO "Wine_Descriptor" VALUES(4297,2149,6); INSERT INTO "Wine_Descriptor" VALUES(4298,2149,7); INSERT INTO "Wine_Descriptor" VALUES(4299,2150,6); INSERT INTO "Wine_Descriptor" VALUES(4300,2150,7); INSERT INTO "Wine_Descriptor" VALUES(4301,2151,6); INSERT INTO "Wine_Descriptor" VALUES(4302,2151,7); INSERT INTO "Wine_Descriptor" VALUES(4303,2152,6); INSERT INTO "Wine_Descriptor" VALUES(4304,2152,7); INSERT INTO "Wine_Descriptor" VALUES(4305,2153,6); INSERT INTO "Wine_Descriptor" VALUES(4306,2153,7); INSERT INTO "Wine_Descriptor" VALUES(4307,2154,6); INSERT INTO "Wine_Descriptor" VALUES(4308,2154,7); INSERT INTO "Wine_Descriptor" VALUES(4309,2155,6); INSERT INTO "Wine_Descriptor" VALUES(4310,2155,7); INSERT INTO "Wine_Descriptor" VALUES(4311,2156,6); INSERT INTO "Wine_Descriptor" VALUES(4312,2156,7); INSERT INTO "Wine_Descriptor" VALUES(4313,2157,6); INSERT INTO "Wine_Descriptor" VALUES(4314,2157,7); INSERT INTO "Wine_Descriptor" VALUES(4315,2158,6); INSERT INTO "Wine_Descriptor" VALUES(4316,2158,7); INSERT INTO "Wine_Descriptor" VALUES(4317,2159,6); INSERT INTO "Wine_Descriptor" VALUES(4318,2159,7); INSERT INTO "Wine_Descriptor" VALUES(4319,2160,6); INSERT INTO "Wine_Descriptor" VALUES(4320,2160,7); INSERT INTO "Wine_Descriptor" VALUES(4321,2161,6); INSERT INTO "Wine_Descriptor" VALUES(4322,2161,7); INSERT INTO "Wine_Descriptor" VALUES(4323,2162,6); INSERT INTO "Wine_Descriptor" VALUES(4324,2162,7); INSERT INTO "Wine_Descriptor" VALUES(4325,2163,6); INSERT INTO "Wine_Descriptor" VALUES(4326,2163,7); INSERT INTO "Wine_Descriptor" VALUES(4327,2164,6); INSERT INTO "Wine_Descriptor" VALUES(4328,2164,7); INSERT INTO "Wine_Descriptor" VALUES(4329,2165,6); INSERT INTO "Wine_Descriptor" VALUES(4330,2165,7); INSERT INTO "Wine_Descriptor" VALUES(4331,2166,6); INSERT INTO "Wine_Descriptor" VALUES(4332,2166,7); INSERT INTO "Wine_Descriptor" VALUES(4333,2167,6); INSERT INTO "Wine_Descriptor" VALUES(4334,2167,7); INSERT INTO "Wine_Descriptor" VALUES(4335,2168,6); INSERT INTO "Wine_Descriptor" VALUES(4336,2168,7); INSERT INTO "Wine_Descriptor" VALUES(4337,2169,6); INSERT INTO "Wine_Descriptor" VALUES(4338,2169,7); INSERT INTO "Wine_Descriptor" VALUES(4339,2170,6); INSERT INTO "Wine_Descriptor" VALUES(4340,2170,7); INSERT INTO "Wine_Descriptor" VALUES(4341,2171,6); INSERT INTO "Wine_Descriptor" VALUES(4342,2171,7); INSERT INTO "Wine_Descriptor" VALUES(4343,2172,6); INSERT INTO "Wine_Descriptor" VALUES(4344,2172,7); INSERT INTO "Wine_Descriptor" VALUES(4345,2173,6); INSERT INTO "Wine_Descriptor" VALUES(4346,2173,7); INSERT INTO "Wine_Descriptor" VALUES(4347,2174,6); INSERT INTO "Wine_Descriptor" VALUES(4348,2174,7); INSERT INTO "Wine_Descriptor" VALUES(4349,2175,6); INSERT INTO "Wine_Descriptor" VALUES(4350,2175,7); INSERT INTO "Wine_Descriptor" VALUES(4351,2176,6); INSERT INTO "Wine_Descriptor" VALUES(4352,2176,7); INSERT INTO "Wine_Descriptor" VALUES(4353,2177,6); INSERT INTO "Wine_Descriptor" VALUES(4354,2177,7); INSERT INTO "Wine_Descriptor" VALUES(4355,2178,6); INSERT INTO "Wine_Descriptor" VALUES(4356,2178,7); INSERT INTO "Wine_Descriptor" VALUES(4357,2179,6); INSERT INTO "Wine_Descriptor" VALUES(4358,2179,7); INSERT INTO "Wine_Descriptor" VALUES(4359,2180,6); INSERT INTO "Wine_Descriptor" VALUES(4360,2180,7); INSERT INTO "Wine_Descriptor" VALUES(4361,2181,6); INSERT INTO "Wine_Descriptor" VALUES(4362,2181,7); INSERT INTO "Wine_Descriptor" VALUES(4363,2182,6); INSERT INTO "Wine_Descriptor" VALUES(4364,2182,7); INSERT INTO "Wine_Descriptor" VALUES(4365,2183,6); INSERT INTO "Wine_Descriptor" VALUES(4366,2183,7); INSERT INTO "Wine_Descriptor" VALUES(4367,2184,6); INSERT INTO "Wine_Descriptor" VALUES(4368,2184,7); INSERT INTO "Wine_Descriptor" VALUES(4369,2185,6); INSERT INTO "Wine_Descriptor" VALUES(4370,2185,7); INSERT INTO "Wine_Descriptor" VALUES(4371,2186,6); INSERT INTO "Wine_Descriptor" VALUES(4372,2186,7); INSERT INTO "Wine_Descriptor" VALUES(4373,2187,6); INSERT INTO "Wine_Descriptor" VALUES(4374,2187,7); INSERT INTO "Wine_Descriptor" VALUES(4375,2188,6); INSERT INTO "Wine_Descriptor" VALUES(4376,2188,7); INSERT INTO "Wine_Descriptor" VALUES(4377,2189,6); INSERT INTO "Wine_Descriptor" VALUES(4378,2189,7); INSERT INTO "Wine_Descriptor" VALUES(4379,2190,6); INSERT INTO "Wine_Descriptor" VALUES(4380,2190,7); INSERT INTO "Wine_Descriptor" VALUES(4381,2191,6); INSERT INTO "Wine_Descriptor" VALUES(4382,2191,7); INSERT INTO "Wine_Descriptor" VALUES(4383,2192,6); INSERT INTO "Wine_Descriptor" VALUES(4384,2192,7); INSERT INTO "Wine_Descriptor" VALUES(4385,2193,6); INSERT INTO "Wine_Descriptor" VALUES(4386,2193,7); INSERT INTO "Wine_Descriptor" VALUES(4387,2194,6); INSERT INTO "Wine_Descriptor" VALUES(4388,2194,7); INSERT INTO "Wine_Descriptor" VALUES(4389,2195,6); INSERT INTO "Wine_Descriptor" VALUES(4390,2195,7); INSERT INTO "Wine_Descriptor" VALUES(4391,2196,6); INSERT INTO "Wine_Descriptor" VALUES(4392,2196,7); INSERT INTO "Wine_Descriptor" VALUES(4393,2197,6); INSERT INTO "Wine_Descriptor" VALUES(4394,2197,7); INSERT INTO "Wine_Descriptor" VALUES(4395,2198,6); INSERT INTO "Wine_Descriptor" VALUES(4396,2198,7); INSERT INTO "Wine_Descriptor" VALUES(4397,2199,0); INSERT INTO "Wine_Descriptor" VALUES(4398,2199,1); INSERT INTO "Wine_Descriptor" VALUES(4399,2200,0); INSERT INTO "Wine_Descriptor" VALUES(4400,2200,1); INSERT INTO "Wine_Descriptor" VALUES(4401,2201,0); INSERT INTO "Wine_Descriptor" VALUES(4402,2201,1); INSERT INTO "Wine_Descriptor" VALUES(4403,2202,0); INSERT INTO "Wine_Descriptor" VALUES(4404,2202,1); INSERT INTO "Wine_Descriptor" VALUES(4405,2203,0); INSERT INTO "Wine_Descriptor" VALUES(4406,2203,1); INSERT INTO "Wine_Descriptor" VALUES(4407,2204,0); INSERT INTO "Wine_Descriptor" VALUES(4408,2204,1); INSERT INTO "Wine_Descriptor" VALUES(4409,2205,0); INSERT INTO "Wine_Descriptor" VALUES(4410,2205,1); INSERT INTO "Wine_Descriptor" VALUES(4411,2206,0); INSERT INTO "Wine_Descriptor" VALUES(4412,2206,1); INSERT INTO "Wine_Descriptor" VALUES(4413,2207,0); INSERT INTO "Wine_Descriptor" VALUES(4414,2207,1); INSERT INTO "Wine_Descriptor" VALUES(4415,2208,0); INSERT INTO "Wine_Descriptor" VALUES(4416,2208,1); INSERT INTO "Wine_Descriptor" VALUES(4417,2209,0); INSERT INTO "Wine_Descriptor" VALUES(4418,2209,1); INSERT INTO "Wine_Descriptor" VALUES(4419,2210,0); INSERT INTO "Wine_Descriptor" VALUES(4420,2210,1); INSERT INTO "Wine_Descriptor" VALUES(4421,2211,0); INSERT INTO "Wine_Descriptor" VALUES(4422,2211,1); INSERT INTO "Wine_Descriptor" VALUES(4423,2212,0); INSERT INTO "Wine_Descriptor" VALUES(4424,2212,1); INSERT INTO "Wine_Descriptor" VALUES(4425,2213,0); INSERT INTO "Wine_Descriptor" VALUES(4426,2213,1); INSERT INTO "Wine_Descriptor" VALUES(4427,2214,0); INSERT INTO "Wine_Descriptor" VALUES(4428,2214,1); INSERT INTO "Wine_Descriptor" VALUES(4429,2215,0); INSERT INTO "Wine_Descriptor" VALUES(4430,2215,1); INSERT INTO "Wine_Descriptor" VALUES(4431,2216,0); INSERT INTO "Wine_Descriptor" VALUES(4432,2216,1); INSERT INTO "Wine_Descriptor" VALUES(4433,2217,0); INSERT INTO "Wine_Descriptor" VALUES(4434,2217,1); INSERT INTO "Wine_Descriptor" VALUES(4435,2218,0); INSERT INTO "Wine_Descriptor" VALUES(4436,2218,1); INSERT INTO "Wine_Descriptor" VALUES(4437,2219,0); INSERT INTO "Wine_Descriptor" VALUES(4438,2219,1); INSERT INTO "Wine_Descriptor" VALUES(4439,2220,0); INSERT INTO "Wine_Descriptor" VALUES(4440,2220,1); INSERT INTO "Wine_Descriptor" VALUES(4441,2221,0); INSERT INTO "Wine_Descriptor" VALUES(4442,2221,1); INSERT INTO "Wine_Descriptor" VALUES(4443,2222,0); INSERT INTO "Wine_Descriptor" VALUES(4444,2222,1); INSERT INTO "Wine_Descriptor" VALUES(4445,2223,0); INSERT INTO "Wine_Descriptor" VALUES(4446,2223,1); INSERT INTO "Wine_Descriptor" VALUES(4447,2224,0); INSERT INTO "Wine_Descriptor" VALUES(4448,2224,1); INSERT INTO "Wine_Descriptor" VALUES(4449,2225,0); INSERT INTO "Wine_Descriptor" VALUES(4450,2225,1); INSERT INTO "Wine_Descriptor" VALUES(4451,2226,0); INSERT INTO "Wine_Descriptor" VALUES(4452,2226,1); INSERT INTO "Wine_Descriptor" VALUES(4453,2227,0); INSERT INTO "Wine_Descriptor" VALUES(4454,2227,1); INSERT INTO "Wine_Descriptor" VALUES(4455,2228,0); INSERT INTO "Wine_Descriptor" VALUES(4456,2228,1); INSERT INTO "Wine_Descriptor" VALUES(4457,2229,0); INSERT INTO "Wine_Descriptor" VALUES(4458,2229,1); INSERT INTO "Wine_Descriptor" VALUES(4459,2230,0); INSERT INTO "Wine_Descriptor" VALUES(4460,2230,1); INSERT INTO "Wine_Descriptor" VALUES(4461,2231,0); INSERT INTO "Wine_Descriptor" VALUES(4462,2231,1); INSERT INTO "Wine_Descriptor" VALUES(4463,2232,0); INSERT INTO "Wine_Descriptor" VALUES(4464,2232,1); INSERT INTO "Wine_Descriptor" VALUES(4465,2233,0); INSERT INTO "Wine_Descriptor" VALUES(4466,2233,1); INSERT INTO "Wine_Descriptor" VALUES(4467,2234,0); INSERT INTO "Wine_Descriptor" VALUES(4468,2234,1); INSERT INTO "Wine_Descriptor" VALUES(4469,2235,0); INSERT INTO "Wine_Descriptor" VALUES(4470,2235,1); INSERT INTO "Wine_Descriptor" VALUES(4471,2236,0); INSERT INTO "Wine_Descriptor" VALUES(4472,2236,1); INSERT INTO "Wine_Descriptor" VALUES(4473,2237,0); INSERT INTO "Wine_Descriptor" VALUES(4474,2237,1); INSERT INTO "Wine_Descriptor" VALUES(4475,2238,0); INSERT INTO "Wine_Descriptor" VALUES(4476,2238,1); INSERT INTO "Wine_Descriptor" VALUES(4477,2239,0); INSERT INTO "Wine_Descriptor" VALUES(4478,2239,1); INSERT INTO "Wine_Descriptor" VALUES(4479,2240,0); INSERT INTO "Wine_Descriptor" VALUES(4480,2240,1); INSERT INTO "Wine_Descriptor" VALUES(4481,2241,0); INSERT INTO "Wine_Descriptor" VALUES(4482,2241,1); INSERT INTO "Wine_Descriptor" VALUES(4483,2242,0); INSERT INTO "Wine_Descriptor" VALUES(4484,2242,1); INSERT INTO "Wine_Descriptor" VALUES(4485,2243,0); INSERT INTO "Wine_Descriptor" VALUES(4486,2243,1); INSERT INTO "Wine_Descriptor" VALUES(4487,2244,0); INSERT INTO "Wine_Descriptor" VALUES(4488,2244,1); INSERT INTO "Wine_Descriptor" VALUES(4489,2245,0); INSERT INTO "Wine_Descriptor" VALUES(4490,2245,1); INSERT INTO "Wine_Descriptor" VALUES(4491,2246,0); INSERT INTO "Wine_Descriptor" VALUES(4492,2246,1); INSERT INTO "Wine_Descriptor" VALUES(4493,2247,0); INSERT INTO "Wine_Descriptor" VALUES(4494,2247,1); INSERT INTO "Wine_Descriptor" VALUES(4495,2248,0); INSERT INTO "Wine_Descriptor" VALUES(4496,2248,1); INSERT INTO "Wine_Descriptor" VALUES(4497,2249,2); INSERT INTO "Wine_Descriptor" VALUES(4498,2249,3); INSERT INTO "Wine_Descriptor" VALUES(4499,2250,2); INSERT INTO "Wine_Descriptor" VALUES(4500,2250,3); INSERT INTO "Wine_Descriptor" VALUES(4501,2251,2); INSERT INTO "Wine_Descriptor" VALUES(4502,2251,3); INSERT INTO "Wine_Descriptor" VALUES(4503,2252,2); INSERT INTO "Wine_Descriptor" VALUES(4504,2252,3); INSERT INTO "Wine_Descriptor" VALUES(4505,2253,2); INSERT INTO "Wine_Descriptor" VALUES(4506,2253,3); INSERT INTO "Wine_Descriptor" VALUES(4507,2254,2); INSERT INTO "Wine_Descriptor" VALUES(4508,2254,3); INSERT INTO "Wine_Descriptor" VALUES(4509,2255,2); INSERT INTO "Wine_Descriptor" VALUES(4510,2255,3); INSERT INTO "Wine_Descriptor" VALUES(4511,2256,2); INSERT INTO "Wine_Descriptor" VALUES(4512,2256,3); INSERT INTO "Wine_Descriptor" VALUES(4513,2257,2); INSERT INTO "Wine_Descriptor" VALUES(4514,2257,3); INSERT INTO "Wine_Descriptor" VALUES(4515,2258,2); INSERT INTO "Wine_Descriptor" VALUES(4516,2258,3); INSERT INTO "Wine_Descriptor" VALUES(4517,2259,2); INSERT INTO "Wine_Descriptor" VALUES(4518,2259,3); INSERT INTO "Wine_Descriptor" VALUES(4519,2260,2); INSERT INTO "Wine_Descriptor" VALUES(4520,2260,3); INSERT INTO "Wine_Descriptor" VALUES(4521,2261,2); INSERT INTO "Wine_Descriptor" VALUES(4522,2261,3); INSERT INTO "Wine_Descriptor" VALUES(4523,2262,2); INSERT INTO "Wine_Descriptor" VALUES(4524,2262,3); INSERT INTO "Wine_Descriptor" VALUES(4525,2263,2); INSERT INTO "Wine_Descriptor" VALUES(4526,2263,3); INSERT INTO "Wine_Descriptor" VALUES(4527,2264,2); INSERT INTO "Wine_Descriptor" VALUES(4528,2264,3); INSERT INTO "Wine_Descriptor" VALUES(4529,2265,2); INSERT INTO "Wine_Descriptor" VALUES(4530,2265,3); INSERT INTO "Wine_Descriptor" VALUES(4531,2266,2); INSERT INTO "Wine_Descriptor" VALUES(4532,2266,3); INSERT INTO "Wine_Descriptor" VALUES(4533,2267,2); INSERT INTO "Wine_Descriptor" VALUES(4534,2267,3); INSERT INTO "Wine_Descriptor" VALUES(4535,2268,2); INSERT INTO "Wine_Descriptor" VALUES(4536,2268,3); INSERT INTO "Wine_Descriptor" VALUES(4537,2269,2); INSERT INTO "Wine_Descriptor" VALUES(4538,2269,3); INSERT INTO "Wine_Descriptor" VALUES(4539,2270,2); INSERT INTO "Wine_Descriptor" VALUES(4540,2270,3); INSERT INTO "Wine_Descriptor" VALUES(4541,2271,2); INSERT INTO "Wine_Descriptor" VALUES(4542,2271,3); INSERT INTO "Wine_Descriptor" VALUES(4543,2272,2); INSERT INTO "Wine_Descriptor" VALUES(4544,2272,3); INSERT INTO "Wine_Descriptor" VALUES(4545,2273,2); INSERT INTO "Wine_Descriptor" VALUES(4546,2273,3); INSERT INTO "Wine_Descriptor" VALUES(4547,2274,2); INSERT INTO "Wine_Descriptor" VALUES(4548,2274,3); INSERT INTO "Wine_Descriptor" VALUES(4549,2275,2); INSERT INTO "Wine_Descriptor" VALUES(4550,2275,3); INSERT INTO "Wine_Descriptor" VALUES(4551,2276,2); INSERT INTO "Wine_Descriptor" VALUES(4552,2276,3); INSERT INTO "Wine_Descriptor" VALUES(4553,2277,2); INSERT INTO "Wine_Descriptor" VALUES(4554,2277,3); INSERT INTO "Wine_Descriptor" VALUES(4555,2278,2); INSERT INTO "Wine_Descriptor" VALUES(4556,2278,3); INSERT INTO "Wine_Descriptor" VALUES(4557,2279,2); INSERT INTO "Wine_Descriptor" VALUES(4558,2279,3); INSERT INTO "Wine_Descriptor" VALUES(4559,2280,2); INSERT INTO "Wine_Descriptor" VALUES(4560,2280,3); INSERT INTO "Wine_Descriptor" VALUES(4561,2281,2); INSERT INTO "Wine_Descriptor" VALUES(4562,2281,3); INSERT INTO "Wine_Descriptor" VALUES(4563,2282,2); INSERT INTO "Wine_Descriptor" VALUES(4564,2282,3); INSERT INTO "Wine_Descriptor" VALUES(4565,2283,2); INSERT INTO "Wine_Descriptor" VALUES(4566,2283,3); INSERT INTO "Wine_Descriptor" VALUES(4567,2284,2); INSERT INTO "Wine_Descriptor" VALUES(4568,2284,3); INSERT INTO "Wine_Descriptor" VALUES(4569,2285,2); INSERT INTO "Wine_Descriptor" VALUES(4570,2285,3); INSERT INTO "Wine_Descriptor" VALUES(4571,2286,2); INSERT INTO "Wine_Descriptor" VALUES(4572,2286,3); INSERT INTO "Wine_Descriptor" VALUES(4573,2287,2); INSERT INTO "Wine_Descriptor" VALUES(4574,2287,3); INSERT INTO "Wine_Descriptor" VALUES(4575,2288,2); INSERT INTO "Wine_Descriptor" VALUES(4576,2288,3); INSERT INTO "Wine_Descriptor" VALUES(4577,2289,2); INSERT INTO "Wine_Descriptor" VALUES(4578,2289,3); INSERT INTO "Wine_Descriptor" VALUES(4579,2290,2); INSERT INTO "Wine_Descriptor" VALUES(4580,2290,3); INSERT INTO "Wine_Descriptor" VALUES(4581,2291,2); INSERT INTO "Wine_Descriptor" VALUES(4582,2291,3); INSERT INTO "Wine_Descriptor" VALUES(4583,2292,2); INSERT INTO "Wine_Descriptor" VALUES(4584,2292,3); INSERT INTO "Wine_Descriptor" VALUES(4585,2293,2); INSERT INTO "Wine_Descriptor" VALUES(4586,2293,3); INSERT INTO "Wine_Descriptor" VALUES(4587,2294,2); INSERT INTO "Wine_Descriptor" VALUES(4588,2294,3); INSERT INTO "Wine_Descriptor" VALUES(4589,2295,2); INSERT INTO "Wine_Descriptor" VALUES(4590,2295,3); INSERT INTO "Wine_Descriptor" VALUES(4591,2296,2); INSERT INTO "Wine_Descriptor" VALUES(4592,2296,3); INSERT INTO "Wine_Descriptor" VALUES(4593,2297,2); INSERT INTO "Wine_Descriptor" VALUES(4594,2297,3); INSERT INTO "Wine_Descriptor" VALUES(4595,2298,2); INSERT INTO "Wine_Descriptor" VALUES(4596,2298,3); INSERT INTO "Wine_Descriptor" VALUES(4597,2299,2); INSERT INTO "Wine_Descriptor" VALUES(4598,2299,3); INSERT INTO "Wine_Descriptor" VALUES(4599,2300,2); INSERT INTO "Wine_Descriptor" VALUES(4600,2300,3); INSERT INTO "Wine_Descriptor" VALUES(4601,2301,2); INSERT INTO "Wine_Descriptor" VALUES(4602,2301,3); INSERT INTO "Wine_Descriptor" VALUES(4603,2302,2); INSERT INTO "Wine_Descriptor" VALUES(4604,2302,3); INSERT INTO "Wine_Descriptor" VALUES(4605,2303,2); INSERT INTO "Wine_Descriptor" VALUES(4606,2303,3); INSERT INTO "Wine_Descriptor" VALUES(4607,2304,2); INSERT INTO "Wine_Descriptor" VALUES(4608,2304,3); INSERT INTO "Wine_Descriptor" VALUES(4609,2305,2); INSERT INTO "Wine_Descriptor" VALUES(4610,2305,3); INSERT INTO "Wine_Descriptor" VALUES(4611,2306,2); INSERT INTO "Wine_Descriptor" VALUES(4612,2306,3); INSERT INTO "Wine_Descriptor" VALUES(4613,2307,2); INSERT INTO "Wine_Descriptor" VALUES(4614,2307,3); INSERT INTO "Wine_Descriptor" VALUES(4615,2308,2); INSERT INTO "Wine_Descriptor" VALUES(4616,2308,3); INSERT INTO "Wine_Descriptor" VALUES(4617,2309,2); INSERT INTO "Wine_Descriptor" VALUES(4618,2309,3); INSERT INTO "Wine_Descriptor" VALUES(4619,2310,2); INSERT INTO "Wine_Descriptor" VALUES(4620,2310,3); INSERT INTO "Wine_Descriptor" VALUES(4621,2311,2); INSERT INTO "Wine_Descriptor" VALUES(4622,2311,3); INSERT INTO "Wine_Descriptor" VALUES(4623,2312,2); INSERT INTO "Wine_Descriptor" VALUES(4624,2312,3); INSERT INTO "Wine_Descriptor" VALUES(4625,2313,2); INSERT INTO "Wine_Descriptor" VALUES(4626,2313,3); INSERT INTO "Wine_Descriptor" VALUES(4627,2314,2); INSERT INTO "Wine_Descriptor" VALUES(4628,2314,3); INSERT INTO "Wine_Descriptor" VALUES(4629,2315,2); INSERT INTO "Wine_Descriptor" VALUES(4630,2315,3); INSERT INTO "Wine_Descriptor" VALUES(4631,2316,2); INSERT INTO "Wine_Descriptor" VALUES(4632,2316,3); INSERT INTO "Wine_Descriptor" VALUES(4633,2317,2); INSERT INTO "Wine_Descriptor" VALUES(4634,2317,3); INSERT INTO "Wine_Descriptor" VALUES(4635,2318,2); INSERT INTO "Wine_Descriptor" VALUES(4636,2318,3); INSERT INTO "Wine_Descriptor" VALUES(4637,2319,2); INSERT INTO "Wine_Descriptor" VALUES(4638,2319,3); INSERT INTO "Wine_Descriptor" VALUES(4639,2320,2); INSERT INTO "Wine_Descriptor" VALUES(4640,2320,3); INSERT INTO "Wine_Descriptor" VALUES(4641,2321,2); INSERT INTO "Wine_Descriptor" VALUES(4642,2321,3); INSERT INTO "Wine_Descriptor" VALUES(4643,2322,2); INSERT INTO "Wine_Descriptor" VALUES(4644,2322,3); INSERT INTO "Wine_Descriptor" VALUES(4645,2323,2); INSERT INTO "Wine_Descriptor" VALUES(4646,2323,3); INSERT INTO "Wine_Descriptor" VALUES(4647,2324,2); INSERT INTO "Wine_Descriptor" VALUES(4648,2324,3); INSERT INTO "Wine_Descriptor" VALUES(4649,2325,2); INSERT INTO "Wine_Descriptor" VALUES(4650,2325,3); INSERT INTO "Wine_Descriptor" VALUES(4651,2326,2); INSERT INTO "Wine_Descriptor" VALUES(4652,2326,3); INSERT INTO "Wine_Descriptor" VALUES(4653,2327,2); INSERT INTO "Wine_Descriptor" VALUES(4654,2327,3); INSERT INTO "Wine_Descriptor" VALUES(4655,2328,2); INSERT INTO "Wine_Descriptor" VALUES(4656,2328,3); INSERT INTO "Wine_Descriptor" VALUES(4657,2329,2); INSERT INTO "Wine_Descriptor" VALUES(4658,2329,3); INSERT INTO "Wine_Descriptor" VALUES(4659,2330,2); INSERT INTO "Wine_Descriptor" VALUES(4660,2330,3); INSERT INTO "Wine_Descriptor" VALUES(4661,2331,2); INSERT INTO "Wine_Descriptor" VALUES(4662,2331,3); INSERT INTO "Wine_Descriptor" VALUES(4663,2332,2); INSERT INTO "Wine_Descriptor" VALUES(4664,2332,3); INSERT INTO "Wine_Descriptor" VALUES(4665,2333,2); INSERT INTO "Wine_Descriptor" VALUES(4666,2333,3); INSERT INTO "Wine_Descriptor" VALUES(4667,2334,2); INSERT INTO "Wine_Descriptor" VALUES(4668,2334,3); INSERT INTO "Wine_Descriptor" VALUES(4669,2335,2); INSERT INTO "Wine_Descriptor" VALUES(4670,2335,3); INSERT INTO "Wine_Descriptor" VALUES(4671,2336,2); INSERT INTO "Wine_Descriptor" VALUES(4672,2336,3); INSERT INTO "Wine_Descriptor" VALUES(4673,2337,2); INSERT INTO "Wine_Descriptor" VALUES(4674,2337,3); INSERT INTO "Wine_Descriptor" VALUES(4675,2338,2); INSERT INTO "Wine_Descriptor" VALUES(4676,2338,3); INSERT INTO "Wine_Descriptor" VALUES(4677,2339,2); INSERT INTO "Wine_Descriptor" VALUES(4678,2339,3); INSERT INTO "Wine_Descriptor" VALUES(4679,2340,2); INSERT INTO "Wine_Descriptor" VALUES(4680,2340,3); INSERT INTO "Wine_Descriptor" VALUES(4681,2341,2); INSERT INTO "Wine_Descriptor" VALUES(4682,2341,3); INSERT INTO "Wine_Descriptor" VALUES(4683,2342,2); INSERT INTO "Wine_Descriptor" VALUES(4684,2342,3); INSERT INTO "Wine_Descriptor" VALUES(4685,2343,2); INSERT INTO "Wine_Descriptor" VALUES(4686,2343,3); INSERT INTO "Wine_Descriptor" VALUES(4687,2344,2); INSERT INTO "Wine_Descriptor" VALUES(4688,2344,3); INSERT INTO "Wine_Descriptor" VALUES(4689,2345,2); INSERT INTO "Wine_Descriptor" VALUES(4690,2345,3); INSERT INTO "Wine_Descriptor" VALUES(4691,2346,2); INSERT INTO "Wine_Descriptor" VALUES(4692,2346,3); INSERT INTO "Wine_Descriptor" VALUES(4693,2347,2); INSERT INTO "Wine_Descriptor" VALUES(4694,2347,3); INSERT INTO "Wine_Descriptor" VALUES(4695,2348,2); INSERT INTO "Wine_Descriptor" VALUES(4696,2348,3); INSERT INTO "Wine_Descriptor" VALUES(4697,2349,2); INSERT INTO "Wine_Descriptor" VALUES(4698,2349,3); INSERT INTO "Wine_Descriptor" VALUES(4699,2350,2); INSERT INTO "Wine_Descriptor" VALUES(4700,2350,3); INSERT INTO "Wine_Descriptor" VALUES(4701,2351,2); INSERT INTO "Wine_Descriptor" VALUES(4702,2351,3); INSERT INTO "Wine_Descriptor" VALUES(4703,2352,2); INSERT INTO "Wine_Descriptor" VALUES(4704,2352,3); INSERT INTO "Wine_Descriptor" VALUES(4705,2353,2); INSERT INTO "Wine_Descriptor" VALUES(4706,2353,3); INSERT INTO "Wine_Descriptor" VALUES(4707,2354,2); INSERT INTO "Wine_Descriptor" VALUES(4708,2354,3); INSERT INTO "Wine_Descriptor" VALUES(4709,2355,2); INSERT INTO "Wine_Descriptor" VALUES(4710,2355,3); INSERT INTO "Wine_Descriptor" VALUES(4711,2356,2); INSERT INTO "Wine_Descriptor" VALUES(4712,2356,3); INSERT INTO "Wine_Descriptor" VALUES(4713,2357,2); INSERT INTO "Wine_Descriptor" VALUES(4714,2357,3); INSERT INTO "Wine_Descriptor" VALUES(4715,2358,2); INSERT INTO "Wine_Descriptor" VALUES(4716,2358,3); INSERT INTO "Wine_Descriptor" VALUES(4717,2359,2); INSERT INTO "Wine_Descriptor" VALUES(4718,2359,3); INSERT INTO "Wine_Descriptor" VALUES(4719,2360,2); INSERT INTO "Wine_Descriptor" VALUES(4720,2360,3); INSERT INTO "Wine_Descriptor" VALUES(4721,2361,2); INSERT INTO "Wine_Descriptor" VALUES(4722,2361,3); INSERT INTO "Wine_Descriptor" VALUES(4723,2362,2); INSERT INTO "Wine_Descriptor" VALUES(4724,2362,3); INSERT INTO "Wine_Descriptor" VALUES(4725,2363,2); INSERT INTO "Wine_Descriptor" VALUES(4726,2363,3); INSERT INTO "Wine_Descriptor" VALUES(4727,2364,2); INSERT INTO "Wine_Descriptor" VALUES(4728,2364,3); INSERT INTO "Wine_Descriptor" VALUES(4729,2365,2); INSERT INTO "Wine_Descriptor" VALUES(4730,2365,3); INSERT INTO "Wine_Descriptor" VALUES(4731,2366,2); INSERT INTO "Wine_Descriptor" VALUES(4732,2366,3); INSERT INTO "Wine_Descriptor" VALUES(4733,2367,2); INSERT INTO "Wine_Descriptor" VALUES(4734,2367,3); INSERT INTO "Wine_Descriptor" VALUES(4735,2368,2); INSERT INTO "Wine_Descriptor" VALUES(4736,2368,3); INSERT INTO "Wine_Descriptor" VALUES(4737,2369,2); INSERT INTO "Wine_Descriptor" VALUES(4738,2369,3); INSERT INTO "Wine_Descriptor" VALUES(4739,2370,2); INSERT INTO "Wine_Descriptor" VALUES(4740,2370,3); INSERT INTO "Wine_Descriptor" VALUES(4741,2371,2); INSERT INTO "Wine_Descriptor" VALUES(4742,2371,3); INSERT INTO "Wine_Descriptor" VALUES(4743,2372,2); INSERT INTO "Wine_Descriptor" VALUES(4744,2372,3); INSERT INTO "Wine_Descriptor" VALUES(4745,2373,2); INSERT INTO "Wine_Descriptor" VALUES(4746,2373,3); INSERT INTO "Wine_Descriptor" VALUES(4747,2374,2); INSERT INTO "Wine_Descriptor" VALUES(4748,2374,3); INSERT INTO "Wine_Descriptor" VALUES(4749,2375,2); INSERT INTO "Wine_Descriptor" VALUES(4750,2375,3); INSERT INTO "Wine_Descriptor" VALUES(4751,2376,2); INSERT INTO "Wine_Descriptor" VALUES(4752,2376,3); INSERT INTO "Wine_Descriptor" VALUES(4753,2377,2); INSERT INTO "Wine_Descriptor" VALUES(4754,2377,3); INSERT INTO "Wine_Descriptor" VALUES(4755,2378,2); INSERT INTO "Wine_Descriptor" VALUES(4756,2378,3); INSERT INTO "Wine_Descriptor" VALUES(4757,2379,2); INSERT INTO "Wine_Descriptor" VALUES(4758,2379,3); INSERT INTO "Wine_Descriptor" VALUES(4759,2380,2); INSERT INTO "Wine_Descriptor" VALUES(4760,2380,3); INSERT INTO "Wine_Descriptor" VALUES(4761,2381,2); INSERT INTO "Wine_Descriptor" VALUES(4762,2381,3); INSERT INTO "Wine_Descriptor" VALUES(4763,2382,2); INSERT INTO "Wine_Descriptor" VALUES(4764,2382,3); INSERT INTO "Wine_Descriptor" VALUES(4765,2383,2); INSERT INTO "Wine_Descriptor" VALUES(4766,2383,3); INSERT INTO "Wine_Descriptor" VALUES(4767,2384,2); INSERT INTO "Wine_Descriptor" VALUES(4768,2384,3); INSERT INTO "Wine_Descriptor" VALUES(4769,2385,2); INSERT INTO "Wine_Descriptor" VALUES(4770,2385,3); INSERT INTO "Wine_Descriptor" VALUES(4771,2386,2); INSERT INTO "Wine_Descriptor" VALUES(4772,2386,3); INSERT INTO "Wine_Descriptor" VALUES(4773,2387,2); INSERT INTO "Wine_Descriptor" VALUES(4774,2387,3); INSERT INTO "Wine_Descriptor" VALUES(4775,2388,2); INSERT INTO "Wine_Descriptor" VALUES(4776,2388,3); INSERT INTO "Wine_Descriptor" VALUES(4777,2389,2); INSERT INTO "Wine_Descriptor" VALUES(4778,2389,3); INSERT INTO "Wine_Descriptor" VALUES(4779,2390,2); INSERT INTO "Wine_Descriptor" VALUES(4780,2390,3); INSERT INTO "Wine_Descriptor" VALUES(4781,2391,2); INSERT INTO "Wine_Descriptor" VALUES(4782,2391,3); INSERT INTO "Wine_Descriptor" VALUES(4783,2392,2); INSERT INTO "Wine_Descriptor" VALUES(4784,2392,3); INSERT INTO "Wine_Descriptor" VALUES(4785,2393,2); INSERT INTO "Wine_Descriptor" VALUES(4786,2393,3); INSERT INTO "Wine_Descriptor" VALUES(4787,2394,2); INSERT INTO "Wine_Descriptor" VALUES(4788,2394,3); INSERT INTO "Wine_Descriptor" VALUES(4789,2395,2); INSERT INTO "Wine_Descriptor" VALUES(4790,2395,3); INSERT INTO "Wine_Descriptor" VALUES(4791,2396,2); INSERT INTO "Wine_Descriptor" VALUES(4792,2396,3); INSERT INTO "Wine_Descriptor" VALUES(4793,2397,2); INSERT INTO "Wine_Descriptor" VALUES(4794,2397,3); INSERT INTO "Wine_Descriptor" VALUES(4795,2398,2); INSERT INTO "Wine_Descriptor" VALUES(4796,2398,3); INSERT INTO "Wine_Descriptor" VALUES(4797,2399,2); INSERT INTO "Wine_Descriptor" VALUES(4798,2399,3); INSERT INTO "Wine_Descriptor" VALUES(4799,2400,2); INSERT INTO "Wine_Descriptor" VALUES(4800,2400,3); INSERT INTO "Wine_Descriptor" VALUES(4801,2401,2); INSERT INTO "Wine_Descriptor" VALUES(4802,2401,3); INSERT INTO "Wine_Descriptor" VALUES(4803,2402,2); INSERT INTO "Wine_Descriptor" VALUES(4804,2402,3); INSERT INTO "Wine_Descriptor" VALUES(4805,2403,2); INSERT INTO "Wine_Descriptor" VALUES(4806,2403,3); INSERT INTO "Wine_Descriptor" VALUES(4807,2404,2); INSERT INTO "Wine_Descriptor" VALUES(4808,2404,3); INSERT INTO "Wine_Descriptor" VALUES(4809,2405,2); INSERT INTO "Wine_Descriptor" VALUES(4810,2405,3); INSERT INTO "Wine_Descriptor" VALUES(4811,2406,2); INSERT INTO "Wine_Descriptor" VALUES(4812,2406,3); INSERT INTO "Wine_Descriptor" VALUES(4813,2407,2); INSERT INTO "Wine_Descriptor" VALUES(4814,2407,3); INSERT INTO "Wine_Descriptor" VALUES(4815,2408,2); INSERT INTO "Wine_Descriptor" VALUES(4816,2408,3); INSERT INTO "Wine_Descriptor" VALUES(4817,2409,2); INSERT INTO "Wine_Descriptor" VALUES(4818,2409,3); INSERT INTO "Wine_Descriptor" VALUES(4819,2410,2); INSERT INTO "Wine_Descriptor" VALUES(4820,2410,3); INSERT INTO "Wine_Descriptor" VALUES(4821,2411,2); INSERT INTO "Wine_Descriptor" VALUES(4822,2411,3); INSERT INTO "Wine_Descriptor" VALUES(4823,2412,2); INSERT INTO "Wine_Descriptor" VALUES(4824,2412,3); INSERT INTO "Wine_Descriptor" VALUES(4825,2413,2); INSERT INTO "Wine_Descriptor" VALUES(4826,2413,3); INSERT INTO "Wine_Descriptor" VALUES(4827,2414,2); INSERT INTO "Wine_Descriptor" VALUES(4828,2414,3); INSERT INTO "Wine_Descriptor" VALUES(4829,2415,2); INSERT INTO "Wine_Descriptor" VALUES(4830,2415,3); INSERT INTO "Wine_Descriptor" VALUES(4831,2416,2); INSERT INTO "Wine_Descriptor" VALUES(4832,2416,3); INSERT INTO "Wine_Descriptor" VALUES(4833,2417,2); INSERT INTO "Wine_Descriptor" VALUES(4834,2417,3); INSERT INTO "Wine_Descriptor" VALUES(4835,2418,2); INSERT INTO "Wine_Descriptor" VALUES(4836,2418,3); INSERT INTO "Wine_Descriptor" VALUES(4837,2419,2); INSERT INTO "Wine_Descriptor" VALUES(4838,2419,3); INSERT INTO "Wine_Descriptor" VALUES(4839,2420,2); INSERT INTO "Wine_Descriptor" VALUES(4840,2420,3); INSERT INTO "Wine_Descriptor" VALUES(4841,2421,2); INSERT INTO "Wine_Descriptor" VALUES(4842,2421,3); INSERT INTO "Wine_Descriptor" VALUES(4843,2422,2); INSERT INTO "Wine_Descriptor" VALUES(4844,2422,3); INSERT INTO "Wine_Descriptor" VALUES(4845,2423,2); INSERT INTO "Wine_Descriptor" VALUES(4846,2423,3); INSERT INTO "Wine_Descriptor" VALUES(4847,2424,2); INSERT INTO "Wine_Descriptor" VALUES(4848,2424,3); INSERT INTO "Wine_Descriptor" VALUES(4849,2425,2); INSERT INTO "Wine_Descriptor" VALUES(4850,2425,3); INSERT INTO "Wine_Descriptor" VALUES(4851,2426,2); INSERT INTO "Wine_Descriptor" VALUES(4852,2426,3); INSERT INTO "Wine_Descriptor" VALUES(4853,2427,2); INSERT INTO "Wine_Descriptor" VALUES(4854,2427,3); INSERT INTO "Wine_Descriptor" VALUES(4855,2428,2); INSERT INTO "Wine_Descriptor" VALUES(4856,2428,3); INSERT INTO "Wine_Descriptor" VALUES(4857,2429,2); INSERT INTO "Wine_Descriptor" VALUES(4858,2429,3); INSERT INTO "Wine_Descriptor" VALUES(4859,2430,2); INSERT INTO "Wine_Descriptor" VALUES(4860,2430,3); INSERT INTO "Wine_Descriptor" VALUES(4861,2431,2); INSERT INTO "Wine_Descriptor" VALUES(4862,2431,3); INSERT INTO "Wine_Descriptor" VALUES(4863,2432,2); INSERT INTO "Wine_Descriptor" VALUES(4864,2432,3); INSERT INTO "Wine_Descriptor" VALUES(4865,2433,2); INSERT INTO "Wine_Descriptor" VALUES(4866,2433,3); INSERT INTO "Wine_Descriptor" VALUES(4867,2434,2); INSERT INTO "Wine_Descriptor" VALUES(4868,2434,3); INSERT INTO "Wine_Descriptor" VALUES(4869,2435,2); INSERT INTO "Wine_Descriptor" VALUES(4870,2435,3); INSERT INTO "Wine_Descriptor" VALUES(4871,2436,2); INSERT INTO "Wine_Descriptor" VALUES(4872,2436,3); INSERT INTO "Wine_Descriptor" VALUES(4873,2437,2); INSERT INTO "Wine_Descriptor" VALUES(4874,2437,3); INSERT INTO "Wine_Descriptor" VALUES(4875,2438,2); INSERT INTO "Wine_Descriptor" VALUES(4876,2438,3); INSERT INTO "Wine_Descriptor" VALUES(4877,2439,2); INSERT INTO "Wine_Descriptor" VALUES(4878,2439,3); INSERT INTO "Wine_Descriptor" VALUES(4879,2440,2); INSERT INTO "Wine_Descriptor" VALUES(4880,2440,3); INSERT INTO "Wine_Descriptor" VALUES(4881,2441,2); INSERT INTO "Wine_Descriptor" VALUES(4882,2441,3); INSERT INTO "Wine_Descriptor" VALUES(4883,2442,2); INSERT INTO "Wine_Descriptor" VALUES(4884,2442,3); INSERT INTO "Wine_Descriptor" VALUES(4885,2443,2); INSERT INTO "Wine_Descriptor" VALUES(4886,2443,3); INSERT INTO "Wine_Descriptor" VALUES(4887,2444,2); INSERT INTO "Wine_Descriptor" VALUES(4888,2444,3); INSERT INTO "Wine_Descriptor" VALUES(4889,2445,2); INSERT INTO "Wine_Descriptor" VALUES(4890,2445,3); INSERT INTO "Wine_Descriptor" VALUES(4891,2446,2); INSERT INTO "Wine_Descriptor" VALUES(4892,2446,3); INSERT INTO "Wine_Descriptor" VALUES(4893,2447,2); INSERT INTO "Wine_Descriptor" VALUES(4894,2447,3); INSERT INTO "Wine_Descriptor" VALUES(4895,2448,2); INSERT INTO "Wine_Descriptor" VALUES(4896,2448,3); INSERT INTO "Wine_Descriptor" VALUES(4897,2449,2); INSERT INTO "Wine_Descriptor" VALUES(4898,2449,3); INSERT INTO "Wine_Descriptor" VALUES(4899,2450,2); INSERT INTO "Wine_Descriptor" VALUES(4900,2450,3); INSERT INTO "Wine_Descriptor" VALUES(4901,2451,2); INSERT INTO "Wine_Descriptor" VALUES(4902,2451,3); INSERT INTO "Wine_Descriptor" VALUES(4903,2452,2); INSERT INTO "Wine_Descriptor" VALUES(4904,2452,3); INSERT INTO "Wine_Descriptor" VALUES(4905,2453,2); INSERT INTO "Wine_Descriptor" VALUES(4906,2453,3); INSERT INTO "Wine_Descriptor" VALUES(4907,2454,2); INSERT INTO "Wine_Descriptor" VALUES(4908,2454,3); INSERT INTO "Wine_Descriptor" VALUES(4909,2455,2); INSERT INTO "Wine_Descriptor" VALUES(4910,2455,3); INSERT INTO "Wine_Descriptor" VALUES(4911,2456,2); INSERT INTO "Wine_Descriptor" VALUES(4912,2456,3); INSERT INTO "Wine_Descriptor" VALUES(4913,2457,2); INSERT INTO "Wine_Descriptor" VALUES(4914,2457,3); INSERT INTO "Wine_Descriptor" VALUES(4915,2458,2); INSERT INTO "Wine_Descriptor" VALUES(4916,2458,3); INSERT INTO "Wine_Descriptor" VALUES(4917,2459,2); INSERT INTO "Wine_Descriptor" VALUES(4918,2459,3); INSERT INTO "Wine_Descriptor" VALUES(4919,2460,2); INSERT INTO "Wine_Descriptor" VALUES(4920,2460,3); INSERT INTO "Wine_Descriptor" VALUES(4921,2461,2); INSERT INTO "Wine_Descriptor" VALUES(4922,2461,3); INSERT INTO "Wine_Descriptor" VALUES(4923,2462,2); INSERT INTO "Wine_Descriptor" VALUES(4924,2462,3); INSERT INTO "Wine_Descriptor" VALUES(4925,2463,2); INSERT INTO "Wine_Descriptor" VALUES(4926,2463,3); INSERT INTO "Wine_Descriptor" VALUES(4927,2464,2); INSERT INTO "Wine_Descriptor" VALUES(4928,2464,3); INSERT INTO "Wine_Descriptor" VALUES(4929,2465,2); INSERT INTO "Wine_Descriptor" VALUES(4930,2465,3); INSERT INTO "Wine_Descriptor" VALUES(4931,2466,2); INSERT INTO "Wine_Descriptor" VALUES(4932,2466,3); INSERT INTO "Wine_Descriptor" VALUES(4933,2467,2); INSERT INTO "Wine_Descriptor" VALUES(4934,2467,3); INSERT INTO "Wine_Descriptor" VALUES(4935,2468,2); INSERT INTO "Wine_Descriptor" VALUES(4936,2468,3); INSERT INTO "Wine_Descriptor" VALUES(4937,2469,2); INSERT INTO "Wine_Descriptor" VALUES(4938,2469,3); INSERT INTO "Wine_Descriptor" VALUES(4939,2470,2); INSERT INTO "Wine_Descriptor" VALUES(4940,2470,3); INSERT INTO "Wine_Descriptor" VALUES(4941,2471,2); INSERT INTO "Wine_Descriptor" VALUES(4942,2471,3); INSERT INTO "Wine_Descriptor" VALUES(4943,2472,2); INSERT INTO "Wine_Descriptor" VALUES(4944,2472,3); INSERT INTO "Wine_Descriptor" VALUES(4945,2473,2); INSERT INTO "Wine_Descriptor" VALUES(4946,2473,3); INSERT INTO "Wine_Descriptor" VALUES(4947,2474,2); INSERT INTO "Wine_Descriptor" VALUES(4948,2474,3); INSERT INTO "Wine_Descriptor" VALUES(4949,2475,2); INSERT INTO "Wine_Descriptor" VALUES(4950,2475,3); INSERT INTO "Wine_Descriptor" VALUES(4951,2476,2); INSERT INTO "Wine_Descriptor" VALUES(4952,2476,3); INSERT INTO "Wine_Descriptor" VALUES(4953,2477,2); INSERT INTO "Wine_Descriptor" VALUES(4954,2477,3); INSERT INTO "Wine_Descriptor" VALUES(4955,2478,2); INSERT INTO "Wine_Descriptor" VALUES(4956,2478,3); INSERT INTO "Wine_Descriptor" VALUES(4957,2479,2); INSERT INTO "Wine_Descriptor" VALUES(4958,2479,3); INSERT INTO "Wine_Descriptor" VALUES(4959,2480,2); INSERT INTO "Wine_Descriptor" VALUES(4960,2480,3); INSERT INTO "Wine_Descriptor" VALUES(4961,2481,2); INSERT INTO "Wine_Descriptor" VALUES(4962,2481,3); INSERT INTO "Wine_Descriptor" VALUES(4963,2482,2); INSERT INTO "Wine_Descriptor" VALUES(4964,2482,3); INSERT INTO "Wine_Descriptor" VALUES(4965,2483,2); INSERT INTO "Wine_Descriptor" VALUES(4966,2483,3); INSERT INTO "Wine_Descriptor" VALUES(4967,2484,2); INSERT INTO "Wine_Descriptor" VALUES(4968,2484,3); INSERT INTO "Wine_Descriptor" VALUES(4969,2485,2); INSERT INTO "Wine_Descriptor" VALUES(4970,2485,3); INSERT INTO "Wine_Descriptor" VALUES(4971,2486,2); INSERT INTO "Wine_Descriptor" VALUES(4972,2486,3); INSERT INTO "Wine_Descriptor" VALUES(4973,2487,2); INSERT INTO "Wine_Descriptor" VALUES(4974,2487,3); INSERT INTO "Wine_Descriptor" VALUES(4975,2488,2); INSERT INTO "Wine_Descriptor" VALUES(4976,2488,3); INSERT INTO "Wine_Descriptor" VALUES(4977,2489,2); INSERT INTO "Wine_Descriptor" VALUES(4978,2489,3); INSERT INTO "Wine_Descriptor" VALUES(4979,2490,2); INSERT INTO "Wine_Descriptor" VALUES(4980,2490,3); INSERT INTO "Wine_Descriptor" VALUES(4981,2491,2); INSERT INTO "Wine_Descriptor" VALUES(4982,2491,3); INSERT INTO "Wine_Descriptor" VALUES(4983,2492,2); INSERT INTO "Wine_Descriptor" VALUES(4984,2492,3); INSERT INTO "Wine_Descriptor" VALUES(4985,2493,2); INSERT INTO "Wine_Descriptor" VALUES(4986,2493,3); INSERT INTO "Wine_Descriptor" VALUES(4987,2494,2); INSERT INTO "Wine_Descriptor" VALUES(4988,2494,3); INSERT INTO "Wine_Descriptor" VALUES(4989,2495,2); INSERT INTO "Wine_Descriptor" VALUES(4990,2495,3); INSERT INTO "Wine_Descriptor" VALUES(4991,2496,2); INSERT INTO "Wine_Descriptor" VALUES(4992,2496,3); INSERT INTO "Wine_Descriptor" VALUES(4993,2497,2); INSERT INTO "Wine_Descriptor" VALUES(4994,2497,3); INSERT INTO "Wine_Descriptor" VALUES(4995,2498,2); INSERT INTO "Wine_Descriptor" VALUES(4996,2498,3); INSERT INTO "Wine_Descriptor" VALUES(4997,2499,2); INSERT INTO "Wine_Descriptor" VALUES(4998,2499,3); INSERT INTO "Wine_Descriptor" VALUES(4999,2500,2); INSERT INTO "Wine_Descriptor" VALUES(5000,2500,3); INSERT INTO "Wine_Descriptor" VALUES(5001,2501,2); INSERT INTO "Wine_Descriptor" VALUES(5002,2501,3); INSERT INTO "Wine_Descriptor" VALUES(5003,2502,2); INSERT INTO "Wine_Descriptor" VALUES(5004,2502,3); INSERT INTO "Wine_Descriptor" VALUES(5005,2503,2); INSERT INTO "Wine_Descriptor" VALUES(5006,2503,3); INSERT INTO "Wine_Descriptor" VALUES(5007,2504,2); INSERT INTO "Wine_Descriptor" VALUES(5008,2504,3); INSERT INTO "Wine_Descriptor" VALUES(5009,2505,2); INSERT INTO "Wine_Descriptor" VALUES(5010,2505,3); INSERT INTO "Wine_Descriptor" VALUES(5011,2506,2); INSERT INTO "Wine_Descriptor" VALUES(5012,2506,3); INSERT INTO "Wine_Descriptor" VALUES(5013,2507,2); INSERT INTO "Wine_Descriptor" VALUES(5014,2507,3); INSERT INTO "Wine_Descriptor" VALUES(5015,2508,2); INSERT INTO "Wine_Descriptor" VALUES(5016,2508,3); INSERT INTO "Wine_Descriptor" VALUES(5017,2509,2); INSERT INTO "Wine_Descriptor" VALUES(5018,2509,3); INSERT INTO "Wine_Descriptor" VALUES(5019,2510,2); INSERT INTO "Wine_Descriptor" VALUES(5020,2510,3); INSERT INTO "Wine_Descriptor" VALUES(5021,2511,2); INSERT INTO "Wine_Descriptor" VALUES(5022,2511,3); INSERT INTO "Wine_Descriptor" VALUES(5023,2512,2); INSERT INTO "Wine_Descriptor" VALUES(5024,2512,3); INSERT INTO "Wine_Descriptor" VALUES(5025,2513,2); INSERT INTO "Wine_Descriptor" VALUES(5026,2513,3); INSERT INTO "Wine_Descriptor" VALUES(5027,2514,2); INSERT INTO "Wine_Descriptor" VALUES(5028,2514,3); INSERT INTO "Wine_Descriptor" VALUES(5029,2515,2); INSERT INTO "Wine_Descriptor" VALUES(5030,2515,3); INSERT INTO "Wine_Descriptor" VALUES(5031,2516,2); INSERT INTO "Wine_Descriptor" VALUES(5032,2516,3); INSERT INTO "Wine_Descriptor" VALUES(5033,2517,2); INSERT INTO "Wine_Descriptor" VALUES(5034,2517,3); INSERT INTO "Wine_Descriptor" VALUES(5035,2518,2); INSERT INTO "Wine_Descriptor" VALUES(5036,2518,3); INSERT INTO "Wine_Descriptor" VALUES(5037,2519,2); INSERT INTO "Wine_Descriptor" VALUES(5038,2519,3); INSERT INTO "Wine_Descriptor" VALUES(5039,2520,2); INSERT INTO "Wine_Descriptor" VALUES(5040,2520,3); INSERT INTO "Wine_Descriptor" VALUES(5041,2521,2); INSERT INTO "Wine_Descriptor" VALUES(5042,2521,3); INSERT INTO "Wine_Descriptor" VALUES(5043,2522,2); INSERT INTO "Wine_Descriptor" VALUES(5044,2522,3); INSERT INTO "Wine_Descriptor" VALUES(5045,2523,2); INSERT INTO "Wine_Descriptor" VALUES(5046,2523,3); INSERT INTO "Wine_Descriptor" VALUES(5047,2524,2); INSERT INTO "Wine_Descriptor" VALUES(5048,2524,3); INSERT INTO "Wine_Descriptor" VALUES(5049,2525,2); INSERT INTO "Wine_Descriptor" VALUES(5050,2525,3); INSERT INTO "Wine_Descriptor" VALUES(5051,2526,2); INSERT INTO "Wine_Descriptor" VALUES(5052,2526,3); INSERT INTO "Wine_Descriptor" VALUES(5053,2527,2); INSERT INTO "Wine_Descriptor" VALUES(5054,2527,3); INSERT INTO "Wine_Descriptor" VALUES(5055,2528,2); INSERT INTO "Wine_Descriptor" VALUES(5056,2528,3); INSERT INTO "Wine_Descriptor" VALUES(5057,2529,2); INSERT INTO "Wine_Descriptor" VALUES(5058,2529,3); INSERT INTO "Wine_Descriptor" VALUES(5059,2530,2); INSERT INTO "Wine_Descriptor" VALUES(5060,2530,3); INSERT INTO "Wine_Descriptor" VALUES(5061,2531,2); INSERT INTO "Wine_Descriptor" VALUES(5062,2531,3); INSERT INTO "Wine_Descriptor" VALUES(5063,2532,2); INSERT INTO "Wine_Descriptor" VALUES(5064,2532,3); INSERT INTO "Wine_Descriptor" VALUES(5065,2533,2); INSERT INTO "Wine_Descriptor" VALUES(5066,2533,3); INSERT INTO "Wine_Descriptor" VALUES(5067,2534,2); INSERT INTO "Wine_Descriptor" VALUES(5068,2534,3); INSERT INTO "Wine_Descriptor" VALUES(5069,2535,2); INSERT INTO "Wine_Descriptor" VALUES(5070,2535,3); INSERT INTO "Wine_Descriptor" VALUES(5071,2536,2); INSERT INTO "Wine_Descriptor" VALUES(5072,2536,3); INSERT INTO "Wine_Descriptor" VALUES(5073,2537,2); INSERT INTO "Wine_Descriptor" VALUES(5074,2537,3); INSERT INTO "Wine_Descriptor" VALUES(5075,2538,2); INSERT INTO "Wine_Descriptor" VALUES(5076,2538,3); INSERT INTO "Wine_Descriptor" VALUES(5077,2539,2); INSERT INTO "Wine_Descriptor" VALUES(5078,2539,3); INSERT INTO "Wine_Descriptor" VALUES(5079,2540,2); INSERT INTO "Wine_Descriptor" VALUES(5080,2540,3); INSERT INTO "Wine_Descriptor" VALUES(5081,2541,2); INSERT INTO "Wine_Descriptor" VALUES(5082,2541,3); INSERT INTO "Wine_Descriptor" VALUES(5083,2542,2); INSERT INTO "Wine_Descriptor" VALUES(5084,2542,3); INSERT INTO "Wine_Descriptor" VALUES(5085,2543,2); INSERT INTO "Wine_Descriptor" VALUES(5086,2543,3); INSERT INTO "Wine_Descriptor" VALUES(5087,2544,2); INSERT INTO "Wine_Descriptor" VALUES(5088,2544,3); INSERT INTO "Wine_Descriptor" VALUES(5089,2545,2); INSERT INTO "Wine_Descriptor" VALUES(5090,2545,3); INSERT INTO "Wine_Descriptor" VALUES(5091,2546,2); INSERT INTO "Wine_Descriptor" VALUES(5092,2546,3); INSERT INTO "Wine_Descriptor" VALUES(5093,2547,2); INSERT INTO "Wine_Descriptor" VALUES(5094,2547,3); INSERT INTO "Wine_Descriptor" VALUES(5095,2548,2); INSERT INTO "Wine_Descriptor" VALUES(5096,2548,3); INSERT INTO "Wine_Descriptor" VALUES(5097,2549,2); INSERT INTO "Wine_Descriptor" VALUES(5098,2549,3); INSERT INTO "Wine_Descriptor" VALUES(5099,2550,2); INSERT INTO "Wine_Descriptor" VALUES(5100,2550,3); INSERT INTO "Wine_Descriptor" VALUES(5101,2551,2); INSERT INTO "Wine_Descriptor" VALUES(5102,2551,3); INSERT INTO "Wine_Descriptor" VALUES(5103,2552,2); INSERT INTO "Wine_Descriptor" VALUES(5104,2552,3); INSERT INTO "Wine_Descriptor" VALUES(5105,2553,2); INSERT INTO "Wine_Descriptor" VALUES(5106,2553,3); INSERT INTO "Wine_Descriptor" VALUES(5107,2554,2); INSERT INTO "Wine_Descriptor" VALUES(5108,2554,3); INSERT INTO "Wine_Descriptor" VALUES(5109,2555,2); INSERT INTO "Wine_Descriptor" VALUES(5110,2555,3); INSERT INTO "Wine_Descriptor" VALUES(5111,2556,2); INSERT INTO "Wine_Descriptor" VALUES(5112,2556,3); INSERT INTO "Wine_Descriptor" VALUES(5113,2557,2); INSERT INTO "Wine_Descriptor" VALUES(5114,2557,3); INSERT INTO "Wine_Descriptor" VALUES(5115,2558,2); INSERT INTO "Wine_Descriptor" VALUES(5116,2558,3); INSERT INTO "Wine_Descriptor" VALUES(5117,2559,2); INSERT INTO "Wine_Descriptor" VALUES(5118,2559,3); INSERT INTO "Wine_Descriptor" VALUES(5119,2560,2); INSERT INTO "Wine_Descriptor" VALUES(5120,2560,3); INSERT INTO "Wine_Descriptor" VALUES(5121,2561,2); INSERT INTO "Wine_Descriptor" VALUES(5122,2561,3); INSERT INTO "Wine_Descriptor" VALUES(5123,2562,2); INSERT INTO "Wine_Descriptor" VALUES(5124,2562,3); INSERT INTO "Wine_Descriptor" VALUES(5125,2563,2); INSERT INTO "Wine_Descriptor" VALUES(5126,2563,3); INSERT INTO "Wine_Descriptor" VALUES(5127,2564,2); INSERT INTO "Wine_Descriptor" VALUES(5128,2564,3); INSERT INTO "Wine_Descriptor" VALUES(5129,2565,2); INSERT INTO "Wine_Descriptor" VALUES(5130,2565,3); INSERT INTO "Wine_Descriptor" VALUES(5131,2566,2); INSERT INTO "Wine_Descriptor" VALUES(5132,2566,3); INSERT INTO "Wine_Descriptor" VALUES(5133,2567,2); INSERT INTO "Wine_Descriptor" VALUES(5134,2567,3); INSERT INTO "Wine_Descriptor" VALUES(5135,2568,2); INSERT INTO "Wine_Descriptor" VALUES(5136,2568,3); INSERT INTO "Wine_Descriptor" VALUES(5137,2569,2); INSERT INTO "Wine_Descriptor" VALUES(5138,2569,3); INSERT INTO "Wine_Descriptor" VALUES(5139,2570,2); INSERT INTO "Wine_Descriptor" VALUES(5140,2570,3); INSERT INTO "Wine_Descriptor" VALUES(5141,2571,2); INSERT INTO "Wine_Descriptor" VALUES(5142,2571,3); INSERT INTO "Wine_Descriptor" VALUES(5143,2572,2); INSERT INTO "Wine_Descriptor" VALUES(5144,2572,3); INSERT INTO "Wine_Descriptor" VALUES(5145,2573,2); INSERT INTO "Wine_Descriptor" VALUES(5146,2573,3); INSERT INTO "Wine_Descriptor" VALUES(5147,2574,2); INSERT INTO "Wine_Descriptor" VALUES(5148,2574,3); INSERT INTO "Wine_Descriptor" VALUES(5149,2575,2); INSERT INTO "Wine_Descriptor" VALUES(5150,2575,3); INSERT INTO "Wine_Descriptor" VALUES(5151,2576,2); INSERT INTO "Wine_Descriptor" VALUES(5152,2576,3); INSERT INTO "Wine_Descriptor" VALUES(5153,2577,2); INSERT INTO "Wine_Descriptor" VALUES(5154,2577,3); INSERT INTO "Wine_Descriptor" VALUES(5155,2578,2); INSERT INTO "Wine_Descriptor" VALUES(5156,2578,3); INSERT INTO "Wine_Descriptor" VALUES(5157,2579,2); INSERT INTO "Wine_Descriptor" VALUES(5158,2579,3); INSERT INTO "Wine_Descriptor" VALUES(5159,2580,2); INSERT INTO "Wine_Descriptor" VALUES(5160,2580,3); INSERT INTO "Wine_Descriptor" VALUES(5161,2581,2); INSERT INTO "Wine_Descriptor" VALUES(5162,2581,3); INSERT INTO "Wine_Descriptor" VALUES(5163,2582,2); INSERT INTO "Wine_Descriptor" VALUES(5164,2582,3); INSERT INTO "Wine_Descriptor" VALUES(5165,2583,2); INSERT INTO "Wine_Descriptor" VALUES(5166,2583,3); INSERT INTO "Wine_Descriptor" VALUES(5167,2584,2); INSERT INTO "Wine_Descriptor" VALUES(5168,2584,3); INSERT INTO "Wine_Descriptor" VALUES(5169,2585,2); INSERT INTO "Wine_Descriptor" VALUES(5170,2585,3); INSERT INTO "Wine_Descriptor" VALUES(5171,2586,2); INSERT INTO "Wine_Descriptor" VALUES(5172,2586,3); INSERT INTO "Wine_Descriptor" VALUES(5173,2587,2); INSERT INTO "Wine_Descriptor" VALUES(5174,2587,3); INSERT INTO "Wine_Descriptor" VALUES(5175,2588,2); INSERT INTO "Wine_Descriptor" VALUES(5176,2588,3); INSERT INTO "Wine_Descriptor" VALUES(5177,2589,2); INSERT INTO "Wine_Descriptor" VALUES(5178,2589,3); INSERT INTO "Wine_Descriptor" VALUES(5179,2590,2); INSERT INTO "Wine_Descriptor" VALUES(5180,2590,3); INSERT INTO "Wine_Descriptor" VALUES(5181,2591,2); INSERT INTO "Wine_Descriptor" VALUES(5182,2591,3); INSERT INTO "Wine_Descriptor" VALUES(5183,2592,2); INSERT INTO "Wine_Descriptor" VALUES(5184,2592,3); INSERT INTO "Wine_Descriptor" VALUES(5185,2593,2); INSERT INTO "Wine_Descriptor" VALUES(5186,2593,3); INSERT INTO "Wine_Descriptor" VALUES(5187,2594,2); INSERT INTO "Wine_Descriptor" VALUES(5188,2594,3); INSERT INTO "Wine_Descriptor" VALUES(5189,2595,2); INSERT INTO "Wine_Descriptor" VALUES(5190,2595,3); INSERT INTO "Wine_Descriptor" VALUES(5191,2596,2); INSERT INTO "Wine_Descriptor" VALUES(5192,2596,3); INSERT INTO "Wine_Descriptor" VALUES(5193,2597,2); INSERT INTO "Wine_Descriptor" VALUES(5194,2597,3); INSERT INTO "Wine_Descriptor" VALUES(5195,2598,2); INSERT INTO "Wine_Descriptor" VALUES(5196,2598,3); INSERT INTO "Wine_Descriptor" VALUES(5197,2599,2); INSERT INTO "Wine_Descriptor" VALUES(5198,2599,3); INSERT INTO "Wine_Descriptor" VALUES(5199,2600,2); INSERT INTO "Wine_Descriptor" VALUES(5200,2600,3); INSERT INTO "Wine_Descriptor" VALUES(5201,2601,2); INSERT INTO "Wine_Descriptor" VALUES(5202,2601,3); INSERT INTO "Wine_Descriptor" VALUES(5203,2602,2); INSERT INTO "Wine_Descriptor" VALUES(5204,2602,3); INSERT INTO "Wine_Descriptor" VALUES(5205,2603,2); INSERT INTO "Wine_Descriptor" VALUES(5206,2603,3); INSERT INTO "Wine_Descriptor" VALUES(5207,2604,2); INSERT INTO "Wine_Descriptor" VALUES(5208,2604,3); INSERT INTO "Wine_Descriptor" VALUES(5209,2605,2); INSERT INTO "Wine_Descriptor" VALUES(5210,2605,3); INSERT INTO "Wine_Descriptor" VALUES(5211,2606,2); INSERT INTO "Wine_Descriptor" VALUES(5212,2606,3); INSERT INTO "Wine_Descriptor" VALUES(5213,2607,2); INSERT INTO "Wine_Descriptor" VALUES(5214,2607,3); INSERT INTO "Wine_Descriptor" VALUES(5215,2608,2); INSERT INTO "Wine_Descriptor" VALUES(5216,2608,3); INSERT INTO "Wine_Descriptor" VALUES(5217,2609,2); INSERT INTO "Wine_Descriptor" VALUES(5218,2609,3); INSERT INTO "Wine_Descriptor" VALUES(5219,2610,2); INSERT INTO "Wine_Descriptor" VALUES(5220,2610,3); INSERT INTO "Wine_Descriptor" VALUES(5221,2611,2); INSERT INTO "Wine_Descriptor" VALUES(5222,2611,3); INSERT INTO "Wine_Descriptor" VALUES(5223,2612,2); INSERT INTO "Wine_Descriptor" VALUES(5224,2612,3); INSERT INTO "Wine_Descriptor" VALUES(5225,2613,2); INSERT INTO "Wine_Descriptor" VALUES(5226,2613,3); INSERT INTO "Wine_Descriptor" VALUES(5227,2614,2); INSERT INTO "Wine_Descriptor" VALUES(5228,2614,3); INSERT INTO "Wine_Descriptor" VALUES(5229,2615,2); INSERT INTO "Wine_Descriptor" VALUES(5230,2615,3); INSERT INTO "Wine_Descriptor" VALUES(5231,2616,2); INSERT INTO "Wine_Descriptor" VALUES(5232,2616,3); INSERT INTO "Wine_Descriptor" VALUES(5233,2617,2); INSERT INTO "Wine_Descriptor" VALUES(5234,2617,3); INSERT INTO "Wine_Descriptor" VALUES(5235,2618,2); INSERT INTO "Wine_Descriptor" VALUES(5236,2618,3); INSERT INTO "Wine_Descriptor" VALUES(5237,2619,2); INSERT INTO "Wine_Descriptor" VALUES(5238,2619,3); INSERT INTO "Wine_Descriptor" VALUES(5239,2620,2); INSERT INTO "Wine_Descriptor" VALUES(5240,2620,3); INSERT INTO "Wine_Descriptor" VALUES(5241,2621,2); INSERT INTO "Wine_Descriptor" VALUES(5242,2621,3); INSERT INTO "Wine_Descriptor" VALUES(5243,2622,2); INSERT INTO "Wine_Descriptor" VALUES(5244,2622,3); INSERT INTO "Wine_Descriptor" VALUES(5245,2623,2); INSERT INTO "Wine_Descriptor" VALUES(5246,2623,3); INSERT INTO "Wine_Descriptor" VALUES(5247,2624,2); INSERT INTO "Wine_Descriptor" VALUES(5248,2624,3); INSERT INTO "Wine_Descriptor" VALUES(5249,2625,2); INSERT INTO "Wine_Descriptor" VALUES(5250,2625,3); INSERT INTO "Wine_Descriptor" VALUES(5251,2626,2); INSERT INTO "Wine_Descriptor" VALUES(5252,2626,3); INSERT INTO "Wine_Descriptor" VALUES(5253,2627,2); INSERT INTO "Wine_Descriptor" VALUES(5254,2627,3); INSERT INTO "Wine_Descriptor" VALUES(5255,2628,2); INSERT INTO "Wine_Descriptor" VALUES(5256,2628,3); INSERT INTO "Wine_Descriptor" VALUES(5257,2629,2); INSERT INTO "Wine_Descriptor" VALUES(5258,2629,3); INSERT INTO "Wine_Descriptor" VALUES(5259,2630,2); INSERT INTO "Wine_Descriptor" VALUES(5260,2630,3); INSERT INTO "Wine_Descriptor" VALUES(5261,2631,2); INSERT INTO "Wine_Descriptor" VALUES(5262,2631,3); INSERT INTO "Wine_Descriptor" VALUES(5263,2632,2); INSERT INTO "Wine_Descriptor" VALUES(5264,2632,3); INSERT INTO "Wine_Descriptor" VALUES(5265,2633,2); INSERT INTO "Wine_Descriptor" VALUES(5266,2633,3); INSERT INTO "Wine_Descriptor" VALUES(5267,2634,2); INSERT INTO "Wine_Descriptor" VALUES(5268,2634,3); INSERT INTO "Wine_Descriptor" VALUES(5269,2635,2); INSERT INTO "Wine_Descriptor" VALUES(5270,2635,3); INSERT INTO "Wine_Descriptor" VALUES(5271,2636,2); INSERT INTO "Wine_Descriptor" VALUES(5272,2636,3); INSERT INTO "Wine_Descriptor" VALUES(5273,2637,2); INSERT INTO "Wine_Descriptor" VALUES(5274,2637,3); INSERT INTO "Wine_Descriptor" VALUES(5275,2638,2); INSERT INTO "Wine_Descriptor" VALUES(5276,2638,3); INSERT INTO "Wine_Descriptor" VALUES(5277,2639,2); INSERT INTO "Wine_Descriptor" VALUES(5278,2639,3); INSERT INTO "Wine_Descriptor" VALUES(5279,2640,2); INSERT INTO "Wine_Descriptor" VALUES(5280,2640,3); INSERT INTO "Wine_Descriptor" VALUES(5281,2641,2); INSERT INTO "Wine_Descriptor" VALUES(5282,2641,3); INSERT INTO "Wine_Descriptor" VALUES(5283,2642,2); INSERT INTO "Wine_Descriptor" VALUES(5284,2642,3); INSERT INTO "Wine_Descriptor" VALUES(5285,2643,2); INSERT INTO "Wine_Descriptor" VALUES(5286,2643,3); INSERT INTO "Wine_Descriptor" VALUES(5287,2644,2); INSERT INTO "Wine_Descriptor" VALUES(5288,2644,3); INSERT INTO "Wine_Descriptor" VALUES(5289,2645,2); INSERT INTO "Wine_Descriptor" VALUES(5290,2645,3); INSERT INTO "Wine_Descriptor" VALUES(5291,2646,2); INSERT INTO "Wine_Descriptor" VALUES(5292,2646,3); INSERT INTO "Wine_Descriptor" VALUES(5293,2647,2); INSERT INTO "Wine_Descriptor" VALUES(5294,2647,3); INSERT INTO "Wine_Descriptor" VALUES(5295,2648,2); INSERT INTO "Wine_Descriptor" VALUES(5296,2648,3); INSERT INTO "Wine_Descriptor" VALUES(5297,2649,2); INSERT INTO "Wine_Descriptor" VALUES(5298,2649,3); INSERT INTO "Wine_Descriptor" VALUES(5299,2650,2); INSERT INTO "Wine_Descriptor" VALUES(5300,2650,3); INSERT INTO "Wine_Descriptor" VALUES(5301,2651,2); INSERT INTO "Wine_Descriptor" VALUES(5302,2651,3); INSERT INTO "Wine_Descriptor" VALUES(5303,2652,2); INSERT INTO "Wine_Descriptor" VALUES(5304,2652,3); INSERT INTO "Wine_Descriptor" VALUES(5305,2653,2); INSERT INTO "Wine_Descriptor" VALUES(5306,2653,3); INSERT INTO "Wine_Descriptor" VALUES(5307,2654,2); INSERT INTO "Wine_Descriptor" VALUES(5308,2654,3); INSERT INTO "Wine_Descriptor" VALUES(5309,2655,2); INSERT INTO "Wine_Descriptor" VALUES(5310,2655,3); INSERT INTO "Wine_Descriptor" VALUES(5311,2656,2); INSERT INTO "Wine_Descriptor" VALUES(5312,2656,3); INSERT INTO "Wine_Descriptor" VALUES(5313,2657,2); INSERT INTO "Wine_Descriptor" VALUES(5314,2657,3); INSERT INTO "Wine_Descriptor" VALUES(5315,2658,2); INSERT INTO "Wine_Descriptor" VALUES(5316,2658,3); INSERT INTO "Wine_Descriptor" VALUES(5317,2659,2); INSERT INTO "Wine_Descriptor" VALUES(5318,2659,3); INSERT INTO "Wine_Descriptor" VALUES(5319,2660,2); INSERT INTO "Wine_Descriptor" VALUES(5320,2660,3); INSERT INTO "Wine_Descriptor" VALUES(5321,2661,2); INSERT INTO "Wine_Descriptor" VALUES(5322,2661,3); INSERT INTO "Wine_Descriptor" VALUES(5323,2662,2); INSERT INTO "Wine_Descriptor" VALUES(5324,2662,3); INSERT INTO "Wine_Descriptor" VALUES(5325,2663,2); INSERT INTO "Wine_Descriptor" VALUES(5326,2663,3); INSERT INTO "Wine_Descriptor" VALUES(5327,2664,2); INSERT INTO "Wine_Descriptor" VALUES(5328,2664,3); INSERT INTO "Wine_Descriptor" VALUES(5329,2665,2); INSERT INTO "Wine_Descriptor" VALUES(5330,2665,3); INSERT INTO "Wine_Descriptor" VALUES(5331,2666,2); INSERT INTO "Wine_Descriptor" VALUES(5332,2666,3); INSERT INTO "Wine_Descriptor" VALUES(5333,2667,2); INSERT INTO "Wine_Descriptor" VALUES(5334,2667,3); INSERT INTO "Wine_Descriptor" VALUES(5335,2668,2); INSERT INTO "Wine_Descriptor" VALUES(5336,2668,3); INSERT INTO "Wine_Descriptor" VALUES(5337,2669,2); INSERT INTO "Wine_Descriptor" VALUES(5338,2669,3); INSERT INTO "Wine_Descriptor" VALUES(5339,2670,2); INSERT INTO "Wine_Descriptor" VALUES(5340,2670,3); INSERT INTO "Wine_Descriptor" VALUES(5341,2671,2); INSERT INTO "Wine_Descriptor" VALUES(5342,2671,3); INSERT INTO "Wine_Descriptor" VALUES(5343,2672,2); INSERT INTO "Wine_Descriptor" VALUES(5344,2672,3); INSERT INTO "Wine_Descriptor" VALUES(5345,2673,2); INSERT INTO "Wine_Descriptor" VALUES(5346,2673,3); INSERT INTO "Wine_Descriptor" VALUES(5347,2674,2); INSERT INTO "Wine_Descriptor" VALUES(5348,2674,3); INSERT INTO "Wine_Descriptor" VALUES(5349,2675,2); INSERT INTO "Wine_Descriptor" VALUES(5350,2675,3); INSERT INTO "Wine_Descriptor" VALUES(5351,2676,2); INSERT INTO "Wine_Descriptor" VALUES(5352,2676,3); INSERT INTO "Wine_Descriptor" VALUES(5353,2677,2); INSERT INTO "Wine_Descriptor" VALUES(5354,2677,3); INSERT INTO "Wine_Descriptor" VALUES(5355,2678,2); INSERT INTO "Wine_Descriptor" VALUES(5356,2678,3); INSERT INTO "Wine_Descriptor" VALUES(5357,2679,2); INSERT INTO "Wine_Descriptor" VALUES(5358,2679,3); INSERT INTO "Wine_Descriptor" VALUES(5359,2680,2); INSERT INTO "Wine_Descriptor" VALUES(5360,2680,3); INSERT INTO "Wine_Descriptor" VALUES(5361,2681,2); INSERT INTO "Wine_Descriptor" VALUES(5362,2681,3); INSERT INTO "Wine_Descriptor" VALUES(5363,2682,2); INSERT INTO "Wine_Descriptor" VALUES(5364,2682,3); INSERT INTO "Wine_Descriptor" VALUES(5365,2683,2); INSERT INTO "Wine_Descriptor" VALUES(5366,2683,3); INSERT INTO "Wine_Descriptor" VALUES(5367,2684,2); INSERT INTO "Wine_Descriptor" VALUES(5368,2684,3); INSERT INTO "Wine_Descriptor" VALUES(5369,2685,2); INSERT INTO "Wine_Descriptor" VALUES(5370,2685,3); INSERT INTO "Wine_Descriptor" VALUES(5371,2686,2); INSERT INTO "Wine_Descriptor" VALUES(5372,2686,3); INSERT INTO "Wine_Descriptor" VALUES(5373,2687,2); INSERT INTO "Wine_Descriptor" VALUES(5374,2687,3); INSERT INTO "Wine_Descriptor" VALUES(5375,2688,2); INSERT INTO "Wine_Descriptor" VALUES(5376,2688,3); INSERT INTO "Wine_Descriptor" VALUES(5377,2689,2); INSERT INTO "Wine_Descriptor" VALUES(5378,2689,3); INSERT INTO "Wine_Descriptor" VALUES(5379,2690,2); INSERT INTO "Wine_Descriptor" VALUES(5380,2690,3); INSERT INTO "Wine_Descriptor" VALUES(5381,2691,2); INSERT INTO "Wine_Descriptor" VALUES(5382,2691,3); INSERT INTO "Wine_Descriptor" VALUES(5383,2692,2); INSERT INTO "Wine_Descriptor" VALUES(5384,2692,3); INSERT INTO "Wine_Descriptor" VALUES(5385,2693,2); INSERT INTO "Wine_Descriptor" VALUES(5386,2693,3); INSERT INTO "Wine_Descriptor" VALUES(5387,2694,2); INSERT INTO "Wine_Descriptor" VALUES(5388,2694,3); INSERT INTO "Wine_Descriptor" VALUES(5389,2695,2); INSERT INTO "Wine_Descriptor" VALUES(5390,2695,3); INSERT INTO "Wine_Descriptor" VALUES(5391,2696,2); INSERT INTO "Wine_Descriptor" VALUES(5392,2696,3); INSERT INTO "Wine_Descriptor" VALUES(5393,2697,2); INSERT INTO "Wine_Descriptor" VALUES(5394,2697,3); INSERT INTO "Wine_Descriptor" VALUES(5395,2698,2); INSERT INTO "Wine_Descriptor" VALUES(5396,2698,3); INSERT INTO "Wine_Descriptor" VALUES(5397,2699,2); INSERT INTO "Wine_Descriptor" VALUES(5398,2699,3); INSERT INTO "Wine_Descriptor" VALUES(5399,2700,2); INSERT INTO "Wine_Descriptor" VALUES(5400,2700,3); INSERT INTO "Wine_Descriptor" VALUES(5401,2701,2); INSERT INTO "Wine_Descriptor" VALUES(5402,2701,3); INSERT INTO "Wine_Descriptor" VALUES(5403,2702,2); INSERT INTO "Wine_Descriptor" VALUES(5404,2702,3); INSERT INTO "Wine_Descriptor" VALUES(5405,2703,2); INSERT INTO "Wine_Descriptor" VALUES(5406,2703,3); INSERT INTO "Wine_Descriptor" VALUES(5407,2704,2); INSERT INTO "Wine_Descriptor" VALUES(5408,2704,3); INSERT INTO "Wine_Descriptor" VALUES(5409,2705,2); INSERT INTO "Wine_Descriptor" VALUES(5410,2705,3); INSERT INTO "Wine_Descriptor" VALUES(5411,2706,2); INSERT INTO "Wine_Descriptor" VALUES(5412,2706,3); INSERT INTO "Wine_Descriptor" VALUES(5413,2707,2); INSERT INTO "Wine_Descriptor" VALUES(5414,2707,3); INSERT INTO "Wine_Descriptor" VALUES(5415,2708,2); INSERT INTO "Wine_Descriptor" VALUES(5416,2708,3); INSERT INTO "Wine_Descriptor" VALUES(5417,2709,2); INSERT INTO "Wine_Descriptor" VALUES(5418,2709,3); INSERT INTO "Wine_Descriptor" VALUES(5419,2710,2); INSERT INTO "Wine_Descriptor" VALUES(5420,2710,3); INSERT INTO "Wine_Descriptor" VALUES(5421,2711,2); INSERT INTO "Wine_Descriptor" VALUES(5422,2711,3); INSERT INTO "Wine_Descriptor" VALUES(5423,2712,2); INSERT INTO "Wine_Descriptor" VALUES(5424,2712,3); INSERT INTO "Wine_Descriptor" VALUES(5425,2713,2); INSERT INTO "Wine_Descriptor" VALUES(5426,2713,3); INSERT INTO "Wine_Descriptor" VALUES(5427,2714,2); INSERT INTO "Wine_Descriptor" VALUES(5428,2714,3); INSERT INTO "Wine_Descriptor" VALUES(5429,2715,2); INSERT INTO "Wine_Descriptor" VALUES(5430,2715,3); INSERT INTO "Wine_Descriptor" VALUES(5431,2716,2); INSERT INTO "Wine_Descriptor" VALUES(5432,2716,3); INSERT INTO "Wine_Descriptor" VALUES(5433,2717,2); INSERT INTO "Wine_Descriptor" VALUES(5434,2717,3); INSERT INTO "Wine_Descriptor" VALUES(5435,2718,2); INSERT INTO "Wine_Descriptor" VALUES(5436,2718,3); INSERT INTO "Wine_Descriptor" VALUES(5437,2719,2); INSERT INTO "Wine_Descriptor" VALUES(5438,2719,3); INSERT INTO "Wine_Descriptor" VALUES(5439,2720,2); INSERT INTO "Wine_Descriptor" VALUES(5440,2720,3); INSERT INTO "Wine_Descriptor" VALUES(5441,2721,2); INSERT INTO "Wine_Descriptor" VALUES(5442,2721,3); INSERT INTO "Wine_Descriptor" VALUES(5443,2722,2); INSERT INTO "Wine_Descriptor" VALUES(5444,2722,3); INSERT INTO "Wine_Descriptor" VALUES(5445,2723,2); INSERT INTO "Wine_Descriptor" VALUES(5446,2723,3); INSERT INTO "Wine_Descriptor" VALUES(5447,2724,2); INSERT INTO "Wine_Descriptor" VALUES(5448,2724,3); INSERT INTO "Wine_Descriptor" VALUES(5449,2725,2); INSERT INTO "Wine_Descriptor" VALUES(5450,2725,3); INSERT INTO "Wine_Descriptor" VALUES(5451,2726,2); INSERT INTO "Wine_Descriptor" VALUES(5452,2726,3); INSERT INTO "Wine_Descriptor" VALUES(5453,2727,2); INSERT INTO "Wine_Descriptor" VALUES(5454,2727,3); INSERT INTO "Wine_Descriptor" VALUES(5455,2728,2); INSERT INTO "Wine_Descriptor" VALUES(5456,2728,3); INSERT INTO "Wine_Descriptor" VALUES(5457,2729,2); INSERT INTO "Wine_Descriptor" VALUES(5458,2729,3); INSERT INTO "Wine_Descriptor" VALUES(5459,2730,2); INSERT INTO "Wine_Descriptor" VALUES(5460,2730,3); INSERT INTO "Wine_Descriptor" VALUES(5461,2731,2); INSERT INTO "Wine_Descriptor" VALUES(5462,2731,3); INSERT INTO "Wine_Descriptor" VALUES(5463,2732,2); INSERT INTO "Wine_Descriptor" VALUES(5464,2732,3); INSERT INTO "Wine_Descriptor" VALUES(5465,2733,2); INSERT INTO "Wine_Descriptor" VALUES(5466,2733,3); INSERT INTO "Wine_Descriptor" VALUES(5467,2734,2); INSERT INTO "Wine_Descriptor" VALUES(5468,2734,3); INSERT INTO "Wine_Descriptor" VALUES(5469,2735,2); INSERT INTO "Wine_Descriptor" VALUES(5470,2735,3); INSERT INTO "Wine_Descriptor" VALUES(5471,2736,2); INSERT INTO "Wine_Descriptor" VALUES(5472,2736,3); INSERT INTO "Wine_Descriptor" VALUES(5473,2737,2); INSERT INTO "Wine_Descriptor" VALUES(5474,2737,3); INSERT INTO "Wine_Descriptor" VALUES(5475,2738,2); INSERT INTO "Wine_Descriptor" VALUES(5476,2738,3); INSERT INTO "Wine_Descriptor" VALUES(5477,2739,2); INSERT INTO "Wine_Descriptor" VALUES(5478,2739,3); INSERT INTO "Wine_Descriptor" VALUES(5479,2740,2); INSERT INTO "Wine_Descriptor" VALUES(5480,2740,3); INSERT INTO "Wine_Descriptor" VALUES(5481,2741,2); INSERT INTO "Wine_Descriptor" VALUES(5482,2741,3); INSERT INTO "Wine_Descriptor" VALUES(5483,2742,2); INSERT INTO "Wine_Descriptor" VALUES(5484,2742,3); INSERT INTO "Wine_Descriptor" VALUES(5485,2743,2); INSERT INTO "Wine_Descriptor" VALUES(5486,2743,3); INSERT INTO "Wine_Descriptor" VALUES(5487,2744,2); INSERT INTO "Wine_Descriptor" VALUES(5488,2744,3); INSERT INTO "Wine_Descriptor" VALUES(5489,2745,2); INSERT INTO "Wine_Descriptor" VALUES(5490,2745,3); INSERT INTO "Wine_Descriptor" VALUES(5491,2746,2); INSERT INTO "Wine_Descriptor" VALUES(5492,2746,3); INSERT INTO "Wine_Descriptor" VALUES(5493,2747,2); INSERT INTO "Wine_Descriptor" VALUES(5494,2747,3); INSERT INTO "Wine_Descriptor" VALUES(5495,2748,2); INSERT INTO "Wine_Descriptor" VALUES(5496,2748,3); INSERT INTO "Wine_Descriptor" VALUES(5497,2749,2); INSERT INTO "Wine_Descriptor" VALUES(5498,2749,3); INSERT INTO "Wine_Descriptor" VALUES(5499,2750,2); INSERT INTO "Wine_Descriptor" VALUES(5500,2750,3); INSERT INTO "Wine_Descriptor" VALUES(5501,2751,2); INSERT INTO "Wine_Descriptor" VALUES(5502,2751,3); INSERT INTO "Wine_Descriptor" VALUES(5503,2752,2); INSERT INTO "Wine_Descriptor" VALUES(5504,2752,3); INSERT INTO "Wine_Descriptor" VALUES(5505,2753,2); INSERT INTO "Wine_Descriptor" VALUES(5506,2753,3); INSERT INTO "Wine_Descriptor" VALUES(5507,2754,2); INSERT INTO "Wine_Descriptor" VALUES(5508,2754,3); INSERT INTO "Wine_Descriptor" VALUES(5509,2755,2); INSERT INTO "Wine_Descriptor" VALUES(5510,2755,3); INSERT INTO "Wine_Descriptor" VALUES(5511,2756,2); INSERT INTO "Wine_Descriptor" VALUES(5512,2756,3); INSERT INTO "Wine_Descriptor" VALUES(5513,2757,2); INSERT INTO "Wine_Descriptor" VALUES(5514,2757,3); INSERT INTO "Wine_Descriptor" VALUES(5515,2758,2); INSERT INTO "Wine_Descriptor" VALUES(5516,2758,3); INSERT INTO "Wine_Descriptor" VALUES(5517,2759,2); INSERT INTO "Wine_Descriptor" VALUES(5518,2759,3); INSERT INTO "Wine_Descriptor" VALUES(5519,2760,2); INSERT INTO "Wine_Descriptor" VALUES(5520,2760,3); INSERT INTO "Wine_Descriptor" VALUES(5521,2761,2); INSERT INTO "Wine_Descriptor" VALUES(5522,2761,3); INSERT INTO "Wine_Descriptor" VALUES(5523,2762,2); INSERT INTO "Wine_Descriptor" VALUES(5524,2762,3); INSERT INTO "Wine_Descriptor" VALUES(5525,2763,2); INSERT INTO "Wine_Descriptor" VALUES(5526,2763,3); INSERT INTO "Wine_Descriptor" VALUES(5527,2764,2); INSERT INTO "Wine_Descriptor" VALUES(5528,2764,3); INSERT INTO "Wine_Descriptor" VALUES(5529,2765,2); INSERT INTO "Wine_Descriptor" VALUES(5530,2765,3); INSERT INTO "Wine_Descriptor" VALUES(5531,2766,2); INSERT INTO "Wine_Descriptor" VALUES(5532,2766,3); INSERT INTO "Wine_Descriptor" VALUES(5533,2767,2); INSERT INTO "Wine_Descriptor" VALUES(5534,2767,3); INSERT INTO "Wine_Descriptor" VALUES(5535,2768,2); INSERT INTO "Wine_Descriptor" VALUES(5536,2768,3); INSERT INTO "Wine_Descriptor" VALUES(5537,2769,2); INSERT INTO "Wine_Descriptor" VALUES(5538,2769,3); INSERT INTO "Wine_Descriptor" VALUES(5539,2770,2); INSERT INTO "Wine_Descriptor" VALUES(5540,2770,3); INSERT INTO "Wine_Descriptor" VALUES(5541,2771,2); INSERT INTO "Wine_Descriptor" VALUES(5542,2771,3); INSERT INTO "Wine_Descriptor" VALUES(5543,2772,2); INSERT INTO "Wine_Descriptor" VALUES(5544,2772,3); INSERT INTO "Wine_Descriptor" VALUES(5545,2773,2); INSERT INTO "Wine_Descriptor" VALUES(5546,2773,3); INSERT INTO "Wine_Descriptor" VALUES(5547,2774,2); INSERT INTO "Wine_Descriptor" VALUES(5548,2774,3); INSERT INTO "Wine_Descriptor" VALUES(5549,2775,2); INSERT INTO "Wine_Descriptor" VALUES(5550,2775,3); INSERT INTO "Wine_Descriptor" VALUES(5551,2776,2); INSERT INTO "Wine_Descriptor" VALUES(5552,2776,3); INSERT INTO "Wine_Descriptor" VALUES(5553,2777,2); INSERT INTO "Wine_Descriptor" VALUES(5554,2777,3); INSERT INTO "Wine_Descriptor" VALUES(5555,2778,2); INSERT INTO "Wine_Descriptor" VALUES(5556,2778,3); INSERT INTO "Wine_Descriptor" VALUES(5557,2779,2); INSERT INTO "Wine_Descriptor" VALUES(5558,2779,3); INSERT INTO "Wine_Descriptor" VALUES(5559,2780,2); INSERT INTO "Wine_Descriptor" VALUES(5560,2780,3); INSERT INTO "Wine_Descriptor" VALUES(5561,2781,2); INSERT INTO "Wine_Descriptor" VALUES(5562,2781,3); INSERT INTO "Wine_Descriptor" VALUES(5563,2782,2); INSERT INTO "Wine_Descriptor" VALUES(5564,2782,3); INSERT INTO "Wine_Descriptor" VALUES(5565,2783,2); INSERT INTO "Wine_Descriptor" VALUES(5566,2783,3); INSERT INTO "Wine_Descriptor" VALUES(5567,2784,2); INSERT INTO "Wine_Descriptor" VALUES(5568,2784,3); INSERT INTO "Wine_Descriptor" VALUES(5569,2785,2); INSERT INTO "Wine_Descriptor" VALUES(5570,2785,3); INSERT INTO "Wine_Descriptor" VALUES(5571,2786,2); INSERT INTO "Wine_Descriptor" VALUES(5572,2786,3); INSERT INTO "Wine_Descriptor" VALUES(5573,2787,2); INSERT INTO "Wine_Descriptor" VALUES(5574,2787,3); INSERT INTO "Wine_Descriptor" VALUES(5575,2788,2); INSERT INTO "Wine_Descriptor" VALUES(5576,2788,3); INSERT INTO "Wine_Descriptor" VALUES(5577,2789,2); INSERT INTO "Wine_Descriptor" VALUES(5578,2789,3); INSERT INTO "Wine_Descriptor" VALUES(5579,2790,2); INSERT INTO "Wine_Descriptor" VALUES(5580,2790,3); INSERT INTO "Wine_Descriptor" VALUES(5581,2791,2); INSERT INTO "Wine_Descriptor" VALUES(5582,2791,3); INSERT INTO "Wine_Descriptor" VALUES(5583,2792,2); INSERT INTO "Wine_Descriptor" VALUES(5584,2792,3); INSERT INTO "Wine_Descriptor" VALUES(5585,2793,2); INSERT INTO "Wine_Descriptor" VALUES(5586,2793,3); INSERT INTO "Wine_Descriptor" VALUES(5587,2794,2); INSERT INTO "Wine_Descriptor" VALUES(5588,2794,3); INSERT INTO "Wine_Descriptor" VALUES(5589,2795,2); INSERT INTO "Wine_Descriptor" VALUES(5590,2795,3); INSERT INTO "Wine_Descriptor" VALUES(5591,2796,2); INSERT INTO "Wine_Descriptor" VALUES(5592,2796,3); INSERT INTO "Wine_Descriptor" VALUES(5593,2797,2); INSERT INTO "Wine_Descriptor" VALUES(5594,2797,3); INSERT INTO "Wine_Descriptor" VALUES(5595,2798,2); INSERT INTO "Wine_Descriptor" VALUES(5596,2798,3); INSERT INTO "Wine_Descriptor" VALUES(5597,2799,2); INSERT INTO "Wine_Descriptor" VALUES(5598,2799,3); INSERT INTO "Wine_Descriptor" VALUES(5599,2800,2); INSERT INTO "Wine_Descriptor" VALUES(5600,2800,3); INSERT INTO "Wine_Descriptor" VALUES(5601,2801,2); INSERT INTO "Wine_Descriptor" VALUES(5602,2801,3); INSERT INTO "Wine_Descriptor" VALUES(5603,2802,2); INSERT INTO "Wine_Descriptor" VALUES(5604,2802,3); INSERT INTO "Wine_Descriptor" VALUES(5605,2803,2); INSERT INTO "Wine_Descriptor" VALUES(5606,2803,3); INSERT INTO "Wine_Descriptor" VALUES(5607,2804,2); INSERT INTO "Wine_Descriptor" VALUES(5608,2804,3); INSERT INTO "Wine_Descriptor" VALUES(5609,2805,2); INSERT INTO "Wine_Descriptor" VALUES(5610,2805,3); INSERT INTO "Wine_Descriptor" VALUES(5611,2806,2); INSERT INTO "Wine_Descriptor" VALUES(5612,2806,3); INSERT INTO "Wine_Descriptor" VALUES(5613,2807,2); INSERT INTO "Wine_Descriptor" VALUES(5614,2807,3); INSERT INTO "Wine_Descriptor" VALUES(5615,2808,2); INSERT INTO "Wine_Descriptor" VALUES(5616,2808,3); INSERT INTO "Wine_Descriptor" VALUES(5617,2809,2); INSERT INTO "Wine_Descriptor" VALUES(5618,2809,3); INSERT INTO "Wine_Descriptor" VALUES(5619,2810,2); INSERT INTO "Wine_Descriptor" VALUES(5620,2810,3); INSERT INTO "Wine_Descriptor" VALUES(5621,2811,2); INSERT INTO "Wine_Descriptor" VALUES(5622,2811,3); INSERT INTO "Wine_Descriptor" VALUES(5623,2812,2); INSERT INTO "Wine_Descriptor" VALUES(5624,2812,3); INSERT INTO "Wine_Descriptor" VALUES(5625,2813,2); INSERT INTO "Wine_Descriptor" VALUES(5626,2813,3); INSERT INTO "Wine_Descriptor" VALUES(5627,2814,2); INSERT INTO "Wine_Descriptor" VALUES(5628,2814,3); INSERT INTO "Wine_Descriptor" VALUES(5629,2815,2); INSERT INTO "Wine_Descriptor" VALUES(5630,2815,3); INSERT INTO "Wine_Descriptor" VALUES(5631,2816,2); INSERT INTO "Wine_Descriptor" VALUES(5632,2816,3); INSERT INTO "Wine_Descriptor" VALUES(5633,2817,2); INSERT INTO "Wine_Descriptor" VALUES(5634,2817,3); INSERT INTO "Wine_Descriptor" VALUES(5635,2818,2); INSERT INTO "Wine_Descriptor" VALUES(5636,2818,3); INSERT INTO "Wine_Descriptor" VALUES(5637,2819,2); INSERT INTO "Wine_Descriptor" VALUES(5638,2819,3); INSERT INTO "Wine_Descriptor" VALUES(5639,2820,2); INSERT INTO "Wine_Descriptor" VALUES(5640,2820,3); INSERT INTO "Wine_Descriptor" VALUES(5641,2821,2); INSERT INTO "Wine_Descriptor" VALUES(5642,2821,3); INSERT INTO "Wine_Descriptor" VALUES(5643,2822,2); INSERT INTO "Wine_Descriptor" VALUES(5644,2822,3); INSERT INTO "Wine_Descriptor" VALUES(5645,2823,2); INSERT INTO "Wine_Descriptor" VALUES(5646,2823,3); INSERT INTO "Wine_Descriptor" VALUES(5647,2824,2); INSERT INTO "Wine_Descriptor" VALUES(5648,2824,3); INSERT INTO "Wine_Descriptor" VALUES(5649,2825,2); INSERT INTO "Wine_Descriptor" VALUES(5650,2825,3); INSERT INTO "Wine_Descriptor" VALUES(5651,2826,2); INSERT INTO "Wine_Descriptor" VALUES(5652,2826,3); INSERT INTO "Wine_Descriptor" VALUES(5653,2827,2); INSERT INTO "Wine_Descriptor" VALUES(5654,2827,3); INSERT INTO "Wine_Descriptor" VALUES(5655,2828,2); INSERT INTO "Wine_Descriptor" VALUES(5656,2828,3); INSERT INTO "Wine_Descriptor" VALUES(5657,2829,2); INSERT INTO "Wine_Descriptor" VALUES(5658,2829,3); INSERT INTO "Wine_Descriptor" VALUES(5659,2830,2); INSERT INTO "Wine_Descriptor" VALUES(5660,2830,3); INSERT INTO "Wine_Descriptor" VALUES(5661,2831,2); INSERT INTO "Wine_Descriptor" VALUES(5662,2831,3); INSERT INTO "Wine_Descriptor" VALUES(5663,2832,2); INSERT INTO "Wine_Descriptor" VALUES(5664,2832,3); INSERT INTO "Wine_Descriptor" VALUES(5665,2833,2); INSERT INTO "Wine_Descriptor" VALUES(5666,2833,3); INSERT INTO "Wine_Descriptor" VALUES(5667,2834,2); INSERT INTO "Wine_Descriptor" VALUES(5668,2834,3); INSERT INTO "Wine_Descriptor" VALUES(5669,2835,2); INSERT INTO "Wine_Descriptor" VALUES(5670,2835,3); INSERT INTO "Wine_Descriptor" VALUES(5671,2836,2); INSERT INTO "Wine_Descriptor" VALUES(5672,2836,3); INSERT INTO "Wine_Descriptor" VALUES(5673,2837,2); INSERT INTO "Wine_Descriptor" VALUES(5674,2837,3); INSERT INTO "Wine_Descriptor" VALUES(5675,2838,2); INSERT INTO "Wine_Descriptor" VALUES(5676,2838,3); INSERT INTO "Wine_Descriptor" VALUES(5677,2839,2); INSERT INTO "Wine_Descriptor" VALUES(5678,2839,3); INSERT INTO "Wine_Descriptor" VALUES(5679,2840,2); INSERT INTO "Wine_Descriptor" VALUES(5680,2840,3); INSERT INTO "Wine_Descriptor" VALUES(5681,2841,2); INSERT INTO "Wine_Descriptor" VALUES(5682,2841,3); INSERT INTO "Wine_Descriptor" VALUES(5683,2842,2); INSERT INTO "Wine_Descriptor" VALUES(5684,2842,3); INSERT INTO "Wine_Descriptor" VALUES(5685,2843,2); INSERT INTO "Wine_Descriptor" VALUES(5686,2843,3); INSERT INTO "Wine_Descriptor" VALUES(5687,2844,2); INSERT INTO "Wine_Descriptor" VALUES(5688,2844,3); INSERT INTO "Wine_Descriptor" VALUES(5689,2845,2); INSERT INTO "Wine_Descriptor" VALUES(5690,2845,3); INSERT INTO "Wine_Descriptor" VALUES(5691,2846,2); INSERT INTO "Wine_Descriptor" VALUES(5692,2846,3); INSERT INTO "Wine_Descriptor" VALUES(5693,2847,2); INSERT INTO "Wine_Descriptor" VALUES(5694,2847,3); INSERT INTO "Wine_Descriptor" VALUES(5695,2848,2); INSERT INTO "Wine_Descriptor" VALUES(5696,2848,3); INSERT INTO "Wine_Descriptor" VALUES(5697,2849,2); INSERT INTO "Wine_Descriptor" VALUES(5698,2849,3); INSERT INTO "Wine_Descriptor" VALUES(5699,2850,2); INSERT INTO "Wine_Descriptor" VALUES(5700,2850,3); INSERT INTO "Wine_Descriptor" VALUES(5701,2851,2); INSERT INTO "Wine_Descriptor" VALUES(5702,2851,3); INSERT INTO "Wine_Descriptor" VALUES(5703,2852,2); INSERT INTO "Wine_Descriptor" VALUES(5704,2852,3); INSERT INTO "Wine_Descriptor" VALUES(5705,2853,2); INSERT INTO "Wine_Descriptor" VALUES(5706,2853,3); INSERT INTO "Wine_Descriptor" VALUES(5707,2854,2); INSERT INTO "Wine_Descriptor" VALUES(5708,2854,3); INSERT INTO "Wine_Descriptor" VALUES(5709,2855,2); INSERT INTO "Wine_Descriptor" VALUES(5710,2855,3); INSERT INTO "Wine_Descriptor" VALUES(5711,2856,2); INSERT INTO "Wine_Descriptor" VALUES(5712,2856,3); INSERT INTO "Wine_Descriptor" VALUES(5713,2857,2); INSERT INTO "Wine_Descriptor" VALUES(5714,2857,3); INSERT INTO "Wine_Descriptor" VALUES(5715,2858,2); INSERT INTO "Wine_Descriptor" VALUES(5716,2858,3); INSERT INTO "Wine_Descriptor" VALUES(5717,2859,2); INSERT INTO "Wine_Descriptor" VALUES(5718,2859,3); INSERT INTO "Wine_Descriptor" VALUES(5719,2860,2); INSERT INTO "Wine_Descriptor" VALUES(5720,2860,3); INSERT INTO "Wine_Descriptor" VALUES(5721,2861,2); INSERT INTO "Wine_Descriptor" VALUES(5722,2861,3); INSERT INTO "Wine_Descriptor" VALUES(5723,2862,2); INSERT INTO "Wine_Descriptor" VALUES(5724,2862,3); INSERT INTO "Wine_Descriptor" VALUES(5725,2863,2); INSERT INTO "Wine_Descriptor" VALUES(5726,2863,3); INSERT INTO "Wine_Descriptor" VALUES(5727,2864,2); INSERT INTO "Wine_Descriptor" VALUES(5728,2864,3); INSERT INTO "Wine_Descriptor" VALUES(5729,2865,2); INSERT INTO "Wine_Descriptor" VALUES(5730,2865,3); INSERT INTO "Wine_Descriptor" VALUES(5731,2866,2); INSERT INTO "Wine_Descriptor" VALUES(5732,2866,3); INSERT INTO "Wine_Descriptor" VALUES(5733,2867,2); INSERT INTO "Wine_Descriptor" VALUES(5734,2867,3); INSERT INTO "Wine_Descriptor" VALUES(5735,2868,2); INSERT INTO "Wine_Descriptor" VALUES(5736,2868,3); INSERT INTO "Wine_Descriptor" VALUES(5737,2869,2); INSERT INTO "Wine_Descriptor" VALUES(5738,2869,3); INSERT INTO "Wine_Descriptor" VALUES(5739,2870,2); INSERT INTO "Wine_Descriptor" VALUES(5740,2870,3); INSERT INTO "Wine_Descriptor" VALUES(5741,2871,2); INSERT INTO "Wine_Descriptor" VALUES(5742,2871,3); INSERT INTO "Wine_Descriptor" VALUES(5743,2872,2); INSERT INTO "Wine_Descriptor" VALUES(5744,2872,3); INSERT INTO "Wine_Descriptor" VALUES(5745,2873,2); INSERT INTO "Wine_Descriptor" VALUES(5746,2873,3); INSERT INTO "Wine_Descriptor" VALUES(5747,2874,2); INSERT INTO "Wine_Descriptor" VALUES(5748,2874,3); INSERT INTO "Wine_Descriptor" VALUES(5749,2875,2); INSERT INTO "Wine_Descriptor" VALUES(5750,2875,3); INSERT INTO "Wine_Descriptor" VALUES(5751,2876,2); INSERT INTO "Wine_Descriptor" VALUES(5752,2876,3); INSERT INTO "Wine_Descriptor" VALUES(5753,2877,2); INSERT INTO "Wine_Descriptor" VALUES(5754,2877,3); INSERT INTO "Wine_Descriptor" VALUES(5755,2878,2); INSERT INTO "Wine_Descriptor" VALUES(5756,2878,3); INSERT INTO "Wine_Descriptor" VALUES(5757,2879,2); INSERT INTO "Wine_Descriptor" VALUES(5758,2879,3); INSERT INTO "Wine_Descriptor" VALUES(5759,2880,2); INSERT INTO "Wine_Descriptor" VALUES(5760,2880,3); INSERT INTO "Wine_Descriptor" VALUES(5761,2881,2); INSERT INTO "Wine_Descriptor" VALUES(5762,2881,3); INSERT INTO "Wine_Descriptor" VALUES(5763,2882,2); INSERT INTO "Wine_Descriptor" VALUES(5764,2882,3); INSERT INTO "Wine_Descriptor" VALUES(5765,2883,2); INSERT INTO "Wine_Descriptor" VALUES(5766,2883,3); INSERT INTO "Wine_Descriptor" VALUES(5767,2884,2); INSERT INTO "Wine_Descriptor" VALUES(5768,2884,3); INSERT INTO "Wine_Descriptor" VALUES(5769,2885,2); INSERT INTO "Wine_Descriptor" VALUES(5770,2885,3); INSERT INTO "Wine_Descriptor" VALUES(5771,2886,2); INSERT INTO "Wine_Descriptor" VALUES(5772,2886,3); INSERT INTO "Wine_Descriptor" VALUES(5773,2887,2); INSERT INTO "Wine_Descriptor" VALUES(5774,2887,3); INSERT INTO "Wine_Descriptor" VALUES(5775,2888,2); INSERT INTO "Wine_Descriptor" VALUES(5776,2888,3); INSERT INTO "Wine_Descriptor" VALUES(5777,2889,2); INSERT INTO "Wine_Descriptor" VALUES(5778,2889,3); INSERT INTO "Wine_Descriptor" VALUES(5779,2890,2); INSERT INTO "Wine_Descriptor" VALUES(5780,2890,3); INSERT INTO "Wine_Descriptor" VALUES(5781,2891,2); INSERT INTO "Wine_Descriptor" VALUES(5782,2891,3); INSERT INTO "Wine_Descriptor" VALUES(5783,2892,2); INSERT INTO "Wine_Descriptor" VALUES(5784,2892,3); INSERT INTO "Wine_Descriptor" VALUES(5785,2893,2); INSERT INTO "Wine_Descriptor" VALUES(5786,2893,3); INSERT INTO "Wine_Descriptor" VALUES(5787,2894,2); INSERT INTO "Wine_Descriptor" VALUES(5788,2894,3); INSERT INTO "Wine_Descriptor" VALUES(5789,2895,2); INSERT INTO "Wine_Descriptor" VALUES(5790,2895,3); INSERT INTO "Wine_Descriptor" VALUES(5791,2896,2); INSERT INTO "Wine_Descriptor" VALUES(5792,2896,3); INSERT INTO "Wine_Descriptor" VALUES(5793,2897,2); INSERT INTO "Wine_Descriptor" VALUES(5794,2897,3); INSERT INTO "Wine_Descriptor" VALUES(5795,2898,2); INSERT INTO "Wine_Descriptor" VALUES(5796,2898,3); INSERT INTO "Wine_Descriptor" VALUES(5797,2899,2); INSERT INTO "Wine_Descriptor" VALUES(5798,2899,3); INSERT INTO "Wine_Descriptor" VALUES(5799,2900,2); INSERT INTO "Wine_Descriptor" VALUES(5800,2900,3); INSERT INTO "Wine_Descriptor" VALUES(5801,2901,2); INSERT INTO "Wine_Descriptor" VALUES(5802,2901,3); INSERT INTO "Wine_Descriptor" VALUES(5803,2902,2); INSERT INTO "Wine_Descriptor" VALUES(5804,2902,3); INSERT INTO "Wine_Descriptor" VALUES(5805,2903,2); INSERT INTO "Wine_Descriptor" VALUES(5806,2903,3); INSERT INTO "Wine_Descriptor" VALUES(5807,2904,2); INSERT INTO "Wine_Descriptor" VALUES(5808,2904,3); INSERT INTO "Wine_Descriptor" VALUES(5809,2905,2); INSERT INTO "Wine_Descriptor" VALUES(5810,2905,3); INSERT INTO "Wine_Descriptor" VALUES(5811,2906,2); INSERT INTO "Wine_Descriptor" VALUES(5812,2906,3); INSERT INTO "Wine_Descriptor" VALUES(5813,2907,2); INSERT INTO "Wine_Descriptor" VALUES(5814,2907,3); INSERT INTO "Wine_Descriptor" VALUES(5815,2908,2); INSERT INTO "Wine_Descriptor" VALUES(5816,2908,3); INSERT INTO "Wine_Descriptor" VALUES(5817,2909,2); INSERT INTO "Wine_Descriptor" VALUES(5818,2909,3); INSERT INTO "Wine_Descriptor" VALUES(5819,2910,2); INSERT INTO "Wine_Descriptor" VALUES(5820,2910,3); INSERT INTO "Wine_Descriptor" VALUES(5821,2911,2); INSERT INTO "Wine_Descriptor" VALUES(5822,2911,3); INSERT INTO "Wine_Descriptor" VALUES(5823,2912,2); INSERT INTO "Wine_Descriptor" VALUES(5824,2912,3); INSERT INTO "Wine_Descriptor" VALUES(5825,2913,2); INSERT INTO "Wine_Descriptor" VALUES(5826,2913,3); INSERT INTO "Wine_Descriptor" VALUES(5827,2914,2); INSERT INTO "Wine_Descriptor" VALUES(5828,2914,3); INSERT INTO "Wine_Descriptor" VALUES(5829,2915,2); INSERT INTO "Wine_Descriptor" VALUES(5830,2915,3); INSERT INTO "Wine_Descriptor" VALUES(5831,2916,2); INSERT INTO "Wine_Descriptor" VALUES(5832,2916,3); INSERT INTO "Wine_Descriptor" VALUES(5833,2917,2); INSERT INTO "Wine_Descriptor" VALUES(5834,2917,3); INSERT INTO "Wine_Descriptor" VALUES(5835,2918,2); INSERT INTO "Wine_Descriptor" VALUES(5836,2918,3); INSERT INTO "Wine_Descriptor" VALUES(5837,2919,2); INSERT INTO "Wine_Descriptor" VALUES(5838,2919,3); INSERT INTO "Wine_Descriptor" VALUES(5839,2920,2); INSERT INTO "Wine_Descriptor" VALUES(5840,2920,3); INSERT INTO "Wine_Descriptor" VALUES(5841,2921,2); INSERT INTO "Wine_Descriptor" VALUES(5842,2921,3); INSERT INTO "Wine_Descriptor" VALUES(5843,2922,2); INSERT INTO "Wine_Descriptor" VALUES(5844,2922,3); INSERT INTO "Wine_Descriptor" VALUES(5845,2923,2); INSERT INTO "Wine_Descriptor" VALUES(5846,2923,3); INSERT INTO "Wine_Descriptor" VALUES(5847,2924,2); INSERT INTO "Wine_Descriptor" VALUES(5848,2924,3); INSERT INTO "Wine_Descriptor" VALUES(5849,2925,2); INSERT INTO "Wine_Descriptor" VALUES(5850,2925,3); INSERT INTO "Wine_Descriptor" VALUES(5851,2926,2); INSERT INTO "Wine_Descriptor" VALUES(5852,2926,3); INSERT INTO "Wine_Descriptor" VALUES(5853,2927,2); INSERT INTO "Wine_Descriptor" VALUES(5854,2927,3); INSERT INTO "Wine_Descriptor" VALUES(5855,2928,2); INSERT INTO "Wine_Descriptor" VALUES(5856,2928,3); INSERT INTO "Wine_Descriptor" VALUES(5857,2929,2); INSERT INTO "Wine_Descriptor" VALUES(5858,2929,3); INSERT INTO "Wine_Descriptor" VALUES(5859,2930,2); INSERT INTO "Wine_Descriptor" VALUES(5860,2930,3); INSERT INTO "Wine_Descriptor" VALUES(5861,2931,2); INSERT INTO "Wine_Descriptor" VALUES(5862,2931,3); INSERT INTO "Wine_Descriptor" VALUES(5863,2932,2); INSERT INTO "Wine_Descriptor" VALUES(5864,2932,3); INSERT INTO "Wine_Descriptor" VALUES(5865,2933,2); INSERT INTO "Wine_Descriptor" VALUES(5866,2933,3); INSERT INTO "Wine_Descriptor" VALUES(5867,2934,2); INSERT INTO "Wine_Descriptor" VALUES(5868,2934,3); INSERT INTO "Wine_Descriptor" VALUES(5869,2935,2); INSERT INTO "Wine_Descriptor" VALUES(5870,2935,3); INSERT INTO "Wine_Descriptor" VALUES(5871,2936,2); INSERT INTO "Wine_Descriptor" VALUES(5872,2936,3); INSERT INTO "Wine_Descriptor" VALUES(5873,2937,2); INSERT INTO "Wine_Descriptor" VALUES(5874,2937,3); INSERT INTO "Wine_Descriptor" VALUES(5875,2938,2); INSERT INTO "Wine_Descriptor" VALUES(5876,2938,3); INSERT INTO "Wine_Descriptor" VALUES(5877,2939,2); INSERT INTO "Wine_Descriptor" VALUES(5878,2939,3); INSERT INTO "Wine_Descriptor" VALUES(5879,2940,2); INSERT INTO "Wine_Descriptor" VALUES(5880,2940,3); INSERT INTO "Wine_Descriptor" VALUES(5881,2941,2); INSERT INTO "Wine_Descriptor" VALUES(5882,2941,3); INSERT INTO "Wine_Descriptor" VALUES(5883,2942,2); INSERT INTO "Wine_Descriptor" VALUES(5884,2942,3); INSERT INTO "Wine_Descriptor" VALUES(5885,2943,2); INSERT INTO "Wine_Descriptor" VALUES(5886,2943,3); INSERT INTO "Wine_Descriptor" VALUES(5887,2944,2); INSERT INTO "Wine_Descriptor" VALUES(5888,2944,3); INSERT INTO "Wine_Descriptor" VALUES(5889,2945,2); INSERT INTO "Wine_Descriptor" VALUES(5890,2945,3); INSERT INTO "Wine_Descriptor" VALUES(5891,2946,2); INSERT INTO "Wine_Descriptor" VALUES(5892,2946,3); INSERT INTO "Wine_Descriptor" VALUES(5893,2947,2); INSERT INTO "Wine_Descriptor" VALUES(5894,2947,3); INSERT INTO "Wine_Descriptor" VALUES(5895,2948,2); INSERT INTO "Wine_Descriptor" VALUES(5896,2948,3); INSERT INTO "Wine_Descriptor" VALUES(5897,2949,2); INSERT INTO "Wine_Descriptor" VALUES(5898,2949,3); INSERT INTO "Wine_Descriptor" VALUES(5899,2950,2); INSERT INTO "Wine_Descriptor" VALUES(5900,2950,3); INSERT INTO "Wine_Descriptor" VALUES(5901,2951,2); INSERT INTO "Wine_Descriptor" VALUES(5902,2951,3); INSERT INTO "Wine_Descriptor" VALUES(5903,2952,2); INSERT INTO "Wine_Descriptor" VALUES(5904,2952,3); INSERT INTO "Wine_Descriptor" VALUES(5905,2953,2); INSERT INTO "Wine_Descriptor" VALUES(5906,2953,3); INSERT INTO "Wine_Descriptor" VALUES(5907,2954,2); INSERT INTO "Wine_Descriptor" VALUES(5908,2954,3); INSERT INTO "Wine_Descriptor" VALUES(5909,2955,2); INSERT INTO "Wine_Descriptor" VALUES(5910,2955,3); INSERT INTO "Wine_Descriptor" VALUES(5911,2956,2); INSERT INTO "Wine_Descriptor" VALUES(5912,2956,3); INSERT INTO "Wine_Descriptor" VALUES(5913,2957,2); INSERT INTO "Wine_Descriptor" VALUES(5914,2957,3); INSERT INTO "Wine_Descriptor" VALUES(5915,2958,2); INSERT INTO "Wine_Descriptor" VALUES(5916,2958,3); INSERT INTO "Wine_Descriptor" VALUES(5917,2959,2); INSERT INTO "Wine_Descriptor" VALUES(5918,2959,3); INSERT INTO "Wine_Descriptor" VALUES(5919,2960,2); INSERT INTO "Wine_Descriptor" VALUES(5920,2960,3); INSERT INTO "Wine_Descriptor" VALUES(5921,2961,2); INSERT INTO "Wine_Descriptor" VALUES(5922,2961,3); INSERT INTO "Wine_Descriptor" VALUES(5923,2962,2); INSERT INTO "Wine_Descriptor" VALUES(5924,2962,3); INSERT INTO "Wine_Descriptor" VALUES(5925,2963,2); INSERT INTO "Wine_Descriptor" VALUES(5926,2963,3); INSERT INTO "Wine_Descriptor" VALUES(5927,2964,2); INSERT INTO "Wine_Descriptor" VALUES(5928,2964,3); INSERT INTO "Wine_Descriptor" VALUES(5929,2965,2); INSERT INTO "Wine_Descriptor" VALUES(5930,2965,3); INSERT INTO "Wine_Descriptor" VALUES(5931,2966,2); INSERT INTO "Wine_Descriptor" VALUES(5932,2966,3); INSERT INTO "Wine_Descriptor" VALUES(5933,2967,2); INSERT INTO "Wine_Descriptor" VALUES(5934,2967,3); INSERT INTO "Wine_Descriptor" VALUES(5935,2968,2); INSERT INTO "Wine_Descriptor" VALUES(5936,2968,3); INSERT INTO "Wine_Descriptor" VALUES(5937,2969,2); INSERT INTO "Wine_Descriptor" VALUES(5938,2969,3); INSERT INTO "Wine_Descriptor" VALUES(5939,2970,2); INSERT INTO "Wine_Descriptor" VALUES(5940,2970,3); INSERT INTO "Wine_Descriptor" VALUES(5941,2971,2); INSERT INTO "Wine_Descriptor" VALUES(5942,2971,3); INSERT INTO "Wine_Descriptor" VALUES(5943,2972,2); INSERT INTO "Wine_Descriptor" VALUES(5944,2972,3); INSERT INTO "Wine_Descriptor" VALUES(5945,2973,2); INSERT INTO "Wine_Descriptor" VALUES(5946,2973,3); INSERT INTO "Wine_Descriptor" VALUES(5947,2974,2); INSERT INTO "Wine_Descriptor" VALUES(5948,2974,3); INSERT INTO "Wine_Descriptor" VALUES(5949,2975,2); INSERT INTO "Wine_Descriptor" VALUES(5950,2975,3); INSERT INTO "Wine_Descriptor" VALUES(5951,2976,2); INSERT INTO "Wine_Descriptor" VALUES(5952,2976,3); INSERT INTO "Wine_Descriptor" VALUES(5953,2977,2); INSERT INTO "Wine_Descriptor" VALUES(5954,2977,3); INSERT INTO "Wine_Descriptor" VALUES(5955,2978,2); INSERT INTO "Wine_Descriptor" VALUES(5956,2978,3); INSERT INTO "Wine_Descriptor" VALUES(5957,2979,2); INSERT INTO "Wine_Descriptor" VALUES(5958,2979,3); INSERT INTO "Wine_Descriptor" VALUES(5959,2980,2); INSERT INTO "Wine_Descriptor" VALUES(5960,2980,3); INSERT INTO "Wine_Descriptor" VALUES(5961,2981,2); INSERT INTO "Wine_Descriptor" VALUES(5962,2981,3); INSERT INTO "Wine_Descriptor" VALUES(5963,2982,2); INSERT INTO "Wine_Descriptor" VALUES(5964,2982,3); INSERT INTO "Wine_Descriptor" VALUES(5965,2983,2); INSERT INTO "Wine_Descriptor" VALUES(5966,2983,3); INSERT INTO "Wine_Descriptor" VALUES(5967,2984,2); INSERT INTO "Wine_Descriptor" VALUES(5968,2984,3); INSERT INTO "Wine_Descriptor" VALUES(5969,2985,2); INSERT INTO "Wine_Descriptor" VALUES(5970,2985,3); INSERT INTO "Wine_Descriptor" VALUES(5971,2986,2); INSERT INTO "Wine_Descriptor" VALUES(5972,2986,3); INSERT INTO "Wine_Descriptor" VALUES(5973,2987,2); INSERT INTO "Wine_Descriptor" VALUES(5974,2987,3); INSERT INTO "Wine_Descriptor" VALUES(5975,2988,2); INSERT INTO "Wine_Descriptor" VALUES(5976,2988,3); INSERT INTO "Wine_Descriptor" VALUES(5977,2989,2); INSERT INTO "Wine_Descriptor" VALUES(5978,2989,3); INSERT INTO "Wine_Descriptor" VALUES(5979,2990,2); INSERT INTO "Wine_Descriptor" VALUES(5980,2990,3); INSERT INTO "Wine_Descriptor" VALUES(5981,2991,2); INSERT INTO "Wine_Descriptor" VALUES(5982,2991,3); INSERT INTO "Wine_Descriptor" VALUES(5983,2992,2); INSERT INTO "Wine_Descriptor" VALUES(5984,2992,3); INSERT INTO "Wine_Descriptor" VALUES(5985,2993,2); INSERT INTO "Wine_Descriptor" VALUES(5986,2993,3); INSERT INTO "Wine_Descriptor" VALUES(5987,2994,2); INSERT INTO "Wine_Descriptor" VALUES(5988,2994,3); INSERT INTO "Wine_Descriptor" VALUES(5989,2995,2); INSERT INTO "Wine_Descriptor" VALUES(5990,2995,3); INSERT INTO "Wine_Descriptor" VALUES(5991,2996,2); INSERT INTO "Wine_Descriptor" VALUES(5992,2996,3); INSERT INTO "Wine_Descriptor" VALUES(5993,2997,2); INSERT INTO "Wine_Descriptor" VALUES(5994,2997,3); INSERT INTO "Wine_Descriptor" VALUES(5995,2998,2); INSERT INTO "Wine_Descriptor" VALUES(5996,2998,3); INSERT INTO "Wine_Descriptor" VALUES(5997,2999,2); INSERT INTO "Wine_Descriptor" VALUES(5998,2999,3); INSERT INTO "Wine_Descriptor" VALUES(5999,3000,2); INSERT INTO "Wine_Descriptor" VALUES(6000,3000,3); INSERT INTO "Wine_Descriptor" VALUES(6001,3001,2); INSERT INTO "Wine_Descriptor" VALUES(6002,3001,3); INSERT INTO "Wine_Descriptor" VALUES(6003,3002,2); INSERT INTO "Wine_Descriptor" VALUES(6004,3002,3); INSERT INTO "Wine_Descriptor" VALUES(6005,3003,2); INSERT INTO "Wine_Descriptor" VALUES(6006,3003,3); INSERT INTO "Wine_Descriptor" VALUES(6007,3004,2); INSERT INTO "Wine_Descriptor" VALUES(6008,3004,3); INSERT INTO "Wine_Descriptor" VALUES(6009,3005,2); INSERT INTO "Wine_Descriptor" VALUES(6010,3005,3); INSERT INTO "Wine_Descriptor" VALUES(6011,3006,2); INSERT INTO "Wine_Descriptor" VALUES(6012,3006,3); INSERT INTO "Wine_Descriptor" VALUES(6013,3007,2); INSERT INTO "Wine_Descriptor" VALUES(6014,3007,3); INSERT INTO "Wine_Descriptor" VALUES(6015,3008,2); INSERT INTO "Wine_Descriptor" VALUES(6016,3008,3); INSERT INTO "Wine_Descriptor" VALUES(6017,3009,2); INSERT INTO "Wine_Descriptor" VALUES(6018,3009,3); INSERT INTO "Wine_Descriptor" VALUES(6019,3010,2); INSERT INTO "Wine_Descriptor" VALUES(6020,3010,3); INSERT INTO "Wine_Descriptor" VALUES(6021,3011,2); INSERT INTO "Wine_Descriptor" VALUES(6022,3011,3); INSERT INTO "Wine_Descriptor" VALUES(6023,3012,2); INSERT INTO "Wine_Descriptor" VALUES(6024,3012,3); INSERT INTO "Wine_Descriptor" VALUES(6025,3013,2); INSERT INTO "Wine_Descriptor" VALUES(6026,3013,3); INSERT INTO "Wine_Descriptor" VALUES(6027,3014,2); INSERT INTO "Wine_Descriptor" VALUES(6028,3014,3); INSERT INTO "Wine_Descriptor" VALUES(6029,3015,2); INSERT INTO "Wine_Descriptor" VALUES(6030,3015,3); INSERT INTO "Wine_Descriptor" VALUES(6031,3016,2); INSERT INTO "Wine_Descriptor" VALUES(6032,3016,3); INSERT INTO "Wine_Descriptor" VALUES(6033,3017,2); INSERT INTO "Wine_Descriptor" VALUES(6034,3017,3); INSERT INTO "Wine_Descriptor" VALUES(6035,3018,2); INSERT INTO "Wine_Descriptor" VALUES(6036,3018,3); INSERT INTO "Wine_Descriptor" VALUES(6037,3019,2); INSERT INTO "Wine_Descriptor" VALUES(6038,3019,3); INSERT INTO "Wine_Descriptor" VALUES(6039,3020,2); INSERT INTO "Wine_Descriptor" VALUES(6040,3020,3); INSERT INTO "Wine_Descriptor" VALUES(6041,3021,2); INSERT INTO "Wine_Descriptor" VALUES(6042,3021,3); INSERT INTO "Wine_Descriptor" VALUES(6043,3022,2); INSERT INTO "Wine_Descriptor" VALUES(6044,3022,3); INSERT INTO "Wine_Descriptor" VALUES(6045,3023,2); INSERT INTO "Wine_Descriptor" VALUES(6046,3023,3); INSERT INTO "Wine_Descriptor" VALUES(6047,3024,2); INSERT INTO "Wine_Descriptor" VALUES(6048,3024,3); INSERT INTO "Wine_Descriptor" VALUES(6049,3025,2); INSERT INTO "Wine_Descriptor" VALUES(6050,3025,3); INSERT INTO "Wine_Descriptor" VALUES(6051,3026,2); INSERT INTO "Wine_Descriptor" VALUES(6052,3026,3); INSERT INTO "Wine_Descriptor" VALUES(6053,3027,2); INSERT INTO "Wine_Descriptor" VALUES(6054,3027,3); INSERT INTO "Wine_Descriptor" VALUES(6055,3028,2); INSERT INTO "Wine_Descriptor" VALUES(6056,3028,3); INSERT INTO "Wine_Descriptor" VALUES(6057,3029,2); INSERT INTO "Wine_Descriptor" VALUES(6058,3029,3); INSERT INTO "Wine_Descriptor" VALUES(6059,3030,2); INSERT INTO "Wine_Descriptor" VALUES(6060,3030,3); INSERT INTO "Wine_Descriptor" VALUES(6061,3031,2); INSERT INTO "Wine_Descriptor" VALUES(6062,3031,3); INSERT INTO "Wine_Descriptor" VALUES(6063,3032,2); INSERT INTO "Wine_Descriptor" VALUES(6064,3032,3); INSERT INTO "Wine_Descriptor" VALUES(6065,3033,2); INSERT INTO "Wine_Descriptor" VALUES(6066,3033,3); INSERT INTO "Wine_Descriptor" VALUES(6067,3034,2); INSERT INTO "Wine_Descriptor" VALUES(6068,3034,3); INSERT INTO "Wine_Descriptor" VALUES(6069,3035,2); INSERT INTO "Wine_Descriptor" VALUES(6070,3035,3); INSERT INTO "Wine_Descriptor" VALUES(6071,3036,2); INSERT INTO "Wine_Descriptor" VALUES(6072,3036,3); INSERT INTO "Wine_Descriptor" VALUES(6073,3037,2); INSERT INTO "Wine_Descriptor" VALUES(6074,3037,3); INSERT INTO "Wine_Descriptor" VALUES(6075,3038,2); INSERT INTO "Wine_Descriptor" VALUES(6076,3038,3); INSERT INTO "Wine_Descriptor" VALUES(6077,3039,2); INSERT INTO "Wine_Descriptor" VALUES(6078,3039,3); INSERT INTO "Wine_Descriptor" VALUES(6079,3040,2); INSERT INTO "Wine_Descriptor" VALUES(6080,3040,3); INSERT INTO "Wine_Descriptor" VALUES(6081,3041,2); INSERT INTO "Wine_Descriptor" VALUES(6082,3041,3); INSERT INTO "Wine_Descriptor" VALUES(6083,3042,2); INSERT INTO "Wine_Descriptor" VALUES(6084,3042,3); INSERT INTO "Wine_Descriptor" VALUES(6085,3043,2); INSERT INTO "Wine_Descriptor" VALUES(6086,3043,3); INSERT INTO "Wine_Descriptor" VALUES(6087,3044,2); INSERT INTO "Wine_Descriptor" VALUES(6088,3044,3); INSERT INTO "Wine_Descriptor" VALUES(6089,3045,2); INSERT INTO "Wine_Descriptor" VALUES(6090,3045,3); INSERT INTO "Wine_Descriptor" VALUES(6091,3046,2); INSERT INTO "Wine_Descriptor" VALUES(6092,3046,3); INSERT INTO "Wine_Descriptor" VALUES(6093,3047,2); INSERT INTO "Wine_Descriptor" VALUES(6094,3047,3); INSERT INTO "Wine_Descriptor" VALUES(6095,3048,2); INSERT INTO "Wine_Descriptor" VALUES(6096,3048,3); INSERT INTO "Wine_Descriptor" VALUES(6097,3049,2); INSERT INTO "Wine_Descriptor" VALUES(6098,3049,3); INSERT INTO "Wine_Descriptor" VALUES(6099,3050,2); INSERT INTO "Wine_Descriptor" VALUES(6100,3050,3); INSERT INTO "Wine_Descriptor" VALUES(6101,3051,2); INSERT INTO "Wine_Descriptor" VALUES(6102,3051,3); INSERT INTO "Wine_Descriptor" VALUES(6103,3052,2); INSERT INTO "Wine_Descriptor" VALUES(6104,3052,3); INSERT INTO "Wine_Descriptor" VALUES(6105,3053,2); INSERT INTO "Wine_Descriptor" VALUES(6106,3053,3); INSERT INTO "Wine_Descriptor" VALUES(6107,3054,2); INSERT INTO "Wine_Descriptor" VALUES(6108,3054,3); INSERT INTO "Wine_Descriptor" VALUES(6109,3055,2); INSERT INTO "Wine_Descriptor" VALUES(6110,3055,3); INSERT INTO "Wine_Descriptor" VALUES(6111,3056,2); INSERT INTO "Wine_Descriptor" VALUES(6112,3056,3); INSERT INTO "Wine_Descriptor" VALUES(6113,3057,2); INSERT INTO "Wine_Descriptor" VALUES(6114,3057,3); INSERT INTO "Wine_Descriptor" VALUES(6115,3058,2); INSERT INTO "Wine_Descriptor" VALUES(6116,3058,3); INSERT INTO "Wine_Descriptor" VALUES(6117,3059,2); INSERT INTO "Wine_Descriptor" VALUES(6118,3059,3); INSERT INTO "Wine_Descriptor" VALUES(6119,3060,2); INSERT INTO "Wine_Descriptor" VALUES(6120,3060,3); INSERT INTO "Wine_Descriptor" VALUES(6121,3061,2); INSERT INTO "Wine_Descriptor" VALUES(6122,3061,3); INSERT INTO "Wine_Descriptor" VALUES(6123,3062,2); INSERT INTO "Wine_Descriptor" VALUES(6124,3062,3); INSERT INTO "Wine_Descriptor" VALUES(6125,3063,2); INSERT INTO "Wine_Descriptor" VALUES(6126,3063,3); INSERT INTO "Wine_Descriptor" VALUES(6127,3064,2); INSERT INTO "Wine_Descriptor" VALUES(6128,3064,3); INSERT INTO "Wine_Descriptor" VALUES(6129,3065,2); INSERT INTO "Wine_Descriptor" VALUES(6130,3065,3); INSERT INTO "Wine_Descriptor" VALUES(6131,3066,2); INSERT INTO "Wine_Descriptor" VALUES(6132,3066,3); INSERT INTO "Wine_Descriptor" VALUES(6133,3067,2); INSERT INTO "Wine_Descriptor" VALUES(6134,3067,3); INSERT INTO "Wine_Descriptor" VALUES(6135,3068,2); INSERT INTO "Wine_Descriptor" VALUES(6136,3068,3); INSERT INTO "Wine_Descriptor" VALUES(6137,3069,2); INSERT INTO "Wine_Descriptor" VALUES(6138,3069,3); INSERT INTO "Wine_Descriptor" VALUES(6139,3070,2); INSERT INTO "Wine_Descriptor" VALUES(6140,3070,3); INSERT INTO "Wine_Descriptor" VALUES(6141,3071,2); INSERT INTO "Wine_Descriptor" VALUES(6142,3071,3); INSERT INTO "Wine_Descriptor" VALUES(6143,3072,2); INSERT INTO "Wine_Descriptor" VALUES(6144,3072,3); INSERT INTO "Wine_Descriptor" VALUES(6145,3073,2); INSERT INTO "Wine_Descriptor" VALUES(6146,3073,3); INSERT INTO "Wine_Descriptor" VALUES(6147,3074,2); INSERT INTO "Wine_Descriptor" VALUES(6148,3074,3); INSERT INTO "Wine_Descriptor" VALUES(6149,3075,2); INSERT INTO "Wine_Descriptor" VALUES(6150,3075,3); INSERT INTO "Wine_Descriptor" VALUES(6151,3076,2); INSERT INTO "Wine_Descriptor" VALUES(6152,3076,3); INSERT INTO "Wine_Descriptor" VALUES(6153,3077,2); INSERT INTO "Wine_Descriptor" VALUES(6154,3077,3); INSERT INTO "Wine_Descriptor" VALUES(6155,3078,2); INSERT INTO "Wine_Descriptor" VALUES(6156,3078,3); INSERT INTO "Wine_Descriptor" VALUES(6157,3079,2); INSERT INTO "Wine_Descriptor" VALUES(6158,3079,3); INSERT INTO "Wine_Descriptor" VALUES(6159,3080,2); INSERT INTO "Wine_Descriptor" VALUES(6160,3080,3); INSERT INTO "Wine_Descriptor" VALUES(6161,3081,2); INSERT INTO "Wine_Descriptor" VALUES(6162,3081,3); INSERT INTO "Wine_Descriptor" VALUES(6163,3082,2); INSERT INTO "Wine_Descriptor" VALUES(6164,3082,3); INSERT INTO "Wine_Descriptor" VALUES(6165,3083,2); INSERT INTO "Wine_Descriptor" VALUES(6166,3083,3); INSERT INTO "Wine_Descriptor" VALUES(6167,3084,2); INSERT INTO "Wine_Descriptor" VALUES(6168,3084,3); INSERT INTO "Wine_Descriptor" VALUES(6169,3085,2); INSERT INTO "Wine_Descriptor" VALUES(6170,3085,3); INSERT INTO "Wine_Descriptor" VALUES(6171,3086,2); INSERT INTO "Wine_Descriptor" VALUES(6172,3086,3); INSERT INTO "Wine_Descriptor" VALUES(6173,3087,2); INSERT INTO "Wine_Descriptor" VALUES(6174,3087,3); INSERT INTO "Wine_Descriptor" VALUES(6175,3088,2); INSERT INTO "Wine_Descriptor" VALUES(6176,3088,3); INSERT INTO "Wine_Descriptor" VALUES(6177,3089,2); INSERT INTO "Wine_Descriptor" VALUES(6178,3089,3); INSERT INTO "Wine_Descriptor" VALUES(6179,3090,2); INSERT INTO "Wine_Descriptor" VALUES(6180,3090,3); INSERT INTO "Wine_Descriptor" VALUES(6181,3091,2); INSERT INTO "Wine_Descriptor" VALUES(6182,3091,3); INSERT INTO "Wine_Descriptor" VALUES(6183,3092,2); INSERT INTO "Wine_Descriptor" VALUES(6184,3092,3); INSERT INTO "Wine_Descriptor" VALUES(6185,3093,2); INSERT INTO "Wine_Descriptor" VALUES(6186,3093,3); INSERT INTO "Wine_Descriptor" VALUES(6187,3094,2); INSERT INTO "Wine_Descriptor" VALUES(6188,3094,3); INSERT INTO "Wine_Descriptor" VALUES(6189,3095,2); INSERT INTO "Wine_Descriptor" VALUES(6190,3095,3); INSERT INTO "Wine_Descriptor" VALUES(6191,3096,2); INSERT INTO "Wine_Descriptor" VALUES(6192,3096,3); INSERT INTO "Wine_Descriptor" VALUES(6193,3097,2); INSERT INTO "Wine_Descriptor" VALUES(6194,3097,3); INSERT INTO "Wine_Descriptor" VALUES(6195,3098,2); INSERT INTO "Wine_Descriptor" VALUES(6196,3098,3); INSERT INTO "Wine_Descriptor" VALUES(6197,3099,2); INSERT INTO "Wine_Descriptor" VALUES(6198,3099,3); INSERT INTO "Wine_Descriptor" VALUES(6199,3100,2); INSERT INTO "Wine_Descriptor" VALUES(6200,3100,3); INSERT INTO "Wine_Descriptor" VALUES(6201,3101,2); INSERT INTO "Wine_Descriptor" VALUES(6202,3101,3); INSERT INTO "Wine_Descriptor" VALUES(6203,3102,2); INSERT INTO "Wine_Descriptor" VALUES(6204,3102,3); INSERT INTO "Wine_Descriptor" VALUES(6205,3103,2); INSERT INTO "Wine_Descriptor" VALUES(6206,3103,3); INSERT INTO "Wine_Descriptor" VALUES(6207,3104,2); INSERT INTO "Wine_Descriptor" VALUES(6208,3104,3); INSERT INTO "Wine_Descriptor" VALUES(6209,3105,2); INSERT INTO "Wine_Descriptor" VALUES(6210,3105,3); INSERT INTO "Wine_Descriptor" VALUES(6211,3106,2); INSERT INTO "Wine_Descriptor" VALUES(6212,3106,3); INSERT INTO "Wine_Descriptor" VALUES(6213,3107,2); INSERT INTO "Wine_Descriptor" VALUES(6214,3107,3); INSERT INTO "Wine_Descriptor" VALUES(6215,3108,2); INSERT INTO "Wine_Descriptor" VALUES(6216,3108,3); INSERT INTO "Wine_Descriptor" VALUES(6217,3109,2); INSERT INTO "Wine_Descriptor" VALUES(6218,3109,3); INSERT INTO "Wine_Descriptor" VALUES(6219,3110,2); INSERT INTO "Wine_Descriptor" VALUES(6220,3110,3); INSERT INTO "Wine_Descriptor" VALUES(6221,3111,2); INSERT INTO "Wine_Descriptor" VALUES(6222,3111,3); INSERT INTO "Wine_Descriptor" VALUES(6223,3112,2); INSERT INTO "Wine_Descriptor" VALUES(6224,3112,3); INSERT INTO "Wine_Descriptor" VALUES(6225,3113,2); INSERT INTO "Wine_Descriptor" VALUES(6226,3113,3); INSERT INTO "Wine_Descriptor" VALUES(6227,3114,2); INSERT INTO "Wine_Descriptor" VALUES(6228,3114,3); INSERT INTO "Wine_Descriptor" VALUES(6229,3115,2); INSERT INTO "Wine_Descriptor" VALUES(6230,3115,3); INSERT INTO "Wine_Descriptor" VALUES(6231,3116,2); INSERT INTO "Wine_Descriptor" VALUES(6232,3116,3); INSERT INTO "Wine_Descriptor" VALUES(6233,3117,2); INSERT INTO "Wine_Descriptor" VALUES(6234,3117,3); INSERT INTO "Wine_Descriptor" VALUES(6235,3118,2); INSERT INTO "Wine_Descriptor" VALUES(6236,3118,3); INSERT INTO "Wine_Descriptor" VALUES(6237,3119,2); INSERT INTO "Wine_Descriptor" VALUES(6238,3119,3); INSERT INTO "Wine_Descriptor" VALUES(6239,3120,2); INSERT INTO "Wine_Descriptor" VALUES(6240,3120,3); INSERT INTO "Wine_Descriptor" VALUES(6241,3121,2); INSERT INTO "Wine_Descriptor" VALUES(6242,3121,3); INSERT INTO "Wine_Descriptor" VALUES(6243,3122,2); INSERT INTO "Wine_Descriptor" VALUES(6244,3122,3); INSERT INTO "Wine_Descriptor" VALUES(6245,3123,2); INSERT INTO "Wine_Descriptor" VALUES(6246,3123,3); INSERT INTO "Wine_Descriptor" VALUES(6247,3124,2); INSERT INTO "Wine_Descriptor" VALUES(6248,3124,3); INSERT INTO "Wine_Descriptor" VALUES(6249,3125,2); INSERT INTO "Wine_Descriptor" VALUES(6250,3125,3); INSERT INTO "Wine_Descriptor" VALUES(6251,3126,2); INSERT INTO "Wine_Descriptor" VALUES(6252,3126,3); INSERT INTO "Wine_Descriptor" VALUES(6253,3127,2); INSERT INTO "Wine_Descriptor" VALUES(6254,3127,3); INSERT INTO "Wine_Descriptor" VALUES(6255,3128,2); INSERT INTO "Wine_Descriptor" VALUES(6256,3128,3); INSERT INTO "Wine_Descriptor" VALUES(6257,3129,2); INSERT INTO "Wine_Descriptor" VALUES(6258,3129,3); INSERT INTO "Wine_Descriptor" VALUES(6259,3130,2); INSERT INTO "Wine_Descriptor" VALUES(6260,3130,3); INSERT INTO "Wine_Descriptor" VALUES(6261,3131,2); INSERT INTO "Wine_Descriptor" VALUES(6262,3131,3); INSERT INTO "Wine_Descriptor" VALUES(6263,3132,2); INSERT INTO "Wine_Descriptor" VALUES(6264,3132,3); INSERT INTO "Wine_Descriptor" VALUES(6265,3133,2); INSERT INTO "Wine_Descriptor" VALUES(6266,3133,3); INSERT INTO "Wine_Descriptor" VALUES(6267,3134,2); INSERT INTO "Wine_Descriptor" VALUES(6268,3134,3); INSERT INTO "Wine_Descriptor" VALUES(6269,3135,2); INSERT INTO "Wine_Descriptor" VALUES(6270,3135,3); INSERT INTO "Wine_Descriptor" VALUES(6271,3136,2); INSERT INTO "Wine_Descriptor" VALUES(6272,3136,3); INSERT INTO "Wine_Descriptor" VALUES(6273,3137,2); INSERT INTO "Wine_Descriptor" VALUES(6274,3137,3); INSERT INTO "Wine_Descriptor" VALUES(6275,3138,2); INSERT INTO "Wine_Descriptor" VALUES(6276,3138,3); INSERT INTO "Wine_Descriptor" VALUES(6277,3139,2); INSERT INTO "Wine_Descriptor" VALUES(6278,3139,3); INSERT INTO "Wine_Descriptor" VALUES(6279,3140,2); INSERT INTO "Wine_Descriptor" VALUES(6280,3140,3); INSERT INTO "Wine_Descriptor" VALUES(6281,3141,2); INSERT INTO "Wine_Descriptor" VALUES(6282,3141,3); INSERT INTO "Wine_Descriptor" VALUES(6283,3142,2); INSERT INTO "Wine_Descriptor" VALUES(6284,3142,3); INSERT INTO "Wine_Descriptor" VALUES(6285,3143,2); INSERT INTO "Wine_Descriptor" VALUES(6286,3143,3); INSERT INTO "Wine_Descriptor" VALUES(6287,3144,2); INSERT INTO "Wine_Descriptor" VALUES(6288,3144,3); INSERT INTO "Wine_Descriptor" VALUES(6289,3145,2); INSERT INTO "Wine_Descriptor" VALUES(6290,3145,3); INSERT INTO "Wine_Descriptor" VALUES(6291,3146,2); INSERT INTO "Wine_Descriptor" VALUES(6292,3146,3); INSERT INTO "Wine_Descriptor" VALUES(6293,3147,2); INSERT INTO "Wine_Descriptor" VALUES(6294,3147,3); INSERT INTO "Wine_Descriptor" VALUES(6295,3148,2); INSERT INTO "Wine_Descriptor" VALUES(6296,3148,3); INSERT INTO "Wine_Descriptor" VALUES(6297,3149,2); INSERT INTO "Wine_Descriptor" VALUES(6298,3149,3); INSERT INTO "Wine_Descriptor" VALUES(6299,3150,2); INSERT INTO "Wine_Descriptor" VALUES(6300,3150,3); INSERT INTO "Wine_Descriptor" VALUES(6301,3151,2); INSERT INTO "Wine_Descriptor" VALUES(6302,3151,3); INSERT INTO "Wine_Descriptor" VALUES(6303,3152,2); INSERT INTO "Wine_Descriptor" VALUES(6304,3152,3); INSERT INTO "Wine_Descriptor" VALUES(6305,3153,2); INSERT INTO "Wine_Descriptor" VALUES(6306,3153,3); INSERT INTO "Wine_Descriptor" VALUES(6307,3154,2); INSERT INTO "Wine_Descriptor" VALUES(6308,3154,3); INSERT INTO "Wine_Descriptor" VALUES(6309,3155,2); INSERT INTO "Wine_Descriptor" VALUES(6310,3155,3); INSERT INTO "Wine_Descriptor" VALUES(6311,3156,2); INSERT INTO "Wine_Descriptor" VALUES(6312,3156,3); INSERT INTO "Wine_Descriptor" VALUES(6313,3157,2); INSERT INTO "Wine_Descriptor" VALUES(6314,3157,3); INSERT INTO "Wine_Descriptor" VALUES(6315,3158,2); INSERT INTO "Wine_Descriptor" VALUES(6316,3158,3); INSERT INTO "Wine_Descriptor" VALUES(6317,3159,2); INSERT INTO "Wine_Descriptor" VALUES(6318,3159,3); INSERT INTO "Wine_Descriptor" VALUES(6319,3160,2); INSERT INTO "Wine_Descriptor" VALUES(6320,3160,3); INSERT INTO "Wine_Descriptor" VALUES(6321,3161,2); INSERT INTO "Wine_Descriptor" VALUES(6322,3161,3); INSERT INTO "Wine_Descriptor" VALUES(6323,3162,2); INSERT INTO "Wine_Descriptor" VALUES(6324,3162,3); INSERT INTO "Wine_Descriptor" VALUES(6325,3163,2); INSERT INTO "Wine_Descriptor" VALUES(6326,3163,3); INSERT INTO "Wine_Descriptor" VALUES(6327,3164,2); INSERT INTO "Wine_Descriptor" VALUES(6328,3164,3); INSERT INTO "Wine_Descriptor" VALUES(6329,3165,2); INSERT INTO "Wine_Descriptor" VALUES(6330,3165,3); INSERT INTO "Wine_Descriptor" VALUES(6331,3166,2); INSERT INTO "Wine_Descriptor" VALUES(6332,3166,3); INSERT INTO "Wine_Descriptor" VALUES(6333,3167,2); INSERT INTO "Wine_Descriptor" VALUES(6334,3167,3); INSERT INTO "Wine_Descriptor" VALUES(6335,3168,2); INSERT INTO "Wine_Descriptor" VALUES(6336,3168,3); INSERT INTO "Wine_Descriptor" VALUES(6337,3169,2); INSERT INTO "Wine_Descriptor" VALUES(6338,3169,3); INSERT INTO "Wine_Descriptor" VALUES(6339,3170,2); INSERT INTO "Wine_Descriptor" VALUES(6340,3170,3); INSERT INTO "Wine_Descriptor" VALUES(6341,3171,2); INSERT INTO "Wine_Descriptor" VALUES(6342,3171,3); INSERT INTO "Wine_Descriptor" VALUES(6343,3172,2); INSERT INTO "Wine_Descriptor" VALUES(6344,3172,3); INSERT INTO "Wine_Descriptor" VALUES(6345,3173,2); INSERT INTO "Wine_Descriptor" VALUES(6346,3173,3); INSERT INTO "Wine_Descriptor" VALUES(6347,3174,2); INSERT INTO "Wine_Descriptor" VALUES(6348,3174,3); INSERT INTO "Wine_Descriptor" VALUES(6349,3175,2); INSERT INTO "Wine_Descriptor" VALUES(6350,3175,3); INSERT INTO "Wine_Descriptor" VALUES(6351,3176,2); INSERT INTO "Wine_Descriptor" VALUES(6352,3176,3); INSERT INTO "Wine_Descriptor" VALUES(6353,3177,2); INSERT INTO "Wine_Descriptor" VALUES(6354,3177,3); INSERT INTO "Wine_Descriptor" VALUES(6355,3178,2); INSERT INTO "Wine_Descriptor" VALUES(6356,3178,3); INSERT INTO "Wine_Descriptor" VALUES(6357,3179,2); INSERT INTO "Wine_Descriptor" VALUES(6358,3179,3); INSERT INTO "Wine_Descriptor" VALUES(6359,3180,2); INSERT INTO "Wine_Descriptor" VALUES(6360,3180,3); INSERT INTO "Wine_Descriptor" VALUES(6361,3181,2); INSERT INTO "Wine_Descriptor" VALUES(6362,3181,3); INSERT INTO "Wine_Descriptor" VALUES(6363,3182,2); INSERT INTO "Wine_Descriptor" VALUES(6364,3182,3); INSERT INTO "Wine_Descriptor" VALUES(6365,3183,2); INSERT INTO "Wine_Descriptor" VALUES(6366,3183,3); INSERT INTO "Wine_Descriptor" VALUES(6367,3184,2); INSERT INTO "Wine_Descriptor" VALUES(6368,3184,3); INSERT INTO "Wine_Descriptor" VALUES(6369,3185,2); INSERT INTO "Wine_Descriptor" VALUES(6370,3185,3); INSERT INTO "Wine_Descriptor" VALUES(6371,3186,2); INSERT INTO "Wine_Descriptor" VALUES(6372,3186,3); INSERT INTO "Wine_Descriptor" VALUES(6373,3187,2); INSERT INTO "Wine_Descriptor" VALUES(6374,3187,3); INSERT INTO "Wine_Descriptor" VALUES(6375,3188,2); INSERT INTO "Wine_Descriptor" VALUES(6376,3188,3); INSERT INTO "Wine_Descriptor" VALUES(6377,3189,2); INSERT INTO "Wine_Descriptor" VALUES(6378,3189,3); INSERT INTO "Wine_Descriptor" VALUES(6379,3190,2); INSERT INTO "Wine_Descriptor" VALUES(6380,3190,3); INSERT INTO "Wine_Descriptor" VALUES(6381,3191,2); INSERT INTO "Wine_Descriptor" VALUES(6382,3191,3); INSERT INTO "Wine_Descriptor" VALUES(6383,3192,2); INSERT INTO "Wine_Descriptor" VALUES(6384,3192,3); INSERT INTO "Wine_Descriptor" VALUES(6385,3193,2); INSERT INTO "Wine_Descriptor" VALUES(6386,3193,3); INSERT INTO "Wine_Descriptor" VALUES(6387,3194,2); INSERT INTO "Wine_Descriptor" VALUES(6388,3194,3); INSERT INTO "Wine_Descriptor" VALUES(6389,3195,2); INSERT INTO "Wine_Descriptor" VALUES(6390,3195,3); INSERT INTO "Wine_Descriptor" VALUES(6391,3196,2); INSERT INTO "Wine_Descriptor" VALUES(6392,3196,3); INSERT INTO "Wine_Descriptor" VALUES(6393,3197,2); INSERT INTO "Wine_Descriptor" VALUES(6394,3197,3); INSERT INTO "Wine_Descriptor" VALUES(6395,3198,2); INSERT INTO "Wine_Descriptor" VALUES(6396,3198,3); INSERT INTO "Wine_Descriptor" VALUES(6397,3199,2); INSERT INTO "Wine_Descriptor" VALUES(6398,3199,3); INSERT INTO "Wine_Descriptor" VALUES(6399,3200,2); INSERT INTO "Wine_Descriptor" VALUES(6400,3200,3); INSERT INTO "Wine_Descriptor" VALUES(6401,3201,2); INSERT INTO "Wine_Descriptor" VALUES(6402,3201,3); INSERT INTO "Wine_Descriptor" VALUES(6403,3202,2); INSERT INTO "Wine_Descriptor" VALUES(6404,3202,3); INSERT INTO "Wine_Descriptor" VALUES(6405,3203,2); INSERT INTO "Wine_Descriptor" VALUES(6406,3203,3); INSERT INTO "Wine_Descriptor" VALUES(6407,3204,2); INSERT INTO "Wine_Descriptor" VALUES(6408,3204,3); INSERT INTO "Wine_Descriptor" VALUES(6409,3205,2); INSERT INTO "Wine_Descriptor" VALUES(6410,3205,3); INSERT INTO "Wine_Descriptor" VALUES(6411,3206,2); INSERT INTO "Wine_Descriptor" VALUES(6412,3206,3); INSERT INTO "Wine_Descriptor" VALUES(6413,3207,2); INSERT INTO "Wine_Descriptor" VALUES(6414,3207,3); INSERT INTO "Wine_Descriptor" VALUES(6415,3208,2); INSERT INTO "Wine_Descriptor" VALUES(6416,3208,3); INSERT INTO "Wine_Descriptor" VALUES(6417,3209,2); INSERT INTO "Wine_Descriptor" VALUES(6418,3209,3); INSERT INTO "Wine_Descriptor" VALUES(6419,3210,2); INSERT INTO "Wine_Descriptor" VALUES(6420,3210,3); INSERT INTO "Wine_Descriptor" VALUES(6421,3211,2); INSERT INTO "Wine_Descriptor" VALUES(6422,3211,3); INSERT INTO "Wine_Descriptor" VALUES(6423,3212,2); INSERT INTO "Wine_Descriptor" VALUES(6424,3212,3); INSERT INTO "Wine_Descriptor" VALUES(6425,3213,2); INSERT INTO "Wine_Descriptor" VALUES(6426,3213,3); INSERT INTO "Wine_Descriptor" VALUES(6427,3214,2); INSERT INTO "Wine_Descriptor" VALUES(6428,3214,3); INSERT INTO "Wine_Descriptor" VALUES(6429,3215,2); INSERT INTO "Wine_Descriptor" VALUES(6430,3215,3); INSERT INTO "Wine_Descriptor" VALUES(6431,3216,2); INSERT INTO "Wine_Descriptor" VALUES(6432,3216,3); INSERT INTO "Wine_Descriptor" VALUES(6433,3217,2); INSERT INTO "Wine_Descriptor" VALUES(6434,3217,3); INSERT INTO "Wine_Descriptor" VALUES(6435,3218,2); INSERT INTO "Wine_Descriptor" VALUES(6436,3218,3); INSERT INTO "Wine_Descriptor" VALUES(6437,3219,2); INSERT INTO "Wine_Descriptor" VALUES(6438,3219,3); INSERT INTO "Wine_Descriptor" VALUES(6439,3220,2); INSERT INTO "Wine_Descriptor" VALUES(6440,3220,3); INSERT INTO "Wine_Descriptor" VALUES(6441,3221,2); INSERT INTO "Wine_Descriptor" VALUES(6442,3221,3); INSERT INTO "Wine_Descriptor" VALUES(6443,3222,2); INSERT INTO "Wine_Descriptor" VALUES(6444,3222,3); INSERT INTO "Wine_Descriptor" VALUES(6445,3223,2); INSERT INTO "Wine_Descriptor" VALUES(6446,3223,3); INSERT INTO "Wine_Descriptor" VALUES(6447,3224,2); INSERT INTO "Wine_Descriptor" VALUES(6448,3224,3); INSERT INTO "Wine_Descriptor" VALUES(6449,3225,2); INSERT INTO "Wine_Descriptor" VALUES(6450,3225,3); CREATE TABLE Wine_Vineyard (_id INTEGER PRIMARY KEY AUTOINCREMENT, Wine_ID INTEGER REFERENCES Wine(ID) ON DELETE CASCADE, Vineyard_ID INTEGER REFERENCES Vineyard(ID) ON DELETE CASCADE); INSERT INTO "Wine_Vineyard" VALUES(1,1,1); INSERT INTO "Wine_Vineyard" VALUES(2,2,2); INSERT INTO "Wine_Vineyard" VALUES(3,3,3); INSERT INTO "Wine_Vineyard" VALUES(4,4,4); INSERT INTO "Wine_Vineyard" VALUES(5,5,5); INSERT INTO "Wine_Vineyard" VALUES(6,6,6); INSERT INTO "Wine_Vineyard" VALUES(7,7,7); INSERT INTO "Wine_Vineyard" VALUES(8,8,8); INSERT INTO "Wine_Vineyard" VALUES(9,9,9); INSERT INTO "Wine_Vineyard" VALUES(10,10,10); INSERT INTO "Wine_Vineyard" VALUES(11,11,11); INSERT INTO "Wine_Vineyard" VALUES(12,12,12); INSERT INTO "Wine_Vineyard" VALUES(13,13,13); INSERT INTO "Wine_Vineyard" VALUES(14,14,1); INSERT INTO "Wine_Vineyard" VALUES(15,15,14); INSERT INTO "Wine_Vineyard" VALUES(16,16,3); INSERT INTO "Wine_Vineyard" VALUES(17,17,15); INSERT INTO "Wine_Vineyard" VALUES(18,18,16); INSERT INTO "Wine_Vineyard" VALUES(19,19,17); INSERT INTO "Wine_Vineyard" VALUES(20,20,18); INSERT INTO "Wine_Vineyard" VALUES(21,21,19); INSERT INTO "Wine_Vineyard" VALUES(22,22,20); INSERT INTO "Wine_Vineyard" VALUES(23,23,21); INSERT INTO "Wine_Vineyard" VALUES(24,24,22); INSERT INTO "Wine_Vineyard" VALUES(25,25,23); INSERT INTO "Wine_Vineyard" VALUES(26,26,24); INSERT INTO "Wine_Vineyard" VALUES(27,27,25); INSERT INTO "Wine_Vineyard" VALUES(28,28,26); INSERT INTO "Wine_Vineyard" VALUES(29,29,27); INSERT INTO "Wine_Vineyard" VALUES(30,30,28); INSERT INTO "Wine_Vineyard" VALUES(31,31,29); INSERT INTO "Wine_Vineyard" VALUES(32,32,30); INSERT INTO "Wine_Vineyard" VALUES(33,33,31); INSERT INTO "Wine_Vineyard" VALUES(34,34,32); INSERT INTO "Wine_Vineyard" VALUES(35,35,33); INSERT INTO "Wine_Vineyard" VALUES(36,36,34); INSERT INTO "Wine_Vineyard" VALUES(37,37,35); INSERT INTO "Wine_Vineyard" VALUES(38,38,36); INSERT INTO "Wine_Vineyard" VALUES(39,39,37); INSERT INTO "Wine_Vineyard" VALUES(40,40,38); INSERT INTO "Wine_Vineyard" VALUES(41,41,10); INSERT INTO "Wine_Vineyard" VALUES(42,42,39); INSERT INTO "Wine_Vineyard" VALUES(43,43,28); INSERT INTO "Wine_Vineyard" VALUES(44,44,40); INSERT INTO "Wine_Vineyard" VALUES(45,45,41); INSERT INTO "Wine_Vineyard" VALUES(46,46,42); INSERT INTO "Wine_Vineyard" VALUES(47,47,43); INSERT INTO "Wine_Vineyard" VALUES(48,48,44); INSERT INTO "Wine_Vineyard" VALUES(49,49,45); INSERT INTO "Wine_Vineyard" VALUES(50,50,46); INSERT INTO "Wine_Vineyard" VALUES(51,51,47); INSERT INTO "Wine_Vineyard" VALUES(52,52,48); INSERT INTO "Wine_Vineyard" VALUES(53,53,49); INSERT INTO "Wine_Vineyard" VALUES(54,54,50); INSERT INTO "Wine_Vineyard" VALUES(55,55,51); INSERT INTO "Wine_Vineyard" VALUES(56,56,52); INSERT INTO "Wine_Vineyard" VALUES(57,57,53); INSERT INTO "Wine_Vineyard" VALUES(58,58,54); INSERT INTO "Wine_Vineyard" VALUES(59,59,55); INSERT INTO "Wine_Vineyard" VALUES(60,60,56); INSERT INTO "Wine_Vineyard" VALUES(61,61,57); INSERT INTO "Wine_Vineyard" VALUES(62,62,17); INSERT INTO "Wine_Vineyard" VALUES(63,63,58); INSERT INTO "Wine_Vineyard" VALUES(64,64,59); INSERT INTO "Wine_Vineyard" VALUES(65,65,60); INSERT INTO "Wine_Vineyard" VALUES(66,66,28); INSERT INTO "Wine_Vineyard" VALUES(67,67,61); INSERT INTO "Wine_Vineyard" VALUES(68,68,62); INSERT INTO "Wine_Vineyard" VALUES(69,69,20); INSERT INTO "Wine_Vineyard" VALUES(70,70,63); INSERT INTO "Wine_Vineyard" VALUES(71,71,64); INSERT INTO "Wine_Vineyard" VALUES(72,72,65); INSERT INTO "Wine_Vineyard" VALUES(73,73,66); INSERT INTO "Wine_Vineyard" VALUES(74,74,67); INSERT INTO "Wine_Vineyard" VALUES(75,75,68); INSERT INTO "Wine_Vineyard" VALUES(76,76,69); INSERT INTO "Wine_Vineyard" VALUES(77,77,70); INSERT INTO "Wine_Vineyard" VALUES(78,78,71); INSERT INTO "Wine_Vineyard" VALUES(79,79,72); INSERT INTO "Wine_Vineyard" VALUES(80,80,73); INSERT INTO "Wine_Vineyard" VALUES(81,81,74); INSERT INTO "Wine_Vineyard" VALUES(82,82,75); INSERT INTO "Wine_Vineyard" VALUES(83,83,76); INSERT INTO "Wine_Vineyard" VALUES(84,84,77); INSERT INTO "Wine_Vineyard" VALUES(85,85,78); INSERT INTO "Wine_Vineyard" VALUES(86,86,79); INSERT INTO "Wine_Vineyard" VALUES(87,87,9); INSERT INTO "Wine_Vineyard" VALUES(88,88,80); INSERT INTO "Wine_Vineyard" VALUES(89,89,81); INSERT INTO "Wine_Vineyard" VALUES(90,90,15); INSERT INTO "Wine_Vineyard" VALUES(91,91,37); INSERT INTO "Wine_Vineyard" VALUES(92,92,34); INSERT INTO "Wine_Vineyard" VALUES(93,93,82); INSERT INTO "Wine_Vineyard" VALUES(94,94,83); INSERT INTO "Wine_Vineyard" VALUES(95,95,84); INSERT INTO "Wine_Vineyard" VALUES(96,96,17); INSERT INTO "Wine_Vineyard" VALUES(97,97,85); INSERT INTO "Wine_Vineyard" VALUES(98,98,86); INSERT INTO "Wine_Vineyard" VALUES(99,99,63); INSERT INTO "Wine_Vineyard" VALUES(100,100,87); INSERT INTO "Wine_Vineyard" VALUES(101,101,88); INSERT INTO "Wine_Vineyard" VALUES(102,102,89); INSERT INTO "Wine_Vineyard" VALUES(103,103,90); INSERT INTO "Wine_Vineyard" VALUES(104,104,91); INSERT INTO "Wine_Vineyard" VALUES(105,105,92); INSERT INTO "Wine_Vineyard" VALUES(106,106,93); INSERT INTO "Wine_Vineyard" VALUES(107,107,94); INSERT INTO "Wine_Vineyard" VALUES(108,108,95); INSERT INTO "Wine_Vineyard" VALUES(109,109,96); INSERT INTO "Wine_Vineyard" VALUES(110,110,97); INSERT INTO "Wine_Vineyard" VALUES(111,111,75); INSERT INTO "Wine_Vineyard" VALUES(112,112,98); INSERT INTO "Wine_Vineyard" VALUES(113,113,99); INSERT INTO "Wine_Vineyard" VALUES(114,114,100); INSERT INTO "Wine_Vineyard" VALUES(115,115,101); INSERT INTO "Wine_Vineyard" VALUES(116,116,102); INSERT INTO "Wine_Vineyard" VALUES(117,117,3); INSERT INTO "Wine_Vineyard" VALUES(118,118,103); INSERT INTO "Wine_Vineyard" VALUES(119,119,104); INSERT INTO "Wine_Vineyard" VALUES(120,120,105); INSERT INTO "Wine_Vineyard" VALUES(121,121,93); INSERT INTO "Wine_Vineyard" VALUES(122,122,106); INSERT INTO "Wine_Vineyard" VALUES(123,123,77); INSERT INTO "Wine_Vineyard" VALUES(124,124,107); INSERT INTO "Wine_Vineyard" VALUES(125,125,108); INSERT INTO "Wine_Vineyard" VALUES(126,126,109); INSERT INTO "Wine_Vineyard" VALUES(127,127,110); INSERT INTO "Wine_Vineyard" VALUES(128,128,97); INSERT INTO "Wine_Vineyard" VALUES(129,129,111); INSERT INTO "Wine_Vineyard" VALUES(130,130,112); INSERT INTO "Wine_Vineyard" VALUES(131,131,55); INSERT INTO "Wine_Vineyard" VALUES(132,132,113); INSERT INTO "Wine_Vineyard" VALUES(133,133,114); INSERT INTO "Wine_Vineyard" VALUES(134,134,115); INSERT INTO "Wine_Vineyard" VALUES(135,135,116); INSERT INTO "Wine_Vineyard" VALUES(136,136,117); INSERT INTO "Wine_Vineyard" VALUES(137,137,118); INSERT INTO "Wine_Vineyard" VALUES(138,138,119); INSERT INTO "Wine_Vineyard" VALUES(139,139,120); INSERT INTO "Wine_Vineyard" VALUES(140,140,3); INSERT INTO "Wine_Vineyard" VALUES(141,141,121); INSERT INTO "Wine_Vineyard" VALUES(142,142,95); INSERT INTO "Wine_Vineyard" VALUES(143,143,122); INSERT INTO "Wine_Vineyard" VALUES(144,144,48); INSERT INTO "Wine_Vineyard" VALUES(145,145,123); INSERT INTO "Wine_Vineyard" VALUES(146,146,124); INSERT INTO "Wine_Vineyard" VALUES(147,147,125); INSERT INTO "Wine_Vineyard" VALUES(148,148,63); INSERT INTO "Wine_Vineyard" VALUES(149,149,16); INSERT INTO "Wine_Vineyard" VALUES(150,150,121); INSERT INTO "Wine_Vineyard" VALUES(151,151,126); INSERT INTO "Wine_Vineyard" VALUES(152,152,127); INSERT INTO "Wine_Vineyard" VALUES(153,153,102); INSERT INTO "Wine_Vineyard" VALUES(154,154,128); INSERT INTO "Wine_Vineyard" VALUES(155,155,129); INSERT INTO "Wine_Vineyard" VALUES(156,156,37); INSERT INTO "Wine_Vineyard" VALUES(157,157,105); INSERT INTO "Wine_Vineyard" VALUES(158,158,68); INSERT INTO "Wine_Vineyard" VALUES(159,159,130); INSERT INTO "Wine_Vineyard" VALUES(160,160,131); INSERT INTO "Wine_Vineyard" VALUES(161,161,132); INSERT INTO "Wine_Vineyard" VALUES(162,162,75); INSERT INTO "Wine_Vineyard" VALUES(163,163,133); INSERT INTO "Wine_Vineyard" VALUES(164,164,132); INSERT INTO "Wine_Vineyard" VALUES(165,165,37); INSERT INTO "Wine_Vineyard" VALUES(166,166,134); INSERT INTO "Wine_Vineyard" VALUES(167,167,135); INSERT INTO "Wine_Vineyard" VALUES(168,168,136); INSERT INTO "Wine_Vineyard" VALUES(169,169,137); INSERT INTO "Wine_Vineyard" VALUES(170,170,123); INSERT INTO "Wine_Vineyard" VALUES(171,171,138); INSERT INTO "Wine_Vineyard" VALUES(172,172,139); INSERT INTO "Wine_Vineyard" VALUES(173,173,140); INSERT INTO "Wine_Vineyard" VALUES(174,174,141); INSERT INTO "Wine_Vineyard" VALUES(175,175,25); INSERT INTO "Wine_Vineyard" VALUES(176,176,5); INSERT INTO "Wine_Vineyard" VALUES(177,177,17); INSERT INTO "Wine_Vineyard" VALUES(178,178,46); INSERT INTO "Wine_Vineyard" VALUES(179,179,142); INSERT INTO "Wine_Vineyard" VALUES(180,180,143); INSERT INTO "Wine_Vineyard" VALUES(181,181,144); INSERT INTO "Wine_Vineyard" VALUES(182,182,145); INSERT INTO "Wine_Vineyard" VALUES(183,183,146); INSERT INTO "Wine_Vineyard" VALUES(184,184,99); INSERT INTO "Wine_Vineyard" VALUES(185,185,28); INSERT INTO "Wine_Vineyard" VALUES(186,186,147); INSERT INTO "Wine_Vineyard" VALUES(187,187,148); INSERT INTO "Wine_Vineyard" VALUES(188,188,149); INSERT INTO "Wine_Vineyard" VALUES(189,189,150); INSERT INTO "Wine_Vineyard" VALUES(190,190,151); INSERT INTO "Wine_Vineyard" VALUES(191,191,152); INSERT INTO "Wine_Vineyard" VALUES(192,192,153); INSERT INTO "Wine_Vineyard" VALUES(193,193,154); INSERT INTO "Wine_Vineyard" VALUES(194,194,155); INSERT INTO "Wine_Vineyard" VALUES(195,195,156); INSERT INTO "Wine_Vineyard" VALUES(196,196,157); INSERT INTO "Wine_Vineyard" VALUES(197,197,43); INSERT INTO "Wine_Vineyard" VALUES(198,198,63); INSERT INTO "Wine_Vineyard" VALUES(199,199,158); INSERT INTO "Wine_Vineyard" VALUES(200,200,159); INSERT INTO "Wine_Vineyard" VALUES(201,201,160); INSERT INTO "Wine_Vineyard" VALUES(202,202,161); INSERT INTO "Wine_Vineyard" VALUES(203,203,162); INSERT INTO "Wine_Vineyard" VALUES(204,204,163); INSERT INTO "Wine_Vineyard" VALUES(205,205,164); INSERT INTO "Wine_Vineyard" VALUES(206,206,153); INSERT INTO "Wine_Vineyard" VALUES(207,207,165); INSERT INTO "Wine_Vineyard" VALUES(208,208,163); INSERT INTO "Wine_Vineyard" VALUES(209,209,39); INSERT INTO "Wine_Vineyard" VALUES(210,210,166); INSERT INTO "Wine_Vineyard" VALUES(211,211,167); INSERT INTO "Wine_Vineyard" VALUES(212,212,168); INSERT INTO "Wine_Vineyard" VALUES(213,213,105); INSERT INTO "Wine_Vineyard" VALUES(214,214,169); INSERT INTO "Wine_Vineyard" VALUES(215,215,25); INSERT INTO "Wine_Vineyard" VALUES(216,216,170); INSERT INTO "Wine_Vineyard" VALUES(217,217,25); INSERT INTO "Wine_Vineyard" VALUES(218,218,22); INSERT INTO "Wine_Vineyard" VALUES(219,219,60); INSERT INTO "Wine_Vineyard" VALUES(220,220,73); INSERT INTO "Wine_Vineyard" VALUES(221,221,3); INSERT INTO "Wine_Vineyard" VALUES(222,222,171); INSERT INTO "Wine_Vineyard" VALUES(223,223,172); INSERT INTO "Wine_Vineyard" VALUES(224,224,75); INSERT INTO "Wine_Vineyard" VALUES(225,225,173); INSERT INTO "Wine_Vineyard" VALUES(226,226,162); INSERT INTO "Wine_Vineyard" VALUES(227,227,174); INSERT INTO "Wine_Vineyard" VALUES(228,228,175); INSERT INTO "Wine_Vineyard" VALUES(229,229,176); INSERT INTO "Wine_Vineyard" VALUES(230,230,177); INSERT INTO "Wine_Vineyard" VALUES(231,231,178); INSERT INTO "Wine_Vineyard" VALUES(232,232,178); INSERT INTO "Wine_Vineyard" VALUES(233,233,22); INSERT INTO "Wine_Vineyard" VALUES(234,234,179); INSERT INTO "Wine_Vineyard" VALUES(235,235,105); INSERT INTO "Wine_Vineyard" VALUES(236,236,180); INSERT INTO "Wine_Vineyard" VALUES(237,237,173); INSERT INTO "Wine_Vineyard" VALUES(238,238,181); INSERT INTO "Wine_Vineyard" VALUES(239,239,182); INSERT INTO "Wine_Vineyard" VALUES(240,240,183); INSERT INTO "Wine_Vineyard" VALUES(241,241,184); INSERT INTO "Wine_Vineyard" VALUES(242,242,185); INSERT INTO "Wine_Vineyard" VALUES(243,243,186); INSERT INTO "Wine_Vineyard" VALUES(244,244,187); INSERT INTO "Wine_Vineyard" VALUES(245,245,188); INSERT INTO "Wine_Vineyard" VALUES(246,246,189); INSERT INTO "Wine_Vineyard" VALUES(247,247,66); INSERT INTO "Wine_Vineyard" VALUES(248,248,56); INSERT INTO "Wine_Vineyard" VALUES(249,249,190); INSERT INTO "Wine_Vineyard" VALUES(250,250,188); INSERT INTO "Wine_Vineyard" VALUES(251,251,161); INSERT INTO "Wine_Vineyard" VALUES(252,252,191); INSERT INTO "Wine_Vineyard" VALUES(253,253,192); INSERT INTO "Wine_Vineyard" VALUES(254,254,193); INSERT INTO "Wine_Vineyard" VALUES(255,255,194); INSERT INTO "Wine_Vineyard" VALUES(256,256,195); INSERT INTO "Wine_Vineyard" VALUES(257,257,25); INSERT INTO "Wine_Vineyard" VALUES(258,258,79); INSERT INTO "Wine_Vineyard" VALUES(259,259,196); INSERT INTO "Wine_Vineyard" VALUES(260,260,197); INSERT INTO "Wine_Vineyard" VALUES(261,261,116); INSERT INTO "Wine_Vineyard" VALUES(262,262,198); INSERT INTO "Wine_Vineyard" VALUES(263,263,123); INSERT INTO "Wine_Vineyard" VALUES(264,264,199); INSERT INTO "Wine_Vineyard" VALUES(265,265,148); INSERT INTO "Wine_Vineyard" VALUES(266,266,10); INSERT INTO "Wine_Vineyard" VALUES(267,267,63); INSERT INTO "Wine_Vineyard" VALUES(268,268,136); INSERT INTO "Wine_Vineyard" VALUES(269,269,150); INSERT INTO "Wine_Vineyard" VALUES(270,270,200); INSERT INTO "Wine_Vineyard" VALUES(271,271,201); INSERT INTO "Wine_Vineyard" VALUES(272,272,39); INSERT INTO "Wine_Vineyard" VALUES(273,273,202); INSERT INTO "Wine_Vineyard" VALUES(274,274,203); INSERT INTO "Wine_Vineyard" VALUES(275,275,204); INSERT INTO "Wine_Vineyard" VALUES(276,276,54); INSERT INTO "Wine_Vineyard" VALUES(277,277,150); INSERT INTO "Wine_Vineyard" VALUES(278,278,40); INSERT INTO "Wine_Vineyard" VALUES(279,279,205); INSERT INTO "Wine_Vineyard" VALUES(280,280,80); INSERT INTO "Wine_Vineyard" VALUES(281,281,83); INSERT INTO "Wine_Vineyard" VALUES(282,282,2); INSERT INTO "Wine_Vineyard" VALUES(283,283,159); INSERT INTO "Wine_Vineyard" VALUES(284,284,206); INSERT INTO "Wine_Vineyard" VALUES(285,285,207); INSERT INTO "Wine_Vineyard" VALUES(286,286,179); INSERT INTO "Wine_Vineyard" VALUES(287,287,208); INSERT INTO "Wine_Vineyard" VALUES(288,288,132); INSERT INTO "Wine_Vineyard" VALUES(289,289,209); INSERT INTO "Wine_Vineyard" VALUES(290,290,41); INSERT INTO "Wine_Vineyard" VALUES(291,291,8); INSERT INTO "Wine_Vineyard" VALUES(292,292,136); INSERT INTO "Wine_Vineyard" VALUES(293,293,28); INSERT INTO "Wine_Vineyard" VALUES(294,294,210); INSERT INTO "Wine_Vineyard" VALUES(295,295,211); INSERT INTO "Wine_Vineyard" VALUES(296,296,212); INSERT INTO "Wine_Vineyard" VALUES(297,297,213); INSERT INTO "Wine_Vineyard" VALUES(298,298,210); INSERT INTO "Wine_Vineyard" VALUES(299,299,55); INSERT INTO "Wine_Vineyard" VALUES(300,300,214); INSERT INTO "Wine_Vineyard" VALUES(301,301,215); INSERT INTO "Wine_Vineyard" VALUES(302,302,205); INSERT INTO "Wine_Vineyard" VALUES(303,303,207); INSERT INTO "Wine_Vineyard" VALUES(304,304,216); INSERT INTO "Wine_Vineyard" VALUES(305,305,217); INSERT INTO "Wine_Vineyard" VALUES(306,306,55); INSERT INTO "Wine_Vineyard" VALUES(307,307,218); INSERT INTO "Wine_Vineyard" VALUES(308,308,219); INSERT INTO "Wine_Vineyard" VALUES(309,309,39); INSERT INTO "Wine_Vineyard" VALUES(310,310,220); INSERT INTO "Wine_Vineyard" VALUES(311,311,221); INSERT INTO "Wine_Vineyard" VALUES(312,312,177); INSERT INTO "Wine_Vineyard" VALUES(313,313,148); INSERT INTO "Wine_Vineyard" VALUES(314,314,122); INSERT INTO "Wine_Vineyard" VALUES(315,315,222); INSERT INTO "Wine_Vineyard" VALUES(316,316,223); INSERT INTO "Wine_Vineyard" VALUES(317,317,224); INSERT INTO "Wine_Vineyard" VALUES(318,318,225); INSERT INTO "Wine_Vineyard" VALUES(319,319,120); INSERT INTO "Wine_Vineyard" VALUES(320,320,145); INSERT INTO "Wine_Vineyard" VALUES(321,321,226); INSERT INTO "Wine_Vineyard" VALUES(322,322,227); INSERT INTO "Wine_Vineyard" VALUES(323,323,228); INSERT INTO "Wine_Vineyard" VALUES(324,324,229); INSERT INTO "Wine_Vineyard" VALUES(325,325,9); INSERT INTO "Wine_Vineyard" VALUES(326,326,230); INSERT INTO "Wine_Vineyard" VALUES(327,327,231); INSERT INTO "Wine_Vineyard" VALUES(328,328,232); INSERT INTO "Wine_Vineyard" VALUES(329,329,233); INSERT INTO "Wine_Vineyard" VALUES(330,330,47); INSERT INTO "Wine_Vineyard" VALUES(331,331,234); INSERT INTO "Wine_Vineyard" VALUES(332,332,235); INSERT INTO "Wine_Vineyard" VALUES(333,333,236); INSERT INTO "Wine_Vineyard" VALUES(334,334,237); INSERT INTO "Wine_Vineyard" VALUES(335,335,238); INSERT INTO "Wine_Vineyard" VALUES(336,336,239); INSERT INTO "Wine_Vineyard" VALUES(337,337,240); INSERT INTO "Wine_Vineyard" VALUES(338,338,241); INSERT INTO "Wine_Vineyard" VALUES(339,339,242); INSERT INTO "Wine_Vineyard" VALUES(340,340,243); INSERT INTO "Wine_Vineyard" VALUES(341,341,202); INSERT INTO "Wine_Vineyard" VALUES(342,342,10); INSERT INTO "Wine_Vineyard" VALUES(343,343,244); INSERT INTO "Wine_Vineyard" VALUES(344,344,245); INSERT INTO "Wine_Vineyard" VALUES(345,345,38); INSERT INTO "Wine_Vineyard" VALUES(346,346,224); INSERT INTO "Wine_Vineyard" VALUES(347,347,103); INSERT INTO "Wine_Vineyard" VALUES(348,348,246); INSERT INTO "Wine_Vineyard" VALUES(349,349,247); INSERT INTO "Wine_Vineyard" VALUES(350,350,248); INSERT INTO "Wine_Vineyard" VALUES(351,351,249); INSERT INTO "Wine_Vineyard" VALUES(352,352,70); INSERT INTO "Wine_Vineyard" VALUES(353,353,250); INSERT INTO "Wine_Vineyard" VALUES(354,354,251); INSERT INTO "Wine_Vineyard" VALUES(355,355,252); INSERT INTO "Wine_Vineyard" VALUES(356,356,253); INSERT INTO "Wine_Vineyard" VALUES(357,357,254); INSERT INTO "Wine_Vineyard" VALUES(358,358,255); INSERT INTO "Wine_Vineyard" VALUES(359,359,256); INSERT INTO "Wine_Vineyard" VALUES(360,360,257); INSERT INTO "Wine_Vineyard" VALUES(361,361,258); INSERT INTO "Wine_Vineyard" VALUES(362,362,259); INSERT INTO "Wine_Vineyard" VALUES(363,363,260); INSERT INTO "Wine_Vineyard" VALUES(364,364,106); INSERT INTO "Wine_Vineyard" VALUES(365,365,261); INSERT INTO "Wine_Vineyard" VALUES(366,366,262); INSERT INTO "Wine_Vineyard" VALUES(367,367,263); INSERT INTO "Wine_Vineyard" VALUES(368,368,264); INSERT INTO "Wine_Vineyard" VALUES(369,369,265); INSERT INTO "Wine_Vineyard" VALUES(370,370,266); INSERT INTO "Wine_Vineyard" VALUES(371,371,267); INSERT INTO "Wine_Vineyard" VALUES(372,372,100); INSERT INTO "Wine_Vineyard" VALUES(373,373,91); INSERT INTO "Wine_Vineyard" VALUES(374,374,268); INSERT INTO "Wine_Vineyard" VALUES(375,375,269); INSERT INTO "Wine_Vineyard" VALUES(376,376,270); INSERT INTO "Wine_Vineyard" VALUES(377,377,271); INSERT INTO "Wine_Vineyard" VALUES(378,378,272); INSERT INTO "Wine_Vineyard" VALUES(379,379,273); INSERT INTO "Wine_Vineyard" VALUES(380,380,274); INSERT INTO "Wine_Vineyard" VALUES(381,381,275); INSERT INTO "Wine_Vineyard" VALUES(382,382,60); INSERT INTO "Wine_Vineyard" VALUES(383,383,276); INSERT INTO "Wine_Vineyard" VALUES(384,384,277); INSERT INTO "Wine_Vineyard" VALUES(385,385,278); INSERT INTO "Wine_Vineyard" VALUES(386,386,279); INSERT INTO "Wine_Vineyard" VALUES(387,387,280); INSERT INTO "Wine_Vineyard" VALUES(388,388,281); INSERT INTO "Wine_Vineyard" VALUES(389,389,282); INSERT INTO "Wine_Vineyard" VALUES(390,390,283); INSERT INTO "Wine_Vineyard" VALUES(391,391,284); INSERT INTO "Wine_Vineyard" VALUES(392,392,285); INSERT INTO "Wine_Vineyard" VALUES(393,393,286); INSERT INTO "Wine_Vineyard" VALUES(394,394,287); INSERT INTO "Wine_Vineyard" VALUES(395,395,288); INSERT INTO "Wine_Vineyard" VALUES(396,396,289); INSERT INTO "Wine_Vineyard" VALUES(397,397,290); INSERT INTO "Wine_Vineyard" VALUES(398,398,291); INSERT INTO "Wine_Vineyard" VALUES(399,399,292); INSERT INTO "Wine_Vineyard" VALUES(400,400,232); INSERT INTO "Wine_Vineyard" VALUES(401,401,293); INSERT INTO "Wine_Vineyard" VALUES(402,402,294); INSERT INTO "Wine_Vineyard" VALUES(403,403,295); INSERT INTO "Wine_Vineyard" VALUES(404,404,296); INSERT INTO "Wine_Vineyard" VALUES(405,405,224); INSERT INTO "Wine_Vineyard" VALUES(406,406,297); INSERT INTO "Wine_Vineyard" VALUES(407,407,269); INSERT INTO "Wine_Vineyard" VALUES(408,408,213); INSERT INTO "Wine_Vineyard" VALUES(409,409,298); INSERT INTO "Wine_Vineyard" VALUES(410,410,299); INSERT INTO "Wine_Vineyard" VALUES(411,411,300); INSERT INTO "Wine_Vineyard" VALUES(412,412,116); INSERT INTO "Wine_Vineyard" VALUES(413,413,76); INSERT INTO "Wine_Vineyard" VALUES(414,414,301); INSERT INTO "Wine_Vineyard" VALUES(415,415,191); INSERT INTO "Wine_Vineyard" VALUES(416,416,271); INSERT INTO "Wine_Vineyard" VALUES(417,417,302); INSERT INTO "Wine_Vineyard" VALUES(418,418,169); INSERT INTO "Wine_Vineyard" VALUES(419,419,55); INSERT INTO "Wine_Vineyard" VALUES(420,420,3); INSERT INTO "Wine_Vineyard" VALUES(421,421,8); INSERT INTO "Wine_Vineyard" VALUES(422,422,303); INSERT INTO "Wine_Vineyard" VALUES(423,423,1); INSERT INTO "Wine_Vineyard" VALUES(424,424,304); INSERT INTO "Wine_Vineyard" VALUES(425,425,305); INSERT INTO "Wine_Vineyard" VALUES(426,426,306); INSERT INTO "Wine_Vineyard" VALUES(427,427,307); INSERT INTO "Wine_Vineyard" VALUES(428,428,62); INSERT INTO "Wine_Vineyard" VALUES(429,429,308); INSERT INTO "Wine_Vineyard" VALUES(430,430,309); INSERT INTO "Wine_Vineyard" VALUES(431,431,310); INSERT INTO "Wine_Vineyard" VALUES(432,432,311); INSERT INTO "Wine_Vineyard" VALUES(433,433,312); INSERT INTO "Wine_Vineyard" VALUES(434,434,118); INSERT INTO "Wine_Vineyard" VALUES(435,435,313); INSERT INTO "Wine_Vineyard" VALUES(436,436,313); INSERT INTO "Wine_Vineyard" VALUES(437,437,314); INSERT INTO "Wine_Vineyard" VALUES(438,438,315); INSERT INTO "Wine_Vineyard" VALUES(439,439,316); INSERT INTO "Wine_Vineyard" VALUES(440,440,317); INSERT INTO "Wine_Vineyard" VALUES(441,441,318); INSERT INTO "Wine_Vineyard" VALUES(442,442,319); INSERT INTO "Wine_Vineyard" VALUES(443,443,320); INSERT INTO "Wine_Vineyard" VALUES(444,444,317); INSERT INTO "Wine_Vineyard" VALUES(445,445,321); INSERT INTO "Wine_Vineyard" VALUES(446,446,322); INSERT INTO "Wine_Vineyard" VALUES(447,447,323); INSERT INTO "Wine_Vineyard" VALUES(448,448,324); INSERT INTO "Wine_Vineyard" VALUES(449,449,325); INSERT INTO "Wine_Vineyard" VALUES(450,450,326); INSERT INTO "Wine_Vineyard" VALUES(451,451,327); INSERT INTO "Wine_Vineyard" VALUES(452,452,55); INSERT INTO "Wine_Vineyard" VALUES(453,453,79); INSERT INTO "Wine_Vineyard" VALUES(454,454,328); INSERT INTO "Wine_Vineyard" VALUES(455,455,329); INSERT INTO "Wine_Vineyard" VALUES(456,456,330); INSERT INTO "Wine_Vineyard" VALUES(457,457,331); INSERT INTO "Wine_Vineyard" VALUES(458,458,332); INSERT INTO "Wine_Vineyard" VALUES(459,459,265); INSERT INTO "Wine_Vineyard" VALUES(460,460,333); INSERT INTO "Wine_Vineyard" VALUES(461,461,334); INSERT INTO "Wine_Vineyard" VALUES(462,462,124); INSERT INTO "Wine_Vineyard" VALUES(463,463,210); INSERT INTO "Wine_Vineyard" VALUES(464,464,291); INSERT INTO "Wine_Vineyard" VALUES(465,465,335); INSERT INTO "Wine_Vineyard" VALUES(466,466,257); INSERT INTO "Wine_Vineyard" VALUES(467,467,336); INSERT INTO "Wine_Vineyard" VALUES(468,468,76); INSERT INTO "Wine_Vineyard" VALUES(469,469,337); INSERT INTO "Wine_Vineyard" VALUES(470,470,293); INSERT INTO "Wine_Vineyard" VALUES(471,471,338); INSERT INTO "Wine_Vineyard" VALUES(472,472,339); INSERT INTO "Wine_Vineyard" VALUES(473,473,340); INSERT INTO "Wine_Vineyard" VALUES(474,474,279); INSERT INTO "Wine_Vineyard" VALUES(475,475,341); INSERT INTO "Wine_Vineyard" VALUES(476,476,342); INSERT INTO "Wine_Vineyard" VALUES(477,477,343); INSERT INTO "Wine_Vineyard" VALUES(478,478,344); INSERT INTO "Wine_Vineyard" VALUES(479,479,345); INSERT INTO "Wine_Vineyard" VALUES(480,480,346); INSERT INTO "Wine_Vineyard" VALUES(481,481,347); INSERT INTO "Wine_Vineyard" VALUES(482,482,116); INSERT INTO "Wine_Vineyard" VALUES(483,483,348); INSERT INTO "Wine_Vineyard" VALUES(484,484,349); INSERT INTO "Wine_Vineyard" VALUES(485,485,350); INSERT INTO "Wine_Vineyard" VALUES(486,486,351); INSERT INTO "Wine_Vineyard" VALUES(487,487,352); INSERT INTO "Wine_Vineyard" VALUES(488,488,353); INSERT INTO "Wine_Vineyard" VALUES(489,489,354); INSERT INTO "Wine_Vineyard" VALUES(490,490,355); INSERT INTO "Wine_Vineyard" VALUES(491,491,356); INSERT INTO "Wine_Vineyard" VALUES(492,492,357); INSERT INTO "Wine_Vineyard" VALUES(493,493,233); INSERT INTO "Wine_Vineyard" VALUES(494,494,320); INSERT INTO "Wine_Vineyard" VALUES(495,495,358); INSERT INTO "Wine_Vineyard" VALUES(496,496,303); INSERT INTO "Wine_Vineyard" VALUES(497,497,337); INSERT INTO "Wine_Vineyard" VALUES(498,498,284); INSERT INTO "Wine_Vineyard" VALUES(499,499,316); INSERT INTO "Wine_Vineyard" VALUES(500,500,359); INSERT INTO "Wine_Vineyard" VALUES(501,501,323); INSERT INTO "Wine_Vineyard" VALUES(502,502,360); INSERT INTO "Wine_Vineyard" VALUES(503,503,361); INSERT INTO "Wine_Vineyard" VALUES(504,504,362); INSERT INTO "Wine_Vineyard" VALUES(505,505,363); INSERT INTO "Wine_Vineyard" VALUES(506,506,364); INSERT INTO "Wine_Vineyard" VALUES(507,507,365); INSERT INTO "Wine_Vineyard" VALUES(508,508,366); INSERT INTO "Wine_Vineyard" VALUES(509,509,367); INSERT INTO "Wine_Vineyard" VALUES(510,510,368); INSERT INTO "Wine_Vineyard" VALUES(511,511,369); INSERT INTO "Wine_Vineyard" VALUES(512,512,370); INSERT INTO "Wine_Vineyard" VALUES(513,513,252); INSERT INTO "Wine_Vineyard" VALUES(514,514,289); INSERT INTO "Wine_Vineyard" VALUES(515,515,162); INSERT INTO "Wine_Vineyard" VALUES(516,516,275); INSERT INTO "Wine_Vineyard" VALUES(517,517,186); INSERT INTO "Wine_Vineyard" VALUES(518,518,355); INSERT INTO "Wine_Vineyard" VALUES(519,519,246); INSERT INTO "Wine_Vineyard" VALUES(520,520,371); INSERT INTO "Wine_Vineyard" VALUES(521,521,372); INSERT INTO "Wine_Vineyard" VALUES(522,522,249); INSERT INTO "Wine_Vineyard" VALUES(523,523,373); INSERT INTO "Wine_Vineyard" VALUES(524,524,374); INSERT INTO "Wine_Vineyard" VALUES(525,525,135); INSERT INTO "Wine_Vineyard" VALUES(526,526,375); INSERT INTO "Wine_Vineyard" VALUES(527,527,325); INSERT INTO "Wine_Vineyard" VALUES(528,528,376); INSERT INTO "Wine_Vineyard" VALUES(529,529,213); INSERT INTO "Wine_Vineyard" VALUES(530,530,377); INSERT INTO "Wine_Vineyard" VALUES(531,531,322); INSERT INTO "Wine_Vineyard" VALUES(532,532,378); INSERT INTO "Wine_Vineyard" VALUES(533,533,379); INSERT INTO "Wine_Vineyard" VALUES(534,534,283); INSERT INTO "Wine_Vineyard" VALUES(535,535,380); INSERT INTO "Wine_Vineyard" VALUES(536,536,381); INSERT INTO "Wine_Vineyard" VALUES(537,537,348); INSERT INTO "Wine_Vineyard" VALUES(538,538,261); INSERT INTO "Wine_Vineyard" VALUES(539,539,382); INSERT INTO "Wine_Vineyard" VALUES(540,540,153); INSERT INTO "Wine_Vineyard" VALUES(541,541,383); INSERT INTO "Wine_Vineyard" VALUES(542,542,384); INSERT INTO "Wine_Vineyard" VALUES(543,543,23); INSERT INTO "Wine_Vineyard" VALUES(544,544,156); INSERT INTO "Wine_Vineyard" VALUES(545,545,385); INSERT INTO "Wine_Vineyard" VALUES(546,546,272); INSERT INTO "Wine_Vineyard" VALUES(547,547,386); INSERT INTO "Wine_Vineyard" VALUES(548,548,387); INSERT INTO "Wine_Vineyard" VALUES(549,549,388); INSERT INTO "Wine_Vineyard" VALUES(550,550,111); INSERT INTO "Wine_Vineyard" VALUES(551,551,389); INSERT INTO "Wine_Vineyard" VALUES(552,552,390); INSERT INTO "Wine_Vineyard" VALUES(553,553,391); INSERT INTO "Wine_Vineyard" VALUES(554,554,392); INSERT INTO "Wine_Vineyard" VALUES(555,555,393); INSERT INTO "Wine_Vineyard" VALUES(556,556,394); INSERT INTO "Wine_Vineyard" VALUES(557,557,395); INSERT INTO "Wine_Vineyard" VALUES(558,558,396); INSERT INTO "Wine_Vineyard" VALUES(559,559,397); INSERT INTO "Wine_Vineyard" VALUES(560,560,398); INSERT INTO "Wine_Vineyard" VALUES(561,561,384); INSERT INTO "Wine_Vineyard" VALUES(562,562,386); INSERT INTO "Wine_Vineyard" VALUES(563,563,370); INSERT INTO "Wine_Vineyard" VALUES(564,564,399); INSERT INTO "Wine_Vineyard" VALUES(565,565,400); INSERT INTO "Wine_Vineyard" VALUES(566,566,258); INSERT INTO "Wine_Vineyard" VALUES(567,567,401); INSERT INTO "Wine_Vineyard" VALUES(568,568,295); INSERT INTO "Wine_Vineyard" VALUES(569,569,219); INSERT INTO "Wine_Vineyard" VALUES(570,570,402); INSERT INTO "Wine_Vineyard" VALUES(571,571,403); INSERT INTO "Wine_Vineyard" VALUES(572,572,254); INSERT INTO "Wine_Vineyard" VALUES(573,573,404); INSERT INTO "Wine_Vineyard" VALUES(574,574,290); INSERT INTO "Wine_Vineyard" VALUES(575,575,361); INSERT INTO "Wine_Vineyard" VALUES(576,576,405); INSERT INTO "Wine_Vineyard" VALUES(577,577,406); INSERT INTO "Wine_Vineyard" VALUES(578,578,407); INSERT INTO "Wine_Vineyard" VALUES(579,579,9); INSERT INTO "Wine_Vineyard" VALUES(580,580,58); INSERT INTO "Wine_Vineyard" VALUES(581,581,169); INSERT INTO "Wine_Vineyard" VALUES(582,582,3); INSERT INTO "Wine_Vineyard" VALUES(583,583,408); INSERT INTO "Wine_Vineyard" VALUES(584,584,409); INSERT INTO "Wine_Vineyard" VALUES(585,585,277); INSERT INTO "Wine_Vineyard" VALUES(586,586,243); INSERT INTO "Wine_Vineyard" VALUES(587,587,410); INSERT INTO "Wine_Vineyard" VALUES(588,588,368); INSERT INTO "Wine_Vineyard" VALUES(589,589,124); INSERT INTO "Wine_Vineyard" VALUES(590,590,249); INSERT INTO "Wine_Vineyard" VALUES(591,591,279); INSERT INTO "Wine_Vineyard" VALUES(592,592,379); INSERT INTO "Wine_Vineyard" VALUES(593,593,321); INSERT INTO "Wine_Vineyard" VALUES(594,594,371); INSERT INTO "Wine_Vineyard" VALUES(595,595,411); INSERT INTO "Wine_Vineyard" VALUES(596,596,412); INSERT INTO "Wine_Vineyard" VALUES(597,597,413); INSERT INTO "Wine_Vineyard" VALUES(598,598,414); INSERT INTO "Wine_Vineyard" VALUES(599,599,415); INSERT INTO "Wine_Vineyard" VALUES(600,600,416); INSERT INTO "Wine_Vineyard" VALUES(601,601,417); INSERT INTO "Wine_Vineyard" VALUES(602,602,418); INSERT INTO "Wine_Vineyard" VALUES(603,603,419); INSERT INTO "Wine_Vineyard" VALUES(604,604,420); INSERT INTO "Wine_Vineyard" VALUES(605,605,119); INSERT INTO "Wine_Vineyard" VALUES(606,606,421); INSERT INTO "Wine_Vineyard" VALUES(607,607,422); INSERT INTO "Wine_Vineyard" VALUES(608,608,423); INSERT INTO "Wine_Vineyard" VALUES(609,609,20); INSERT INTO "Wine_Vineyard" VALUES(610,610,424); INSERT INTO "Wine_Vineyard" VALUES(611,611,425); INSERT INTO "Wine_Vineyard" VALUES(612,612,265); INSERT INTO "Wine_Vineyard" VALUES(613,613,426); INSERT INTO "Wine_Vineyard" VALUES(614,614,191); INSERT INTO "Wine_Vineyard" VALUES(615,615,2); INSERT INTO "Wine_Vineyard" VALUES(616,616,239); INSERT INTO "Wine_Vineyard" VALUES(617,617,122); INSERT INTO "Wine_Vineyard" VALUES(618,618,296); INSERT INTO "Wine_Vineyard" VALUES(619,619,427); INSERT INTO "Wine_Vineyard" VALUES(620,620,417); INSERT INTO "Wine_Vineyard" VALUES(621,621,75); INSERT INTO "Wine_Vineyard" VALUES(622,622,428); INSERT INTO "Wine_Vineyard" VALUES(623,623,429); INSERT INTO "Wine_Vineyard" VALUES(624,624,234); INSERT INTO "Wine_Vineyard" VALUES(625,625,430); INSERT INTO "Wine_Vineyard" VALUES(626,626,431); INSERT INTO "Wine_Vineyard" VALUES(627,627,155); INSERT INTO "Wine_Vineyard" VALUES(628,628,224); INSERT INTO "Wine_Vineyard" VALUES(629,629,415); INSERT INTO "Wine_Vineyard" VALUES(630,630,432); INSERT INTO "Wine_Vineyard" VALUES(631,631,433); INSERT INTO "Wine_Vineyard" VALUES(632,632,300); INSERT INTO "Wine_Vineyard" VALUES(633,633,434); INSERT INTO "Wine_Vineyard" VALUES(634,634,2); INSERT INTO "Wine_Vineyard" VALUES(635,635,435); INSERT INTO "Wine_Vineyard" VALUES(636,636,436); INSERT INTO "Wine_Vineyard" VALUES(637,637,437); INSERT INTO "Wine_Vineyard" VALUES(638,638,252); INSERT INTO "Wine_Vineyard" VALUES(639,639,438); INSERT INTO "Wine_Vineyard" VALUES(640,640,288); INSERT INTO "Wine_Vineyard" VALUES(641,641,439); INSERT INTO "Wine_Vineyard" VALUES(642,642,440); INSERT INTO "Wine_Vineyard" VALUES(643,643,441); INSERT INTO "Wine_Vineyard" VALUES(644,644,442); INSERT INTO "Wine_Vineyard" VALUES(645,645,443); INSERT INTO "Wine_Vineyard" VALUES(646,646,444); INSERT INTO "Wine_Vineyard" VALUES(647,647,445); INSERT INTO "Wine_Vineyard" VALUES(648,648,446); INSERT INTO "Wine_Vineyard" VALUES(649,649,355); INSERT INTO "Wine_Vineyard" VALUES(650,650,447); INSERT INTO "Wine_Vineyard" VALUES(651,651,448); INSERT INTO "Wine_Vineyard" VALUES(652,652,354); INSERT INTO "Wine_Vineyard" VALUES(653,653,350); INSERT INTO "Wine_Vineyard" VALUES(654,654,234); INSERT INTO "Wine_Vineyard" VALUES(655,655,449); INSERT INTO "Wine_Vineyard" VALUES(656,656,450); INSERT INTO "Wine_Vineyard" VALUES(657,657,31); INSERT INTO "Wine_Vineyard" VALUES(658,658,451); INSERT INTO "Wine_Vineyard" VALUES(659,659,452); INSERT INTO "Wine_Vineyard" VALUES(660,660,234); INSERT INTO "Wine_Vineyard" VALUES(661,661,453); INSERT INTO "Wine_Vineyard" VALUES(662,662,454); INSERT INTO "Wine_Vineyard" VALUES(663,663,455); INSERT INTO "Wine_Vineyard" VALUES(664,664,456); INSERT INTO "Wine_Vineyard" VALUES(665,665,457); INSERT INTO "Wine_Vineyard" VALUES(666,666,458); INSERT INTO "Wine_Vineyard" VALUES(667,667,67); INSERT INTO "Wine_Vineyard" VALUES(668,668,413); INSERT INTO "Wine_Vineyard" VALUES(669,669,422); INSERT INTO "Wine_Vineyard" VALUES(670,670,459); INSERT INTO "Wine_Vineyard" VALUES(671,671,460); INSERT INTO "Wine_Vineyard" VALUES(672,672,461); INSERT INTO "Wine_Vineyard" VALUES(673,673,34); INSERT INTO "Wine_Vineyard" VALUES(674,674,462); INSERT INTO "Wine_Vineyard" VALUES(675,675,41); INSERT INTO "Wine_Vineyard" VALUES(676,676,266); INSERT INTO "Wine_Vineyard" VALUES(677,677,300); INSERT INTO "Wine_Vineyard" VALUES(678,678,406); INSERT INTO "Wine_Vineyard" VALUES(679,679,463); INSERT INTO "Wine_Vineyard" VALUES(680,680,464); INSERT INTO "Wine_Vineyard" VALUES(681,681,465); INSERT INTO "Wine_Vineyard" VALUES(682,682,264); INSERT INTO "Wine_Vineyard" VALUES(683,683,466); INSERT INTO "Wine_Vineyard" VALUES(684,684,467); INSERT INTO "Wine_Vineyard" VALUES(685,685,468); INSERT INTO "Wine_Vineyard" VALUES(686,686,145); INSERT INTO "Wine_Vineyard" VALUES(687,687,469); INSERT INTO "Wine_Vineyard" VALUES(688,688,470); INSERT INTO "Wine_Vineyard" VALUES(689,689,471); INSERT INTO "Wine_Vineyard" VALUES(690,690,472); INSERT INTO "Wine_Vineyard" VALUES(691,691,202); INSERT INTO "Wine_Vineyard" VALUES(692,692,473); INSERT INTO "Wine_Vineyard" VALUES(693,693,474); INSERT INTO "Wine_Vineyard" VALUES(694,694,139); INSERT INTO "Wine_Vineyard" VALUES(695,695,475); INSERT INTO "Wine_Vineyard" VALUES(696,696,476); INSERT INTO "Wine_Vineyard" VALUES(697,697,414); INSERT INTO "Wine_Vineyard" VALUES(698,698,318); INSERT INTO "Wine_Vineyard" VALUES(699,699,477); INSERT INTO "Wine_Vineyard" VALUES(700,700,103); INSERT INTO "Wine_Vineyard" VALUES(701,701,136); INSERT INTO "Wine_Vineyard" VALUES(702,702,478); INSERT INTO "Wine_Vineyard" VALUES(703,703,479); INSERT INTO "Wine_Vineyard" VALUES(704,704,480); INSERT INTO "Wine_Vineyard" VALUES(705,705,46); INSERT INTO "Wine_Vineyard" VALUES(706,706,442); INSERT INTO "Wine_Vineyard" VALUES(707,707,224); INSERT INTO "Wine_Vineyard" VALUES(708,708,481); INSERT INTO "Wine_Vineyard" VALUES(709,709,482); INSERT INTO "Wine_Vineyard" VALUES(710,710,318); INSERT INTO "Wine_Vineyard" VALUES(711,711,483); INSERT INTO "Wine_Vineyard" VALUES(712,712,207); INSERT INTO "Wine_Vineyard" VALUES(713,713,484); INSERT INTO "Wine_Vineyard" VALUES(714,714,485); INSERT INTO "Wine_Vineyard" VALUES(715,715,486); INSERT INTO "Wine_Vineyard" VALUES(716,716,487); INSERT INTO "Wine_Vineyard" VALUES(717,717,488); INSERT INTO "Wine_Vineyard" VALUES(718,718,368); INSERT INTO "Wine_Vineyard" VALUES(719,719,373); INSERT INTO "Wine_Vineyard" VALUES(720,720,443); INSERT INTO "Wine_Vineyard" VALUES(721,721,70); INSERT INTO "Wine_Vineyard" VALUES(722,722,53); INSERT INTO "Wine_Vineyard" VALUES(723,723,489); INSERT INTO "Wine_Vineyard" VALUES(724,724,490); INSERT INTO "Wine_Vineyard" VALUES(725,725,491); INSERT INTO "Wine_Vineyard" VALUES(726,726,492); INSERT INTO "Wine_Vineyard" VALUES(727,727,493); INSERT INTO "Wine_Vineyard" VALUES(728,728,432); INSERT INTO "Wine_Vineyard" VALUES(729,729,435); INSERT INTO "Wine_Vineyard" VALUES(730,730,80); INSERT INTO "Wine_Vineyard" VALUES(731,731,202); INSERT INTO "Wine_Vineyard" VALUES(732,732,494); INSERT INTO "Wine_Vineyard" VALUES(733,733,423); INSERT INTO "Wine_Vineyard" VALUES(734,734,172); INSERT INTO "Wine_Vineyard" VALUES(735,735,495); INSERT INTO "Wine_Vineyard" VALUES(736,736,496); INSERT INTO "Wine_Vineyard" VALUES(737,737,103); INSERT INTO "Wine_Vineyard" VALUES(738,738,497); INSERT INTO "Wine_Vineyard" VALUES(739,739,498); INSERT INTO "Wine_Vineyard" VALUES(740,740,499); INSERT INTO "Wine_Vineyard" VALUES(741,741,14); INSERT INTO "Wine_Vineyard" VALUES(742,742,422); INSERT INTO "Wine_Vineyard" VALUES(743,743,40); INSERT INTO "Wine_Vineyard" VALUES(744,744,10); INSERT INTO "Wine_Vineyard" VALUES(745,745,68); INSERT INTO "Wine_Vineyard" VALUES(746,746,293); INSERT INTO "Wine_Vineyard" VALUES(747,747,500); INSERT INTO "Wine_Vineyard" VALUES(748,748,501); INSERT INTO "Wine_Vineyard" VALUES(749,749,502); INSERT INTO "Wine_Vineyard" VALUES(750,750,458); INSERT INTO "Wine_Vineyard" VALUES(751,751,503); INSERT INTO "Wine_Vineyard" VALUES(752,752,504); INSERT INTO "Wine_Vineyard" VALUES(753,753,487); INSERT INTO "Wine_Vineyard" VALUES(754,754,505); INSERT INTO "Wine_Vineyard" VALUES(755,755,506); INSERT INTO "Wine_Vineyard" VALUES(756,756,507); INSERT INTO "Wine_Vineyard" VALUES(757,757,508); INSERT INTO "Wine_Vineyard" VALUES(758,758,509); INSERT INTO "Wine_Vineyard" VALUES(759,759,390); INSERT INTO "Wine_Vineyard" VALUES(760,760,62); INSERT INTO "Wine_Vineyard" VALUES(761,761,510); INSERT INTO "Wine_Vineyard" VALUES(762,762,511); INSERT INTO "Wine_Vineyard" VALUES(763,763,246); INSERT INTO "Wine_Vineyard" VALUES(764,764,512); INSERT INTO "Wine_Vineyard" VALUES(765,765,513); INSERT INTO "Wine_Vineyard" VALUES(766,766,496); INSERT INTO "Wine_Vineyard" VALUES(767,767,421); INSERT INTO "Wine_Vineyard" VALUES(768,768,514); INSERT INTO "Wine_Vineyard" VALUES(769,769,16); INSERT INTO "Wine_Vineyard" VALUES(770,770,515); INSERT INTO "Wine_Vineyard" VALUES(771,771,516); INSERT INTO "Wine_Vineyard" VALUES(772,772,492); INSERT INTO "Wine_Vineyard" VALUES(773,773,41); INSERT INTO "Wine_Vineyard" VALUES(774,774,517); INSERT INTO "Wine_Vineyard" VALUES(775,775,40); INSERT INTO "Wine_Vineyard" VALUES(776,776,518); INSERT INTO "Wine_Vineyard" VALUES(777,777,519); INSERT INTO "Wine_Vineyard" VALUES(778,778,430); INSERT INTO "Wine_Vineyard" VALUES(779,779,520); INSERT INTO "Wine_Vineyard" VALUES(780,780,119); INSERT INTO "Wine_Vineyard" VALUES(781,781,179); INSERT INTO "Wine_Vineyard" VALUES(782,782,266); INSERT INTO "Wine_Vineyard" VALUES(783,783,224); INSERT INTO "Wine_Vineyard" VALUES(784,784,143); INSERT INTO "Wine_Vineyard" VALUES(785,785,521); INSERT INTO "Wine_Vineyard" VALUES(786,786,522); INSERT INTO "Wine_Vineyard" VALUES(787,787,275); INSERT INTO "Wine_Vineyard" VALUES(788,788,63); INSERT INTO "Wine_Vineyard" VALUES(789,789,523); INSERT INTO "Wine_Vineyard" VALUES(790,790,46); INSERT INTO "Wine_Vineyard" VALUES(791,791,524); INSERT INTO "Wine_Vineyard" VALUES(792,792,525); INSERT INTO "Wine_Vineyard" VALUES(793,793,526); INSERT INTO "Wine_Vineyard" VALUES(794,794,313); INSERT INTO "Wine_Vineyard" VALUES(795,795,161); INSERT INTO "Wine_Vineyard" VALUES(796,796,506); INSERT INTO "Wine_Vineyard" VALUES(797,797,527); INSERT INTO "Wine_Vineyard" VALUES(798,798,40); INSERT INTO "Wine_Vineyard" VALUES(799,799,280); INSERT INTO "Wine_Vineyard" VALUES(800,800,528); INSERT INTO "Wine_Vineyard" VALUES(801,801,529); INSERT INTO "Wine_Vineyard" VALUES(802,802,155); INSERT INTO "Wine_Vineyard" VALUES(803,803,530); INSERT INTO "Wine_Vineyard" VALUES(804,804,523); INSERT INTO "Wine_Vineyard" VALUES(805,805,91); INSERT INTO "Wine_Vineyard" VALUES(806,806,531); INSERT INTO "Wine_Vineyard" VALUES(807,807,532); INSERT INTO "Wine_Vineyard" VALUES(808,808,444); INSERT INTO "Wine_Vineyard" VALUES(809,809,533); INSERT INTO "Wine_Vineyard" VALUES(810,810,534); INSERT INTO "Wine_Vineyard" VALUES(811,811,293); INSERT INTO "Wine_Vineyard" VALUES(812,812,145); INSERT INTO "Wine_Vineyard" VALUES(813,813,368); INSERT INTO "Wine_Vineyard" VALUES(814,814,522); INSERT INTO "Wine_Vineyard" VALUES(815,815,186); INSERT INTO "Wine_Vineyard" VALUES(816,816,535); INSERT INTO "Wine_Vineyard" VALUES(817,817,390); INSERT INTO "Wine_Vineyard" VALUES(818,818,348); INSERT INTO "Wine_Vineyard" VALUES(819,819,536); INSERT INTO "Wine_Vineyard" VALUES(820,820,506); INSERT INTO "Wine_Vineyard" VALUES(821,821,537); INSERT INTO "Wine_Vineyard" VALUES(822,822,538); INSERT INTO "Wine_Vineyard" VALUES(823,823,539); INSERT INTO "Wine_Vineyard" VALUES(824,824,540); INSERT INTO "Wine_Vineyard" VALUES(825,825,47); INSERT INTO "Wine_Vineyard" VALUES(826,826,541); INSERT INTO "Wine_Vineyard" VALUES(827,827,463); INSERT INTO "Wine_Vineyard" VALUES(828,828,542); INSERT INTO "Wine_Vineyard" VALUES(829,829,340); INSERT INTO "Wine_Vineyard" VALUES(830,830,543); INSERT INTO "Wine_Vineyard" VALUES(831,831,544); INSERT INTO "Wine_Vineyard" VALUES(832,832,466); INSERT INTO "Wine_Vineyard" VALUES(833,833,545); INSERT INTO "Wine_Vineyard" VALUES(834,834,318); INSERT INTO "Wine_Vineyard" VALUES(835,835,381); INSERT INTO "Wine_Vineyard" VALUES(836,836,10); INSERT INTO "Wine_Vineyard" VALUES(837,837,546); INSERT INTO "Wine_Vineyard" VALUES(838,838,547); INSERT INTO "Wine_Vineyard" VALUES(839,839,205); INSERT INTO "Wine_Vineyard" VALUES(840,840,548); INSERT INTO "Wine_Vineyard" VALUES(841,841,318); INSERT INTO "Wine_Vineyard" VALUES(842,842,544); INSERT INTO "Wine_Vineyard" VALUES(843,843,512); INSERT INTO "Wine_Vineyard" VALUES(844,844,549); INSERT INTO "Wine_Vineyard" VALUES(845,845,140); INSERT INTO "Wine_Vineyard" VALUES(846,846,322); INSERT INTO "Wine_Vineyard" VALUES(847,847,550); INSERT INTO "Wine_Vineyard" VALUES(848,848,551); INSERT INTO "Wine_Vineyard" VALUES(849,849,552); INSERT INTO "Wine_Vineyard" VALUES(850,850,553); INSERT INTO "Wine_Vineyard" VALUES(851,851,554); INSERT INTO "Wine_Vineyard" VALUES(852,852,493); INSERT INTO "Wine_Vineyard" VALUES(853,853,91); INSERT INTO "Wine_Vineyard" VALUES(854,854,555); INSERT INTO "Wine_Vineyard" VALUES(855,855,153); INSERT INTO "Wine_Vineyard" VALUES(856,856,556); INSERT INTO "Wine_Vineyard" VALUES(857,857,557); INSERT INTO "Wine_Vineyard" VALUES(858,858,558); INSERT INTO "Wine_Vineyard" VALUES(859,859,559); INSERT INTO "Wine_Vineyard" VALUES(860,860,560); INSERT INTO "Wine_Vineyard" VALUES(861,861,561); INSERT INTO "Wine_Vineyard" VALUES(862,862,445); INSERT INTO "Wine_Vineyard" VALUES(863,863,508); INSERT INTO "Wine_Vineyard" VALUES(864,864,179); INSERT INTO "Wine_Vineyard" VALUES(865,865,169); INSERT INTO "Wine_Vineyard" VALUES(866,866,368); INSERT INTO "Wine_Vineyard" VALUES(867,867,179); INSERT INTO "Wine_Vineyard" VALUES(868,868,437); INSERT INTO "Wine_Vineyard" VALUES(869,869,366); INSERT INTO "Wine_Vineyard" VALUES(870,870,541); INSERT INTO "Wine_Vineyard" VALUES(871,871,562); INSERT INTO "Wine_Vineyard" VALUES(872,872,136); INSERT INTO "Wine_Vineyard" VALUES(873,873,469); INSERT INTO "Wine_Vineyard" VALUES(874,874,563); INSERT INTO "Wine_Vineyard" VALUES(875,875,564); INSERT INTO "Wine_Vineyard" VALUES(876,876,565); INSERT INTO "Wine_Vineyard" VALUES(877,877,324); INSERT INTO "Wine_Vineyard" VALUES(878,878,344); INSERT INTO "Wine_Vineyard" VALUES(879,879,566); INSERT INTO "Wine_Vineyard" VALUES(880,880,506); INSERT INTO "Wine_Vineyard" VALUES(881,881,423); INSERT INTO "Wine_Vineyard" VALUES(882,882,563); INSERT INTO "Wine_Vineyard" VALUES(883,883,293); INSERT INTO "Wine_Vineyard" VALUES(884,884,517); INSERT INTO "Wine_Vineyard" VALUES(885,885,501); INSERT INTO "Wine_Vineyard" VALUES(886,886,355); INSERT INTO "Wine_Vineyard" VALUES(887,887,567); INSERT INTO "Wine_Vineyard" VALUES(888,888,568); INSERT INTO "Wine_Vineyard" VALUES(889,889,177); INSERT INTO "Wine_Vineyard" VALUES(890,890,453); INSERT INTO "Wine_Vineyard" VALUES(891,891,470); INSERT INTO "Wine_Vineyard" VALUES(892,892,493); INSERT INTO "Wine_Vineyard" VALUES(893,893,469); INSERT INTO "Wine_Vineyard" VALUES(894,894,569); INSERT INTO "Wine_Vineyard" VALUES(895,895,205); INSERT INTO "Wine_Vineyard" VALUES(896,896,390); INSERT INTO "Wine_Vineyard" VALUES(897,897,479); INSERT INTO "Wine_Vineyard" VALUES(898,898,382); INSERT INTO "Wine_Vineyard" VALUES(899,899,264); INSERT INTO "Wine_Vineyard" VALUES(900,900,477); INSERT INTO "Wine_Vineyard" VALUES(901,901,372); INSERT INTO "Wine_Vineyard" VALUES(902,902,297); INSERT INTO "Wine_Vineyard" VALUES(903,903,570); INSERT INTO "Wine_Vineyard" VALUES(904,904,53); INSERT INTO "Wine_Vineyard" VALUES(905,905,571); INSERT INTO "Wine_Vineyard" VALUES(906,906,372); INSERT INTO "Wine_Vineyard" VALUES(907,907,499); INSERT INTO "Wine_Vineyard" VALUES(908,908,480); INSERT INTO "Wine_Vineyard" VALUES(909,909,436); INSERT INTO "Wine_Vineyard" VALUES(910,910,224); INSERT INTO "Wine_Vineyard" VALUES(911,911,324); INSERT INTO "Wine_Vineyard" VALUES(912,912,207); INSERT INTO "Wine_Vineyard" VALUES(913,913,224); INSERT INTO "Wine_Vineyard" VALUES(914,915,430); INSERT INTO "Wine_Vineyard" VALUES(915,916,572); INSERT INTO "Wine_Vineyard" VALUES(916,917,543); INSERT INTO "Wine_Vineyard" VALUES(917,918,151); INSERT INTO "Wine_Vineyard" VALUES(918,919,422); INSERT INTO "Wine_Vineyard" VALUES(919,921,265); INSERT INTO "Wine_Vineyard" VALUES(920,922,573); INSERT INTO "Wine_Vineyard" VALUES(921,923,46); INSERT INTO "Wine_Vineyard" VALUES(922,924,368); INSERT INTO "Wine_Vineyard" VALUES(923,925,151); INSERT INTO "Wine_Vineyard" VALUES(924,927,402); INSERT INTO "Wine_Vineyard" VALUES(925,928,474); INSERT INTO "Wine_Vineyard" VALUES(926,929,413); INSERT INTO "Wine_Vineyard" VALUES(927,930,507); INSERT INTO "Wine_Vineyard" VALUES(928,931,536); INSERT INTO "Wine_Vineyard" VALUES(929,932,574); INSERT INTO "Wine_Vineyard" VALUES(930,933,575); INSERT INTO "Wine_Vineyard" VALUES(931,934,224); INSERT INTO "Wine_Vineyard" VALUES(932,935,300); INSERT INTO "Wine_Vineyard" VALUES(933,936,269); INSERT INTO "Wine_Vineyard" VALUES(934,937,576); INSERT INTO "Wine_Vineyard" VALUES(935,938,233); INSERT INTO "Wine_Vineyard" VALUES(936,939,577); INSERT INTO "Wine_Vineyard" VALUES(937,940,578); INSERT INTO "Wine_Vineyard" VALUES(938,941,420); INSERT INTO "Wine_Vineyard" VALUES(939,942,579); INSERT INTO "Wine_Vineyard" VALUES(940,943,580); INSERT INTO "Wine_Vineyard" VALUES(941,944,534); INSERT INTO "Wine_Vineyard" VALUES(942,945,227); INSERT INTO "Wine_Vineyard" VALUES(943,946,581); INSERT INTO "Wine_Vineyard" VALUES(944,947,582); INSERT INTO "Wine_Vineyard" VALUES(945,948,583); INSERT INTO "Wine_Vineyard" VALUES(946,949,584); INSERT INTO "Wine_Vineyard" VALUES(947,950,585); INSERT INTO "Wine_Vineyard" VALUES(948,951,522); INSERT INTO "Wine_Vineyard" VALUES(949,952,586); INSERT INTO "Wine_Vineyard" VALUES(950,953,587); INSERT INTO "Wine_Vineyard" VALUES(951,954,236); INSERT INTO "Wine_Vineyard" VALUES(952,955,236); INSERT INTO "Wine_Vineyard" VALUES(953,956,333); INSERT INTO "Wine_Vineyard" VALUES(954,957,588); INSERT INTO "Wine_Vineyard" VALUES(955,958,450); INSERT INTO "Wine_Vineyard" VALUES(956,959,589); INSERT INTO "Wine_Vineyard" VALUES(957,960,369); INSERT INTO "Wine_Vineyard" VALUES(958,961,207); INSERT INTO "Wine_Vineyard" VALUES(959,962,590); INSERT INTO "Wine_Vineyard" VALUES(960,963,591); INSERT INTO "Wine_Vineyard" VALUES(961,964,12); INSERT INTO "Wine_Vineyard" VALUES(962,965,273); INSERT INTO "Wine_Vineyard" VALUES(963,966,577); INSERT INTO "Wine_Vineyard" VALUES(964,967,430); INSERT INTO "Wine_Vineyard" VALUES(965,968,128); INSERT INTO "Wine_Vineyard" VALUES(966,969,437); INSERT INTO "Wine_Vineyard" VALUES(967,970,592); INSERT INTO "Wine_Vineyard" VALUES(968,971,306); INSERT INTO "Wine_Vineyard" VALUES(969,972,248); INSERT INTO "Wine_Vineyard" VALUES(970,973,163); INSERT INTO "Wine_Vineyard" VALUES(971,974,593); INSERT INTO "Wine_Vineyard" VALUES(972,975,234); INSERT INTO "Wine_Vineyard" VALUES(973,976,246); INSERT INTO "Wine_Vineyard" VALUES(974,977,594); INSERT INTO "Wine_Vineyard" VALUES(975,978,595); INSERT INTO "Wine_Vineyard" VALUES(976,979,281); INSERT INTO "Wine_Vineyard" VALUES(977,980,179); INSERT INTO "Wine_Vineyard" VALUES(978,981,596); INSERT INTO "Wine_Vineyard" VALUES(979,982,179); INSERT INTO "Wine_Vineyard" VALUES(980,983,249); INSERT INTO "Wine_Vineyard" VALUES(981,984,137); INSERT INTO "Wine_Vineyard" VALUES(982,985,145); INSERT INTO "Wine_Vineyard" VALUES(983,986,106); INSERT INTO "Wine_Vineyard" VALUES(984,987,597); INSERT INTO "Wine_Vineyard" VALUES(985,988,64); INSERT INTO "Wine_Vineyard" VALUES(986,989,598); INSERT INTO "Wine_Vineyard" VALUES(987,990,577); INSERT INTO "Wine_Vineyard" VALUES(988,991,599); INSERT INTO "Wine_Vineyard" VALUES(989,992,582); INSERT INTO "Wine_Vineyard" VALUES(990,993,600); INSERT INTO "Wine_Vineyard" VALUES(991,994,471); INSERT INTO "Wine_Vineyard" VALUES(992,995,601); INSERT INTO "Wine_Vineyard" VALUES(993,996,602); INSERT INTO "Wine_Vineyard" VALUES(994,997,22); INSERT INTO "Wine_Vineyard" VALUES(995,998,603); INSERT INTO "Wine_Vineyard" VALUES(996,999,604); INSERT INTO "Wine_Vineyard" VALUES(997,1000,605); INSERT INTO "Wine_Vineyard" VALUES(998,1001,284); INSERT INTO "Wine_Vineyard" VALUES(999,1002,606); INSERT INTO "Wine_Vineyard" VALUES(1000,1003,103); INSERT INTO "Wine_Vineyard" VALUES(1001,1004,273); INSERT INTO "Wine_Vineyard" VALUES(1002,1005,607); INSERT INTO "Wine_Vineyard" VALUES(1003,1006,608); INSERT INTO "Wine_Vineyard" VALUES(1004,1007,31); INSERT INTO "Wine_Vineyard" VALUES(1005,1008,577); INSERT INTO "Wine_Vineyard" VALUES(1006,1009,349); INSERT INTO "Wine_Vineyard" VALUES(1007,1010,23); INSERT INTO "Wine_Vineyard" VALUES(1008,1011,213); INSERT INTO "Wine_Vineyard" VALUES(1009,1012,609); INSERT INTO "Wine_Vineyard" VALUES(1010,1013,610); INSERT INTO "Wine_Vineyard" VALUES(1011,1014,611); INSERT INTO "Wine_Vineyard" VALUES(1012,1015,612); INSERT INTO "Wine_Vineyard" VALUES(1013,1016,225); INSERT INTO "Wine_Vineyard" VALUES(1014,1017,613); INSERT INTO "Wine_Vineyard" VALUES(1015,1018,54); INSERT INTO "Wine_Vineyard" VALUES(1016,1019,614); INSERT INTO "Wine_Vineyard" VALUES(1017,1020,615); INSERT INTO "Wine_Vineyard" VALUES(1018,1021,616); INSERT INTO "Wine_Vineyard" VALUES(1019,1022,441); INSERT INTO "Wine_Vineyard" VALUES(1020,1023,292); INSERT INTO "Wine_Vineyard" VALUES(1021,1024,134); INSERT INTO "Wine_Vineyard" VALUES(1022,1025,8); INSERT INTO "Wine_Vineyard" VALUES(1023,1026,617); INSERT INTO "Wine_Vineyard" VALUES(1024,1027,605); INSERT INTO "Wine_Vineyard" VALUES(1025,1028,405); INSERT INTO "Wine_Vineyard" VALUES(1026,1029,618); INSERT INTO "Wine_Vineyard" VALUES(1027,1030,200); INSERT INTO "Wine_Vineyard" VALUES(1028,1031,324); INSERT INTO "Wine_Vineyard" VALUES(1029,1032,236); INSERT INTO "Wine_Vineyard" VALUES(1030,1033,323); INSERT INTO "Wine_Vineyard" VALUES(1031,1034,609); INSERT INTO "Wine_Vineyard" VALUES(1032,1035,375); INSERT INTO "Wine_Vineyard" VALUES(1033,1036,615); INSERT INTO "Wine_Vineyard" VALUES(1034,1037,619); INSERT INTO "Wine_Vineyard" VALUES(1035,1038,620); INSERT INTO "Wine_Vineyard" VALUES(1036,1039,59); INSERT INTO "Wine_Vineyard" VALUES(1037,1040,621); INSERT INTO "Wine_Vineyard" VALUES(1038,1041,174); INSERT INTO "Wine_Vineyard" VALUES(1039,1042,622); INSERT INTO "Wine_Vineyard" VALUES(1040,1043,623); INSERT INTO "Wine_Vineyard" VALUES(1041,1044,624); INSERT INTO "Wine_Vineyard" VALUES(1042,1045,209); INSERT INTO "Wine_Vineyard" VALUES(1043,1046,209); INSERT INTO "Wine_Vineyard" VALUES(1044,1047,98); INSERT INTO "Wine_Vineyard" VALUES(1045,1048,611); INSERT INTO "Wine_Vineyard" VALUES(1046,1049,625); INSERT INTO "Wine_Vineyard" VALUES(1047,1050,293); INSERT INTO "Wine_Vineyard" VALUES(1048,1051,626); INSERT INTO "Wine_Vineyard" VALUES(1049,1052,627); INSERT INTO "Wine_Vineyard" VALUES(1050,1053,614); INSERT INTO "Wine_Vineyard" VALUES(1051,1054,471); INSERT INTO "Wine_Vineyard" VALUES(1052,1055,628); INSERT INTO "Wine_Vineyard" VALUES(1053,1056,27); INSERT INTO "Wine_Vineyard" VALUES(1054,1057,603); INSERT INTO "Wine_Vineyard" VALUES(1055,1058,629); INSERT INTO "Wine_Vineyard" VALUES(1056,1059,422); INSERT INTO "Wine_Vineyard" VALUES(1057,1060,22); INSERT INTO "Wine_Vineyard" VALUES(1058,1061,630); INSERT INTO "Wine_Vineyard" VALUES(1059,1062,179); INSERT INTO "Wine_Vineyard" VALUES(1060,1063,631); INSERT INTO "Wine_Vineyard" VALUES(1061,1064,547); INSERT INTO "Wine_Vineyard" VALUES(1062,1065,200); INSERT INTO "Wine_Vineyard" VALUES(1063,1066,22); INSERT INTO "Wine_Vineyard" VALUES(1064,1067,612); INSERT INTO "Wine_Vineyard" VALUES(1065,1068,569); INSERT INTO "Wine_Vineyard" VALUES(1066,1069,153); INSERT INTO "Wine_Vineyard" VALUES(1067,1070,632); INSERT INTO "Wine_Vineyard" VALUES(1068,1071,582); INSERT INTO "Wine_Vineyard" VALUES(1069,1072,633); INSERT INTO "Wine_Vineyard" VALUES(1070,1073,262); INSERT INTO "Wine_Vineyard" VALUES(1071,1074,233); INSERT INTO "Wine_Vineyard" VALUES(1072,1075,338); INSERT INTO "Wine_Vineyard" VALUES(1073,1076,634); INSERT INTO "Wine_Vineyard" VALUES(1074,1077,635); INSERT INTO "Wine_Vineyard" VALUES(1075,1078,636); INSERT INTO "Wine_Vineyard" VALUES(1076,1079,140); INSERT INTO "Wine_Vineyard" VALUES(1077,1080,236); INSERT INTO "Wine_Vineyard" VALUES(1078,1081,637); INSERT INTO "Wine_Vineyard" VALUES(1079,1082,618); INSERT INTO "Wine_Vineyard" VALUES(1080,1083,638); INSERT INTO "Wine_Vineyard" VALUES(1081,1084,552); INSERT INTO "Wine_Vineyard" VALUES(1082,1085,639); INSERT INTO "Wine_Vineyard" VALUES(1083,1086,640); INSERT INTO "Wine_Vineyard" VALUES(1084,1087,207); INSERT INTO "Wine_Vineyard" VALUES(1085,1088,641); INSERT INTO "Wine_Vineyard" VALUES(1086,1089,642); INSERT INTO "Wine_Vineyard" VALUES(1087,1090,324); INSERT INTO "Wine_Vineyard" VALUES(1088,1091,98); INSERT INTO "Wine_Vineyard" VALUES(1089,1092,592); INSERT INTO "Wine_Vineyard" VALUES(1090,1093,124); INSERT INTO "Wine_Vineyard" VALUES(1091,1094,113); INSERT INTO "Wine_Vineyard" VALUES(1092,1095,614); INSERT INTO "Wine_Vineyard" VALUES(1093,1096,159); INSERT INTO "Wine_Vineyard" VALUES(1094,1097,200); INSERT INTO "Wine_Vineyard" VALUES(1095,1098,225); INSERT INTO "Wine_Vineyard" VALUES(1096,1099,441); INSERT INTO "Wine_Vineyard" VALUES(1097,1100,634); INSERT INTO "Wine_Vineyard" VALUES(1098,1101,179); INSERT INTO "Wine_Vineyard" VALUES(1099,1102,643); INSERT INTO "Wine_Vineyard" VALUES(1100,1103,598); INSERT INTO "Wine_Vineyard" VALUES(1101,1104,594); INSERT INTO "Wine_Vineyard" VALUES(1102,1105,644); INSERT INTO "Wine_Vineyard" VALUES(1103,1106,405); INSERT INTO "Wine_Vineyard" VALUES(1104,1107,522); INSERT INTO "Wine_Vineyard" VALUES(1105,1108,113); INSERT INTO "Wine_Vineyard" VALUES(1106,1109,83); INSERT INTO "Wine_Vineyard" VALUES(1107,1110,292); INSERT INTO "Wine_Vineyard" VALUES(1108,1111,624); INSERT INTO "Wine_Vineyard" VALUES(1109,1112,645); INSERT INTO "Wine_Vineyard" VALUES(1110,1113,646); INSERT INTO "Wine_Vineyard" VALUES(1111,1114,647); INSERT INTO "Wine_Vineyard" VALUES(1112,1115,648); INSERT INTO "Wine_Vineyard" VALUES(1113,1116,634); INSERT INTO "Wine_Vineyard" VALUES(1114,1117,649); INSERT INTO "Wine_Vineyard" VALUES(1115,1118,650); INSERT INTO "Wine_Vineyard" VALUES(1116,1119,31); INSERT INTO "Wine_Vineyard" VALUES(1117,1120,17); INSERT INTO "Wine_Vineyard" VALUES(1118,1121,244); INSERT INTO "Wine_Vineyard" VALUES(1119,1122,651); INSERT INTO "Wine_Vineyard" VALUES(1120,1123,252); INSERT INTO "Wine_Vineyard" VALUES(1121,1124,652); INSERT INTO "Wine_Vineyard" VALUES(1122,1125,653); INSERT INTO "Wine_Vineyard" VALUES(1123,1126,646); INSERT INTO "Wine_Vineyard" VALUES(1124,1127,654); INSERT INTO "Wine_Vineyard" VALUES(1125,1128,586); INSERT INTO "Wine_Vineyard" VALUES(1126,1129,270); INSERT INTO "Wine_Vineyard" VALUES(1127,1130,164); INSERT INTO "Wine_Vineyard" VALUES(1128,1131,655); INSERT INTO "Wine_Vineyard" VALUES(1129,1132,582); INSERT INTO "Wine_Vineyard" VALUES(1130,1133,99); INSERT INTO "Wine_Vineyard" VALUES(1131,1134,547); INSERT INTO "Wine_Vineyard" VALUES(1132,1135,656); INSERT INTO "Wine_Vineyard" VALUES(1133,1136,233); INSERT INTO "Wine_Vineyard" VALUES(1134,1137,8); INSERT INTO "Wine_Vineyard" VALUES(1135,1138,225); INSERT INTO "Wine_Vineyard" VALUES(1136,1139,657); INSERT INTO "Wine_Vineyard" VALUES(1137,1140,582); INSERT INTO "Wine_Vineyard" VALUES(1138,1141,658); INSERT INTO "Wine_Vineyard" VALUES(1139,1142,659); INSERT INTO "Wine_Vineyard" VALUES(1140,1143,660); INSERT INTO "Wine_Vineyard" VALUES(1141,1144,272); INSERT INTO "Wine_Vineyard" VALUES(1142,1145,559); INSERT INTO "Wine_Vineyard" VALUES(1143,1146,1); INSERT INTO "Wine_Vineyard" VALUES(1144,1147,17); INSERT INTO "Wine_Vineyard" VALUES(1145,1148,661); INSERT INTO "Wine_Vineyard" VALUES(1146,1149,662); INSERT INTO "Wine_Vineyard" VALUES(1147,1150,663); INSERT INTO "Wine_Vineyard" VALUES(1148,1151,664); INSERT INTO "Wine_Vineyard" VALUES(1149,1152,665); INSERT INTO "Wine_Vineyard" VALUES(1150,1153,106); INSERT INTO "Wine_Vineyard" VALUES(1151,1154,666); INSERT INTO "Wine_Vineyard" VALUES(1152,1155,281); INSERT INTO "Wine_Vineyard" VALUES(1153,1156,309); INSERT INTO "Wine_Vineyard" VALUES(1154,1157,667); INSERT INTO "Wine_Vineyard" VALUES(1155,1158,106); INSERT INTO "Wine_Vineyard" VALUES(1156,1159,122); INSERT INTO "Wine_Vineyard" VALUES(1157,1160,544); INSERT INTO "Wine_Vineyard" VALUES(1158,1161,587); INSERT INTO "Wine_Vineyard" VALUES(1159,1162,338); INSERT INTO "Wine_Vineyard" VALUES(1160,1163,608); INSERT INTO "Wine_Vineyard" VALUES(1161,1164,668); INSERT INTO "Wine_Vineyard" VALUES(1162,1165,118); INSERT INTO "Wine_Vineyard" VALUES(1163,1166,155); INSERT INTO "Wine_Vineyard" VALUES(1164,1167,651); INSERT INTO "Wine_Vineyard" VALUES(1165,1168,669); INSERT INTO "Wine_Vineyard" VALUES(1166,1169,648); INSERT INTO "Wine_Vineyard" VALUES(1167,1170,670); INSERT INTO "Wine_Vineyard" VALUES(1168,1171,249); INSERT INTO "Wine_Vineyard" VALUES(1169,1172,294); INSERT INTO "Wine_Vineyard" VALUES(1170,1173,276); INSERT INTO "Wine_Vineyard" VALUES(1171,1174,579); INSERT INTO "Wine_Vineyard" VALUES(1172,1175,435); INSERT INTO "Wine_Vineyard" VALUES(1173,1176,671); INSERT INTO "Wine_Vineyard" VALUES(1174,1177,672); INSERT INTO "Wine_Vineyard" VALUES(1175,1178,673); INSERT INTO "Wine_Vineyard" VALUES(1176,1179,653); INSERT INTO "Wine_Vineyard" VALUES(1177,1180,436); INSERT INTO "Wine_Vineyard" VALUES(1178,1181,99); INSERT INTO "Wine_Vineyard" VALUES(1179,1182,246); INSERT INTO "Wine_Vineyard" VALUES(1180,1183,294); INSERT INTO "Wine_Vineyard" VALUES(1181,1184,422); INSERT INTO "Wine_Vineyard" VALUES(1182,1185,54); INSERT INTO "Wine_Vineyard" VALUES(1183,1186,405); INSERT INTO "Wine_Vineyard" VALUES(1184,1187,276); INSERT INTO "Wine_Vineyard" VALUES(1185,1188,674); INSERT INTO "Wine_Vineyard" VALUES(1186,1189,675); INSERT INTO "Wine_Vineyard" VALUES(1187,1190,450); INSERT INTO "Wine_Vineyard" VALUES(1188,1191,672); INSERT INTO "Wine_Vineyard" VALUES(1189,1192,676); INSERT INTO "Wine_Vineyard" VALUES(1190,1193,99); INSERT INTO "Wine_Vineyard" VALUES(1191,1194,677); INSERT INTO "Wine_Vineyard" VALUES(1192,1195,678); INSERT INTO "Wine_Vineyard" VALUES(1193,1196,679); INSERT INTO "Wine_Vineyard" VALUES(1194,1197,246); INSERT INTO "Wine_Vineyard" VALUES(1195,1198,441); INSERT INTO "Wine_Vineyard" VALUES(1196,1199,592); INSERT INTO "Wine_Vineyard" VALUES(1197,1200,63); INSERT INTO "Wine_Vineyard" VALUES(1198,1201,338); INSERT INTO "Wine_Vineyard" VALUES(1199,1202,465); INSERT INTO "Wine_Vineyard" VALUES(1200,1203,680); INSERT INTO "Wine_Vineyard" VALUES(1201,1204,17); INSERT INTO "Wine_Vineyard" VALUES(1202,1205,592); INSERT INTO "Wine_Vineyard" VALUES(1203,1206,483); INSERT INTO "Wine_Vineyard" VALUES(1204,1207,455); INSERT INTO "Wine_Vineyard" VALUES(1205,1208,681); INSERT INTO "Wine_Vineyard" VALUES(1206,1209,440); INSERT INTO "Wine_Vineyard" VALUES(1207,1210,17); INSERT INTO "Wine_Vineyard" VALUES(1208,1211,591); INSERT INTO "Wine_Vineyard" VALUES(1209,1212,682); INSERT INTO "Wine_Vineyard" VALUES(1210,1213,683); INSERT INTO "Wine_Vineyard" VALUES(1211,1214,559); INSERT INTO "Wine_Vineyard" VALUES(1212,1215,684); INSERT INTO "Wine_Vineyard" VALUES(1213,1216,156); INSERT INTO "Wine_Vineyard" VALUES(1214,1217,413); INSERT INTO "Wine_Vineyard" VALUES(1215,1218,163); INSERT INTO "Wine_Vineyard" VALUES(1216,1219,685); INSERT INTO "Wine_Vineyard" VALUES(1217,1220,686); INSERT INTO "Wine_Vineyard" VALUES(1218,1221,294); INSERT INTO "Wine_Vineyard" VALUES(1219,1222,437); INSERT INTO "Wine_Vineyard" VALUES(1220,1223,116); INSERT INTO "Wine_Vineyard" VALUES(1221,1224,17); INSERT INTO "Wine_Vineyard" VALUES(1222,1225,8); INSERT INTO "Wine_Vineyard" VALUES(1223,1226,687); INSERT INTO "Wine_Vineyard" VALUES(1224,1227,100); INSERT INTO "Wine_Vineyard" VALUES(1225,1228,522); INSERT INTO "Wine_Vineyard" VALUES(1226,1229,552); INSERT INTO "Wine_Vineyard" VALUES(1227,1230,688); INSERT INTO "Wine_Vineyard" VALUES(1228,1231,422); INSERT INTO "Wine_Vineyard" VALUES(1229,1232,689); INSERT INTO "Wine_Vineyard" VALUES(1230,1233,690); INSERT INTO "Wine_Vineyard" VALUES(1231,1234,17); INSERT INTO "Wine_Vineyard" VALUES(1232,1235,3); INSERT INTO "Wine_Vineyard" VALUES(1233,1236,691); INSERT INTO "Wine_Vineyard" VALUES(1234,1237,692); INSERT INTO "Wine_Vineyard" VALUES(1235,1238,693); INSERT INTO "Wine_Vineyard" VALUES(1236,1239,656); INSERT INTO "Wine_Vineyard" VALUES(1237,1240,80); INSERT INTO "Wine_Vineyard" VALUES(1238,1241,534); INSERT INTO "Wine_Vineyard" VALUES(1239,1242,694); INSERT INTO "Wine_Vineyard" VALUES(1240,1243,689); INSERT INTO "Wine_Vineyard" VALUES(1241,1244,695); INSERT INTO "Wine_Vineyard" VALUES(1242,1245,696); INSERT INTO "Wine_Vineyard" VALUES(1243,1246,653); INSERT INTO "Wine_Vineyard" VALUES(1244,1247,697); INSERT INTO "Wine_Vineyard" VALUES(1245,1248,698); INSERT INTO "Wine_Vineyard" VALUES(1246,1249,689); INSERT INTO "Wine_Vineyard" VALUES(1247,1250,459); INSERT INTO "Wine_Vineyard" VALUES(1248,1251,699); INSERT INTO "Wine_Vineyard" VALUES(1249,1252,700); INSERT INTO "Wine_Vineyard" VALUES(1250,1253,696); INSERT INTO "Wine_Vineyard" VALUES(1251,1254,701); INSERT INTO "Wine_Vineyard" VALUES(1252,1255,702); INSERT INTO "Wine_Vineyard" VALUES(1253,1256,703); INSERT INTO "Wine_Vineyard" VALUES(1254,1257,704); INSERT INTO "Wine_Vineyard" VALUES(1255,1258,705); INSERT INTO "Wine_Vineyard" VALUES(1256,1259,143); INSERT INTO "Wine_Vineyard" VALUES(1257,1260,706); INSERT INTO "Wine_Vineyard" VALUES(1258,1261,707); INSERT INTO "Wine_Vineyard" VALUES(1259,1262,501); INSERT INTO "Wine_Vineyard" VALUES(1260,1263,66); INSERT INTO "Wine_Vineyard" VALUES(1261,1264,584); INSERT INTO "Wine_Vineyard" VALUES(1262,1265,40); INSERT INTO "Wine_Vineyard" VALUES(1263,1266,708); INSERT INTO "Wine_Vineyard" VALUES(1264,1267,653); INSERT INTO "Wine_Vineyard" VALUES(1265,1268,709); INSERT INTO "Wine_Vineyard" VALUES(1266,1269,435); INSERT INTO "Wine_Vineyard" VALUES(1267,1270,710); INSERT INTO "Wine_Vineyard" VALUES(1268,1271,50); INSERT INTO "Wine_Vineyard" VALUES(1269,1272,711); INSERT INTO "Wine_Vineyard" VALUES(1270,1273,712); INSERT INTO "Wine_Vineyard" VALUES(1271,1274,453); INSERT INTO "Wine_Vineyard" VALUES(1272,1275,713); INSERT INTO "Wine_Vineyard" VALUES(1273,1276,267); INSERT INTO "Wine_Vineyard" VALUES(1274,1277,714); INSERT INTO "Wine_Vineyard" VALUES(1275,1278,715); INSERT INTO "Wine_Vineyard" VALUES(1276,1279,716); INSERT INTO "Wine_Vineyard" VALUES(1277,1280,463); INSERT INTO "Wine_Vineyard" VALUES(1278,1281,717); INSERT INTO "Wine_Vineyard" VALUES(1279,1282,718); INSERT INTO "Wine_Vineyard" VALUES(1280,1283,719); INSERT INTO "Wine_Vineyard" VALUES(1281,1284,720); INSERT INTO "Wine_Vineyard" VALUES(1282,1285,99); INSERT INTO "Wine_Vineyard" VALUES(1283,1286,721); INSERT INTO "Wine_Vineyard" VALUES(1284,1287,722); INSERT INTO "Wine_Vineyard" VALUES(1285,1288,208); INSERT INTO "Wine_Vineyard" VALUES(1286,1289,63); INSERT INTO "Wine_Vineyard" VALUES(1287,1290,723); INSERT INTO "Wine_Vineyard" VALUES(1288,1291,724); INSERT INTO "Wine_Vineyard" VALUES(1289,1292,697); INSERT INTO "Wine_Vineyard" VALUES(1290,1293,256); INSERT INTO "Wine_Vineyard" VALUES(1291,1294,725); INSERT INTO "Wine_Vineyard" VALUES(1292,1295,642); INSERT INTO "Wine_Vineyard" VALUES(1293,1296,726); INSERT INTO "Wine_Vineyard" VALUES(1294,1297,587); INSERT INTO "Wine_Vineyard" VALUES(1295,1298,560); INSERT INTO "Wine_Vineyard" VALUES(1296,1299,681); INSERT INTO "Wine_Vineyard" VALUES(1297,1300,727); INSERT INTO "Wine_Vineyard" VALUES(1298,1301,728); INSERT INTO "Wine_Vineyard" VALUES(1299,1302,729); INSERT INTO "Wine_Vineyard" VALUES(1300,1303,25); INSERT INTO "Wine_Vineyard" VALUES(1301,1304,629); INSERT INTO "Wine_Vineyard" VALUES(1302,1305,344); INSERT INTO "Wine_Vineyard" VALUES(1303,1306,730); INSERT INTO "Wine_Vineyard" VALUES(1304,1307,731); INSERT INTO "Wine_Vineyard" VALUES(1305,1308,552); INSERT INTO "Wine_Vineyard" VALUES(1306,1309,650); INSERT INTO "Wine_Vineyard" VALUES(1307,1310,104); INSERT INTO "Wine_Vineyard" VALUES(1308,1311,413); INSERT INTO "Wine_Vineyard" VALUES(1309,1312,208); INSERT INTO "Wine_Vineyard" VALUES(1310,1313,732); INSERT INTO "Wine_Vineyard" VALUES(1311,1314,442); INSERT INTO "Wine_Vineyard" VALUES(1312,1315,733); INSERT INTO "Wine_Vineyard" VALUES(1313,1316,734); INSERT INTO "Wine_Vineyard" VALUES(1314,1317,144); INSERT INTO "Wine_Vineyard" VALUES(1315,1318,690); INSERT INTO "Wine_Vineyard" VALUES(1316,1319,600); INSERT INTO "Wine_Vineyard" VALUES(1317,1320,735); INSERT INTO "Wine_Vineyard" VALUES(1318,1321,222); INSERT INTO "Wine_Vineyard" VALUES(1319,1322,136); INSERT INTO "Wine_Vineyard" VALUES(1320,1323,736); INSERT INTO "Wine_Vineyard" VALUES(1321,1324,689); INSERT INTO "Wine_Vineyard" VALUES(1322,1325,324); INSERT INTO "Wine_Vineyard" VALUES(1323,1326,737); INSERT INTO "Wine_Vineyard" VALUES(1324,1327,17); INSERT INTO "Wine_Vineyard" VALUES(1325,1328,435); INSERT INTO "Wine_Vineyard" VALUES(1326,1329,496); INSERT INTO "Wine_Vineyard" VALUES(1327,1330,608); INSERT INTO "Wine_Vineyard" VALUES(1328,1331,738); INSERT INTO "Wine_Vineyard" VALUES(1329,1332,541); INSERT INTO "Wine_Vineyard" VALUES(1330,1333,280); INSERT INTO "Wine_Vineyard" VALUES(1331,1334,711); INSERT INTO "Wine_Vineyard" VALUES(1332,1335,739); INSERT INTO "Wine_Vineyard" VALUES(1333,1336,702); INSERT INTO "Wine_Vineyard" VALUES(1334,1337,740); INSERT INTO "Wine_Vineyard" VALUES(1335,1338,653); INSERT INTO "Wine_Vineyard" VALUES(1336,1339,741); INSERT INTO "Wine_Vineyard" VALUES(1337,1340,742); INSERT INTO "Wine_Vineyard" VALUES(1338,1341,209); INSERT INTO "Wine_Vineyard" VALUES(1339,1342,213); INSERT INTO "Wine_Vineyard" VALUES(1340,1343,743); INSERT INTO "Wine_Vineyard" VALUES(1341,1344,744); INSERT INTO "Wine_Vineyard" VALUES(1342,1345,462); INSERT INTO "Wine_Vineyard" VALUES(1343,1346,745); INSERT INTO "Wine_Vineyard" VALUES(1344,1347,746); INSERT INTO "Wine_Vineyard" VALUES(1345,1348,747); INSERT INTO "Wine_Vineyard" VALUES(1346,1349,693); INSERT INTO "Wine_Vineyard" VALUES(1347,1350,678); INSERT INTO "Wine_Vineyard" VALUES(1348,1351,748); INSERT INTO "Wine_Vineyard" VALUES(1349,1352,674); INSERT INTO "Wine_Vineyard" VALUES(1350,1353,749); INSERT INTO "Wine_Vineyard" VALUES(1351,1354,750); INSERT INTO "Wine_Vineyard" VALUES(1352,1355,3); INSERT INTO "Wine_Vineyard" VALUES(1353,1356,72); INSERT INTO "Wine_Vineyard" VALUES(1354,1357,422); INSERT INTO "Wine_Vineyard" VALUES(1355,1358,751); INSERT INTO "Wine_Vineyard" VALUES(1356,1359,334); INSERT INTO "Wine_Vineyard" VALUES(1357,1360,752); INSERT INTO "Wine_Vineyard" VALUES(1358,1361,753); INSERT INTO "Wine_Vineyard" VALUES(1359,1362,74); INSERT INTO "Wine_Vineyard" VALUES(1360,1363,754); INSERT INTO "Wine_Vineyard" VALUES(1361,1364,755); INSERT INTO "Wine_Vineyard" VALUES(1362,1365,756); INSERT INTO "Wine_Vineyard" VALUES(1363,1366,426); INSERT INTO "Wine_Vineyard" VALUES(1364,1367,442); INSERT INTO "Wine_Vineyard" VALUES(1365,1368,361); INSERT INTO "Wine_Vineyard" VALUES(1366,1369,280); INSERT INTO "Wine_Vineyard" VALUES(1367,1370,757); INSERT INTO "Wine_Vineyard" VALUES(1368,1371,758); INSERT INTO "Wine_Vineyard" VALUES(1369,1372,549); INSERT INTO "Wine_Vineyard" VALUES(1370,1373,130); INSERT INTO "Wine_Vineyard" VALUES(1371,1374,307); INSERT INTO "Wine_Vineyard" VALUES(1372,1375,759); INSERT INTO "Wine_Vineyard" VALUES(1373,1376,760); INSERT INTO "Wine_Vineyard" VALUES(1374,1377,748); INSERT INTO "Wine_Vineyard" VALUES(1375,1378,334); INSERT INTO "Wine_Vineyard" VALUES(1376,1379,761); INSERT INTO "Wine_Vineyard" VALUES(1377,1380,455); INSERT INTO "Wine_Vineyard" VALUES(1378,1381,762); INSERT INTO "Wine_Vineyard" VALUES(1379,1382,209); INSERT INTO "Wine_Vineyard" VALUES(1380,1383,100); INSERT INTO "Wine_Vineyard" VALUES(1381,1384,653); INSERT INTO "Wine_Vineyard" VALUES(1382,1385,749); INSERT INTO "Wine_Vineyard" VALUES(1383,1386,763); INSERT INTO "Wine_Vineyard" VALUES(1384,1387,764); INSERT INTO "Wine_Vineyard" VALUES(1385,1388,765); INSERT INTO "Wine_Vineyard" VALUES(1386,1389,662); INSERT INTO "Wine_Vineyard" VALUES(1387,1390,766); INSERT INTO "Wine_Vineyard" VALUES(1388,1391,234); INSERT INTO "Wine_Vineyard" VALUES(1389,1392,106); INSERT INTO "Wine_Vineyard" VALUES(1390,1393,767); INSERT INTO "Wine_Vineyard" VALUES(1391,1394,768); INSERT INTO "Wine_Vineyard" VALUES(1392,1395,397); INSERT INTO "Wine_Vineyard" VALUES(1393,1396,485); INSERT INTO "Wine_Vineyard" VALUES(1394,1397,3); INSERT INTO "Wine_Vineyard" VALUES(1395,1398,80); INSERT INTO "Wine_Vineyard" VALUES(1396,1399,769); INSERT INTO "Wine_Vineyard" VALUES(1397,1400,578); INSERT INTO "Wine_Vineyard" VALUES(1398,1401,770); INSERT INTO "Wine_Vineyard" VALUES(1399,1402,771); INSERT INTO "Wine_Vineyard" VALUES(1400,1403,273); INSERT INTO "Wine_Vineyard" VALUES(1401,1404,772); INSERT INTO "Wine_Vineyard" VALUES(1402,1405,773); INSERT INTO "Wine_Vineyard" VALUES(1403,1406,664); INSERT INTO "Wine_Vineyard" VALUES(1404,1407,774); INSERT INTO "Wine_Vineyard" VALUES(1405,1408,775); INSERT INTO "Wine_Vineyard" VALUES(1406,1409,613); INSERT INTO "Wine_Vineyard" VALUES(1407,1410,776); INSERT INTO "Wine_Vineyard" VALUES(1408,1411,634); INSERT INTO "Wine_Vineyard" VALUES(1409,1412,75); INSERT INTO "Wine_Vineyard" VALUES(1410,1413,222); INSERT INTO "Wine_Vineyard" VALUES(1411,1414,767); INSERT INTO "Wine_Vineyard" VALUES(1412,1415,723); INSERT INTO "Wine_Vineyard" VALUES(1413,1416,161); INSERT INTO "Wine_Vineyard" VALUES(1414,1417,249); INSERT INTO "Wine_Vineyard" VALUES(1415,1418,777); INSERT INTO "Wine_Vineyard" VALUES(1416,1419,778); INSERT INTO "Wine_Vineyard" VALUES(1417,1420,779); INSERT INTO "Wine_Vineyard" VALUES(1418,1421,17); INSERT INTO "Wine_Vineyard" VALUES(1419,1422,780); INSERT INTO "Wine_Vineyard" VALUES(1420,1423,781); INSERT INTO "Wine_Vineyard" VALUES(1421,1424,782); INSERT INTO "Wine_Vineyard" VALUES(1422,1425,558); INSERT INTO "Wine_Vineyard" VALUES(1423,1426,249); INSERT INTO "Wine_Vineyard" VALUES(1424,1427,783); INSERT INTO "Wine_Vineyard" VALUES(1425,1428,724); INSERT INTO "Wine_Vineyard" VALUES(1426,1429,473); INSERT INTO "Wine_Vineyard" VALUES(1427,1430,723); INSERT INTO "Wine_Vineyard" VALUES(1428,1431,217); INSERT INTO "Wine_Vineyard" VALUES(1429,1432,499); INSERT INTO "Wine_Vineyard" VALUES(1430,1433,607); INSERT INTO "Wine_Vineyard" VALUES(1431,1434,784); INSERT INTO "Wine_Vineyard" VALUES(1432,1435,785); INSERT INTO "Wine_Vineyard" VALUES(1433,1436,786); INSERT INTO "Wine_Vineyard" VALUES(1434,1437,787); INSERT INTO "Wine_Vineyard" VALUES(1435,1438,744); INSERT INTO "Wine_Vineyard" VALUES(1436,1439,361); INSERT INTO "Wine_Vineyard" VALUES(1437,1440,788); INSERT INTO "Wine_Vineyard" VALUES(1438,1441,782); INSERT INTO "Wine_Vineyard" VALUES(1439,1442,751); INSERT INTO "Wine_Vineyard" VALUES(1440,1443,789); INSERT INTO "Wine_Vineyard" VALUES(1441,1444,790); INSERT INTO "Wine_Vineyard" VALUES(1442,1445,129); INSERT INTO "Wine_Vineyard" VALUES(1443,1446,708); INSERT INTO "Wine_Vineyard" VALUES(1444,1447,791); INSERT INTO "Wine_Vineyard" VALUES(1445,1448,792); INSERT INTO "Wine_Vineyard" VALUES(1446,1449,748); INSERT INTO "Wine_Vineyard" VALUES(1447,1450,560); INSERT INTO "Wine_Vineyard" VALUES(1448,1451,578); INSERT INTO "Wine_Vineyard" VALUES(1449,1452,166); INSERT INTO "Wine_Vineyard" VALUES(1450,1453,793); INSERT INTO "Wine_Vineyard" VALUES(1451,1454,794); INSERT INTO "Wine_Vineyard" VALUES(1452,1455,795); INSERT INTO "Wine_Vineyard" VALUES(1453,1456,796); INSERT INTO "Wine_Vineyard" VALUES(1454,1457,679); INSERT INTO "Wine_Vineyard" VALUES(1455,1458,455); INSERT INTO "Wine_Vineyard" VALUES(1456,1459,791); INSERT INTO "Wine_Vineyard" VALUES(1457,1460,797); INSERT INTO "Wine_Vineyard" VALUES(1458,1461,589); INSERT INTO "Wine_Vineyard" VALUES(1459,1462,361); INSERT INTO "Wine_Vineyard" VALUES(1460,1463,798); INSERT INTO "Wine_Vineyard" VALUES(1461,1464,582); INSERT INTO "Wine_Vineyard" VALUES(1462,1465,782); INSERT INTO "Wine_Vineyard" VALUES(1463,1466,675); INSERT INTO "Wine_Vineyard" VALUES(1464,1467,629); INSERT INTO "Wine_Vineyard" VALUES(1465,1468,748); INSERT INTO "Wine_Vineyard" VALUES(1466,1469,541); INSERT INTO "Wine_Vineyard" VALUES(1467,1470,799); INSERT INTO "Wine_Vineyard" VALUES(1468,1471,686); INSERT INTO "Wine_Vineyard" VALUES(1469,1472,800); INSERT INTO "Wine_Vineyard" VALUES(1470,1473,656); INSERT INTO "Wine_Vineyard" VALUES(1471,1474,801); INSERT INTO "Wine_Vineyard" VALUES(1472,1475,802); INSERT INTO "Wine_Vineyard" VALUES(1473,1476,803); INSERT INTO "Wine_Vineyard" VALUES(1474,1477,211); INSERT INTO "Wine_Vineyard" VALUES(1475,1478,804); INSERT INTO "Wine_Vineyard" VALUES(1476,1479,397); INSERT INTO "Wine_Vineyard" VALUES(1477,1480,51); INSERT INTO "Wine_Vineyard" VALUES(1478,1481,52); INSERT INTO "Wine_Vineyard" VALUES(1479,1482,805); INSERT INTO "Wine_Vineyard" VALUES(1480,1483,806); INSERT INTO "Wine_Vineyard" VALUES(1481,1484,807); INSERT INTO "Wine_Vineyard" VALUES(1482,1485,808); INSERT INTO "Wine_Vineyard" VALUES(1483,1486,809); INSERT INTO "Wine_Vineyard" VALUES(1484,1487,422); INSERT INTO "Wine_Vineyard" VALUES(1485,1488,810); INSERT INTO "Wine_Vineyard" VALUES(1486,1489,811); INSERT INTO "Wine_Vineyard" VALUES(1487,1490,812); INSERT INTO "Wine_Vineyard" VALUES(1488,1491,796); INSERT INTO "Wine_Vineyard" VALUES(1489,1492,786); INSERT INTO "Wine_Vineyard" VALUES(1490,1493,621); INSERT INTO "Wine_Vineyard" VALUES(1491,1494,813); INSERT INTO "Wine_Vineyard" VALUES(1492,1495,422); INSERT INTO "Wine_Vineyard" VALUES(1493,1496,814); INSERT INTO "Wine_Vineyard" VALUES(1494,1497,815); INSERT INTO "Wine_Vineyard" VALUES(1495,1498,586); INSERT INTO "Wine_Vineyard" VALUES(1496,1499,690); INSERT INTO "Wine_Vineyard" VALUES(1497,1500,280); INSERT INTO "Wine_Vineyard" VALUES(1498,1501,727); INSERT INTO "Wine_Vineyard" VALUES(1499,1502,740); INSERT INTO "Wine_Vineyard" VALUES(1500,1503,324); INSERT INTO "Wine_Vineyard" VALUES(1501,1504,766); INSERT INTO "Wine_Vineyard" VALUES(1502,1505,80); INSERT INTO "Wine_Vineyard" VALUES(1503,1506,96); INSERT INTO "Wine_Vineyard" VALUES(1504,1507,816); INSERT INTO "Wine_Vineyard" VALUES(1505,1508,817); INSERT INTO "Wine_Vineyard" VALUES(1506,1509,818); INSERT INTO "Wine_Vineyard" VALUES(1507,1510,819); INSERT INTO "Wine_Vineyard" VALUES(1508,1511,820); INSERT INTO "Wine_Vineyard" VALUES(1509,1512,711); INSERT INTO "Wine_Vineyard" VALUES(1510,1513,821); INSERT INTO "Wine_Vineyard" VALUES(1511,1514,563); INSERT INTO "Wine_Vineyard" VALUES(1512,1515,738); INSERT INTO "Wine_Vineyard" VALUES(1513,1516,822); INSERT INTO "Wine_Vineyard" VALUES(1514,1517,142); INSERT INTO "Wine_Vineyard" VALUES(1515,1518,823); INSERT INTO "Wine_Vineyard" VALUES(1516,1519,791); INSERT INTO "Wine_Vineyard" VALUES(1517,1520,824); INSERT INTO "Wine_Vineyard" VALUES(1518,1521,825); INSERT INTO "Wine_Vineyard" VALUES(1519,1522,826); INSERT INTO "Wine_Vineyard" VALUES(1520,1523,559); INSERT INTO "Wine_Vineyard" VALUES(1521,1524,280); INSERT INTO "Wine_Vineyard" VALUES(1522,1525,827); INSERT INTO "Wine_Vineyard" VALUES(1523,1526,664); INSERT INTO "Wine_Vineyard" VALUES(1524,1527,630); INSERT INTO "Wine_Vineyard" VALUES(1525,1528,828); INSERT INTO "Wine_Vineyard" VALUES(1526,1529,648); INSERT INTO "Wine_Vineyard" VALUES(1527,1530,829); INSERT INTO "Wine_Vineyard" VALUES(1528,1531,735); INSERT INTO "Wine_Vineyard" VALUES(1529,1532,830); INSERT INTO "Wine_Vineyard" VALUES(1530,1533,818); INSERT INTO "Wine_Vineyard" VALUES(1531,1534,831); INSERT INTO "Wine_Vineyard" VALUES(1532,1535,832); INSERT INTO "Wine_Vineyard" VALUES(1533,1536,833); INSERT INTO "Wine_Vineyard" VALUES(1534,1537,813); INSERT INTO "Wine_Vineyard" VALUES(1535,1538,834); INSERT INTO "Wine_Vineyard" VALUES(1536,1539,23); INSERT INTO "Wine_Vineyard" VALUES(1537,1540,597); INSERT INTO "Wine_Vineyard" VALUES(1538,1541,835); INSERT INTO "Wine_Vineyard" VALUES(1539,1542,589); INSERT INTO "Wine_Vineyard" VALUES(1540,1543,676); INSERT INTO "Wine_Vineyard" VALUES(1541,1544,201); INSERT INTO "Wine_Vineyard" VALUES(1542,1545,836); INSERT INTO "Wine_Vineyard" VALUES(1543,1546,772); INSERT INTO "Wine_Vineyard" VALUES(1544,1547,837); INSERT INTO "Wine_Vineyard" VALUES(1545,1548,518); INSERT INTO "Wine_Vineyard" VALUES(1546,1549,422); INSERT INTO "Wine_Vineyard" VALUES(1547,1550,838); INSERT INTO "Wine_Vineyard" VALUES(1548,1551,143); INSERT INTO "Wine_Vineyard" VALUES(1549,1552,813); INSERT INTO "Wine_Vineyard" VALUES(1550,1553,839); INSERT INTO "Wine_Vineyard" VALUES(1551,1554,840); INSERT INTO "Wine_Vineyard" VALUES(1552,1555,841); INSERT INTO "Wine_Vineyard" VALUES(1553,1556,842); INSERT INTO "Wine_Vineyard" VALUES(1554,1557,583); INSERT INTO "Wine_Vineyard" VALUES(1555,1558,506); INSERT INTO "Wine_Vineyard" VALUES(1556,1559,843); INSERT INTO "Wine_Vineyard" VALUES(1557,1560,844); INSERT INTO "Wine_Vineyard" VALUES(1558,1561,462); INSERT INTO "Wine_Vineyard" VALUES(1559,1562,280); INSERT INTO "Wine_Vineyard" VALUES(1560,1563,705); INSERT INTO "Wine_Vineyard" VALUES(1561,1564,745); INSERT INTO "Wine_Vineyard" VALUES(1562,1565,513); INSERT INTO "Wine_Vineyard" VALUES(1563,1566,310); INSERT INTO "Wine_Vineyard" VALUES(1564,1567,845); INSERT INTO "Wine_Vineyard" VALUES(1565,1568,689); INSERT INTO "Wine_Vineyard" VALUES(1566,1569,153); INSERT INTO "Wine_Vineyard" VALUES(1567,1570,499); INSERT INTO "Wine_Vineyard" VALUES(1568,1571,753); INSERT INTO "Wine_Vineyard" VALUES(1569,1572,846); INSERT INTO "Wine_Vineyard" VALUES(1570,1573,311); INSERT INTO "Wine_Vineyard" VALUES(1571,1574,281); INSERT INTO "Wine_Vineyard" VALUES(1572,1575,847); INSERT INTO "Wine_Vineyard" VALUES(1573,1576,848); INSERT INTO "Wine_Vineyard" VALUES(1574,1577,849); INSERT INTO "Wine_Vineyard" VALUES(1575,1578,281); INSERT INTO "Wine_Vineyard" VALUES(1576,1579,812); INSERT INTO "Wine_Vineyard" VALUES(1577,1580,765); INSERT INTO "Wine_Vineyard" VALUES(1578,1581,731); INSERT INTO "Wine_Vineyard" VALUES(1579,1582,201); INSERT INTO "Wine_Vineyard" VALUES(1580,1583,850); INSERT INTO "Wine_Vineyard" VALUES(1581,1584,851); INSERT INTO "Wine_Vineyard" VALUES(1582,1585,852); INSERT INTO "Wine_Vineyard" VALUES(1583,1586,780); INSERT INTO "Wine_Vineyard" VALUES(1584,1587,796); INSERT INTO "Wine_Vineyard" VALUES(1585,1588,853); INSERT INTO "Wine_Vineyard" VALUES(1586,1589,779); INSERT INTO "Wine_Vineyard" VALUES(1587,1590,562); INSERT INTO "Wine_Vineyard" VALUES(1588,1591,854); INSERT INTO "Wine_Vineyard" VALUES(1589,1592,688); INSERT INTO "Wine_Vineyard" VALUES(1590,1593,855); INSERT INTO "Wine_Vineyard" VALUES(1591,1594,582); INSERT INTO "Wine_Vineyard" VALUES(1592,1595,158); INSERT INTO "Wine_Vineyard" VALUES(1593,1596,560); INSERT INTO "Wine_Vineyard" VALUES(1594,1597,856); INSERT INTO "Wine_Vineyard" VALUES(1595,1598,857); INSERT INTO "Wine_Vineyard" VALUES(1596,1599,309); INSERT INTO "Wine_Vineyard" VALUES(1597,1600,786); INSERT INTO "Wine_Vineyard" VALUES(1598,1601,858); INSERT INTO "Wine_Vineyard" VALUES(1599,1602,232); INSERT INTO "Wine_Vineyard" VALUES(1600,1603,102); INSERT INTO "Wine_Vineyard" VALUES(1601,1604,725); INSERT INTO "Wine_Vineyard" VALUES(1602,1605,281); INSERT INTO "Wine_Vineyard" VALUES(1603,1606,789); INSERT INTO "Wine_Vineyard" VALUES(1604,1607,646); INSERT INTO "Wine_Vineyard" VALUES(1605,1608,830); INSERT INTO "Wine_Vineyard" VALUES(1606,1609,859); INSERT INTO "Wine_Vineyard" VALUES(1607,1610,860); INSERT INTO "Wine_Vineyard" VALUES(1608,1611,730); INSERT INTO "Wine_Vineyard" VALUES(1609,1612,861); INSERT INTO "Wine_Vineyard" VALUES(1610,1613,582); INSERT INTO "Wine_Vineyard" VALUES(1611,1614,862); INSERT INTO "Wine_Vineyard" VALUES(1612,1615,766); INSERT INTO "Wine_Vineyard" VALUES(1613,1616,863); INSERT INTO "Wine_Vineyard" VALUES(1614,1617,864); INSERT INTO "Wine_Vineyard" VALUES(1615,1618,865); INSERT INTO "Wine_Vineyard" VALUES(1616,1619,106); INSERT INTO "Wine_Vineyard" VALUES(1617,1620,866); INSERT INTO "Wine_Vineyard" VALUES(1618,1621,80); INSERT INTO "Wine_Vineyard" VALUES(1619,1622,841); INSERT INTO "Wine_Vineyard" VALUES(1620,1623,867); INSERT INTO "Wine_Vineyard" VALUES(1621,1624,868); INSERT INTO "Wine_Vineyard" VALUES(1622,1625,212); INSERT INTO "Wine_Vineyard" VALUES(1623,1626,869); INSERT INTO "Wine_Vineyard" VALUES(1624,1627,607); INSERT INTO "Wine_Vineyard" VALUES(1625,1628,702); INSERT INTO "Wine_Vineyard" VALUES(1626,1629,870); INSERT INTO "Wine_Vineyard" VALUES(1627,1630,783); INSERT INTO "Wine_Vineyard" VALUES(1628,1631,222); INSERT INTO "Wine_Vineyard" VALUES(1629,1632,871); INSERT INTO "Wine_Vineyard" VALUES(1630,1633,765); INSERT INTO "Wine_Vineyard" VALUES(1631,1634,830); INSERT INTO "Wine_Vineyard" VALUES(1632,1635,166); INSERT INTO "Wine_Vineyard" VALUES(1633,1636,752); INSERT INTO "Wine_Vineyard" VALUES(1634,1637,871); INSERT INTO "Wine_Vineyard" VALUES(1635,1638,872); INSERT INTO "Wine_Vineyard" VALUES(1636,1639,522); INSERT INTO "Wine_Vineyard" VALUES(1637,1640,866); INSERT INTO "Wine_Vineyard" VALUES(1638,1641,873); INSERT INTO "Wine_Vineyard" VALUES(1639,1642,653); INSERT INTO "Wine_Vineyard" VALUES(1640,1643,561); INSERT INTO "Wine_Vineyard" VALUES(1641,1644,874); INSERT INTO "Wine_Vineyard" VALUES(1642,1645,875); INSERT INTO "Wine_Vineyard" VALUES(1643,1646,876); INSERT INTO "Wine_Vineyard" VALUES(1644,1647,877); INSERT INTO "Wine_Vineyard" VALUES(1645,1648,841); INSERT INTO "Wine_Vineyard" VALUES(1646,1649,871); INSERT INTO "Wine_Vineyard" VALUES(1647,1650,208); INSERT INTO "Wine_Vineyard" VALUES(1648,1651,655); INSERT INTO "Wine_Vineyard" VALUES(1649,1652,51); INSERT INTO "Wine_Vineyard" VALUES(1650,1653,878); INSERT INTO "Wine_Vineyard" VALUES(1651,1654,879); INSERT INTO "Wine_Vineyard" VALUES(1652,1655,747); INSERT INTO "Wine_Vineyard" VALUES(1653,1656,858); INSERT INTO "Wine_Vineyard" VALUES(1654,1657,671); INSERT INTO "Wine_Vineyard" VALUES(1655,1658,880); INSERT INTO "Wine_Vineyard" VALUES(1656,1659,589); INSERT INTO "Wine_Vineyard" VALUES(1657,1660,675); INSERT INTO "Wine_Vineyard" VALUES(1658,1661,99); INSERT INTO "Wine_Vineyard" VALUES(1659,1662,717); INSERT INTO "Wine_Vineyard" VALUES(1660,1663,881); INSERT INTO "Wine_Vineyard" VALUES(1661,1664,281); INSERT INTO "Wine_Vineyard" VALUES(1662,1665,455); INSERT INTO "Wine_Vineyard" VALUES(1663,1666,810); INSERT INTO "Wine_Vineyard" VALUES(1664,1667,882); INSERT INTO "Wine_Vineyard" VALUES(1665,1668,883); INSERT INTO "Wine_Vineyard" VALUES(1666,1669,884); INSERT INTO "Wine_Vineyard" VALUES(1667,1670,280); INSERT INTO "Wine_Vineyard" VALUES(1668,1671,281); INSERT INTO "Wine_Vineyard" VALUES(1669,1672,672); INSERT INTO "Wine_Vineyard" VALUES(1670,1673,606); INSERT INTO "Wine_Vineyard" VALUES(1671,1674,851); INSERT INTO "Wine_Vineyard" VALUES(1672,1675,848); INSERT INTO "Wine_Vineyard" VALUES(1673,1676,753); INSERT INTO "Wine_Vineyard" VALUES(1674,1677,817); INSERT INTO "Wine_Vineyard" VALUES(1675,1678,885); INSERT INTO "Wine_Vineyard" VALUES(1676,1679,455); INSERT INTO "Wine_Vineyard" VALUES(1677,1680,886); INSERT INTO "Wine_Vineyard" VALUES(1678,1681,887); INSERT INTO "Wine_Vineyard" VALUES(1679,1682,743); INSERT INTO "Wine_Vineyard" VALUES(1680,1683,888); INSERT INTO "Wine_Vineyard" VALUES(1681,1684,889); INSERT INTO "Wine_Vineyard" VALUES(1682,1685,890); INSERT INTO "Wine_Vineyard" VALUES(1683,1686,891); INSERT INTO "Wine_Vineyard" VALUES(1684,1687,806); INSERT INTO "Wine_Vineyard" VALUES(1685,1688,191); INSERT INTO "Wine_Vineyard" VALUES(1686,1689,892); INSERT INTO "Wine_Vineyard" VALUES(1687,1690,272); INSERT INTO "Wine_Vineyard" VALUES(1688,1691,893); INSERT INTO "Wine_Vineyard" VALUES(1689,1692,215); INSERT INTO "Wine_Vineyard" VALUES(1690,1693,780); INSERT INTO "Wine_Vineyard" VALUES(1691,1694,106); INSERT INTO "Wine_Vineyard" VALUES(1692,1695,894); INSERT INTO "Wine_Vineyard" VALUES(1693,1696,389); INSERT INTO "Wine_Vineyard" VALUES(1694,1697,139); INSERT INTO "Wine_Vineyard" VALUES(1695,1698,895); INSERT INTO "Wine_Vineyard" VALUES(1696,1699,749); INSERT INTO "Wine_Vineyard" VALUES(1697,1700,281); INSERT INTO "Wine_Vineyard" VALUES(1698,1701,679); INSERT INTO "Wine_Vineyard" VALUES(1699,1702,428); INSERT INTO "Wine_Vineyard" VALUES(1700,1703,629); INSERT INTO "Wine_Vineyard" VALUES(1701,1704,40); INSERT INTO "Wine_Vineyard" VALUES(1702,1705,606); INSERT INTO "Wine_Vineyard" VALUES(1703,1706,896); INSERT INTO "Wine_Vineyard" VALUES(1704,1707,796); INSERT INTO "Wine_Vineyard" VALUES(1705,1708,897); INSERT INTO "Wine_Vineyard" VALUES(1706,1709,898); INSERT INTO "Wine_Vineyard" VALUES(1707,1710,899); INSERT INTO "Wine_Vineyard" VALUES(1708,1711,900); INSERT INTO "Wine_Vineyard" VALUES(1709,1712,710); INSERT INTO "Wine_Vineyard" VALUES(1710,1713,901); INSERT INTO "Wine_Vineyard" VALUES(1711,1714,769); INSERT INTO "Wine_Vineyard" VALUES(1712,1715,902); INSERT INTO "Wine_Vineyard" VALUES(1713,1716,903); INSERT INTO "Wine_Vineyard" VALUES(1714,1717,62); INSERT INTO "Wine_Vineyard" VALUES(1715,1718,900); INSERT INTO "Wine_Vineyard" VALUES(1716,1719,879); INSERT INTO "Wine_Vineyard" VALUES(1717,1720,904); INSERT INTO "Wine_Vineyard" VALUES(1718,1721,905); INSERT INTO "Wine_Vineyard" VALUES(1719,1722,96); INSERT INTO "Wine_Vineyard" VALUES(1720,1723,309); INSERT INTO "Wine_Vineyard" VALUES(1721,1724,852); INSERT INTO "Wine_Vineyard" VALUES(1722,1725,730); INSERT INTO "Wine_Vineyard" VALUES(1723,1726,900); INSERT INTO "Wine_Vineyard" VALUES(1724,1727,440); INSERT INTO "Wine_Vineyard" VALUES(1725,1728,900); INSERT INTO "Wine_Vineyard" VALUES(1726,1729,906); INSERT INTO "Wine_Vineyard" VALUES(1727,1730,842); INSERT INTO "Wine_Vineyard" VALUES(1728,1731,749); INSERT INTO "Wine_Vineyard" VALUES(1729,1732,749); INSERT INTO "Wine_Vineyard" VALUES(1730,1733,758); INSERT INTO "Wine_Vineyard" VALUES(1731,1734,590); INSERT INTO "Wine_Vineyard" VALUES(1732,1735,745); INSERT INTO "Wine_Vineyard" VALUES(1733,1736,520); INSERT INTO "Wine_Vineyard" VALUES(1734,1737,907); INSERT INTO "Wine_Vineyard" VALUES(1735,1738,258); INSERT INTO "Wine_Vineyard" VALUES(1736,1739,908); INSERT INTO "Wine_Vineyard" VALUES(1737,1740,909); INSERT INTO "Wine_Vineyard" VALUES(1738,1741,846); INSERT INTO "Wine_Vineyard" VALUES(1739,1742,749); INSERT INTO "Wine_Vineyard" VALUES(1740,1743,749); INSERT INTO "Wine_Vineyard" VALUES(1741,1744,910); INSERT INTO "Wine_Vineyard" VALUES(1742,1745,711); INSERT INTO "Wine_Vineyard" VALUES(1743,1746,153); INSERT INTO "Wine_Vineyard" VALUES(1744,1747,911); INSERT INTO "Wine_Vineyard" VALUES(1745,1748,912); INSERT INTO "Wine_Vineyard" VALUES(1746,1749,913); INSERT INTO "Wine_Vineyard" VALUES(1747,1750,914); INSERT INTO "Wine_Vineyard" VALUES(1748,1751,915); INSERT INTO "Wine_Vineyard" VALUES(1749,1752,916); INSERT INTO "Wine_Vineyard" VALUES(1750,1753,917); INSERT INTO "Wine_Vineyard" VALUES(1751,1754,199); INSERT INTO "Wine_Vineyard" VALUES(1752,1755,691); INSERT INTO "Wine_Vineyard" VALUES(1753,1756,96); INSERT INTO "Wine_Vineyard" VALUES(1754,1757,865); INSERT INTO "Wine_Vineyard" VALUES(1755,1758,138); INSERT INTO "Wine_Vineyard" VALUES(1756,1759,918); INSERT INTO "Wine_Vineyard" VALUES(1757,1760,765); INSERT INTO "Wine_Vineyard" VALUES(1758,1761,919); INSERT INTO "Wine_Vineyard" VALUES(1759,1762,737); INSERT INTO "Wine_Vineyard" VALUES(1760,1763,653); INSERT INTO "Wine_Vineyard" VALUES(1761,1764,51); INSERT INTO "Wine_Vineyard" VALUES(1762,1765,679); INSERT INTO "Wine_Vineyard" VALUES(1763,1766,765); INSERT INTO "Wine_Vineyard" VALUES(1764,1767,920); INSERT INTO "Wine_Vineyard" VALUES(1765,1768,921); INSERT INTO "Wine_Vineyard" VALUES(1766,1769,813); INSERT INTO "Wine_Vineyard" VALUES(1767,1770,922); INSERT INTO "Wine_Vineyard" VALUES(1768,1771,675); INSERT INTO "Wine_Vineyard" VALUES(1769,1772,818); INSERT INTO "Wine_Vineyard" VALUES(1770,1773,818); INSERT INTO "Wine_Vineyard" VALUES(1771,1774,923); INSERT INTO "Wine_Vineyard" VALUES(1772,1775,924); INSERT INTO "Wine_Vineyard" VALUES(1773,1776,925); INSERT INTO "Wine_Vineyard" VALUES(1774,1777,222); INSERT INTO "Wine_Vineyard" VALUES(1775,1778,671); INSERT INTO "Wine_Vineyard" VALUES(1776,1779,675); INSERT INTO "Wine_Vineyard" VALUES(1777,1780,361); INSERT INTO "Wine_Vineyard" VALUES(1778,1781,747); INSERT INTO "Wine_Vineyard" VALUES(1779,1782,926); INSERT INTO "Wine_Vineyard" VALUES(1780,1783,142); INSERT INTO "Wine_Vineyard" VALUES(1781,1784,927); INSERT INTO "Wine_Vineyard" VALUES(1782,1785,117); INSERT INTO "Wine_Vineyard" VALUES(1783,1786,812); INSERT INTO "Wine_Vineyard" VALUES(1784,1787,841); INSERT INTO "Wine_Vineyard" VALUES(1785,1788,928); INSERT INTO "Wine_Vineyard" VALUES(1786,1789,929); INSERT INTO "Wine_Vineyard" VALUES(1787,1790,675); INSERT INTO "Wine_Vineyard" VALUES(1788,1791,930); INSERT INTO "Wine_Vineyard" VALUES(1789,1792,922); INSERT INTO "Wine_Vineyard" VALUES(1790,1793,737); INSERT INTO "Wine_Vineyard" VALUES(1791,1794,749); INSERT INTO "Wine_Vineyard" VALUES(1792,1795,931); INSERT INTO "Wine_Vineyard" VALUES(1793,1796,522); INSERT INTO "Wine_Vineyard" VALUES(1794,1797,911); INSERT INTO "Wine_Vineyard" VALUES(1795,1798,932); INSERT INTO "Wine_Vineyard" VALUES(1796,1799,732); INSERT INTO "Wine_Vineyard" VALUES(1797,1800,675); INSERT INTO "Wine_Vineyard" VALUES(1798,1801,749); INSERT INTO "Wine_Vineyard" VALUES(1799,1802,933); INSERT INTO "Wine_Vineyard" VALUES(1800,1803,696); INSERT INTO "Wine_Vineyard" VALUES(1801,1804,918); INSERT INTO "Wine_Vineyard" VALUES(1802,1805,616); INSERT INTO "Wine_Vineyard" VALUES(1803,1806,10); INSERT INTO "Wine_Vineyard" VALUES(1804,1807,384); INSERT INTO "Wine_Vineyard" VALUES(1805,1808,828); INSERT INTO "Wine_Vineyard" VALUES(1806,1809,934); INSERT INTO "Wine_Vineyard" VALUES(1807,1810,901); INSERT INTO "Wine_Vineyard" VALUES(1808,1811,935); INSERT INTO "Wine_Vineyard" VALUES(1809,1812,936); INSERT INTO "Wine_Vineyard" VALUES(1810,1813,937); INSERT INTO "Wine_Vineyard" VALUES(1811,1814,272); INSERT INTO "Wine_Vineyard" VALUES(1812,1815,94); INSERT INTO "Wine_Vineyard" VALUES(1813,1816,679); INSERT INTO "Wine_Vineyard" VALUES(1814,1817,818); INSERT INTO "Wine_Vineyard" VALUES(1815,1818,938); INSERT INTO "Wine_Vineyard" VALUES(1816,1819,428); INSERT INTO "Wine_Vineyard" VALUES(1817,1820,675); INSERT INTO "Wine_Vineyard" VALUES(1818,1821,792); INSERT INTO "Wine_Vineyard" VALUES(1819,1822,766); INSERT INTO "Wine_Vineyard" VALUES(1820,1823,939); INSERT INTO "Wine_Vineyard" VALUES(1821,1824,541); INSERT INTO "Wine_Vineyard" VALUES(1822,1825,827); INSERT INTO "Wine_Vineyard" VALUES(1823,1826,212); INSERT INTO "Wine_Vineyard" VALUES(1824,1827,624); INSERT INTO "Wine_Vineyard" VALUES(1825,1828,933); INSERT INTO "Wine_Vineyard" VALUES(1826,1829,51); INSERT INTO "Wine_Vineyard" VALUES(1827,1830,616); INSERT INTO "Wine_Vineyard" VALUES(1828,1831,910); INSERT INTO "Wine_Vineyard" VALUES(1829,1832,66); INSERT INTO "Wine_Vineyard" VALUES(1830,1833,727); INSERT INTO "Wine_Vineyard" VALUES(1831,1834,940); INSERT INTO "Wine_Vineyard" VALUES(1832,1835,941); INSERT INTO "Wine_Vineyard" VALUES(1833,1836,942); INSERT INTO "Wine_Vineyard" VALUES(1834,1837,99); INSERT INTO "Wine_Vineyard" VALUES(1835,1838,866); INSERT INTO "Wine_Vineyard" VALUES(1836,1839,654); INSERT INTO "Wine_Vineyard" VALUES(1837,1840,674); INSERT INTO "Wine_Vineyard" VALUES(1838,1841,943); INSERT INTO "Wine_Vineyard" VALUES(1839,1842,139); INSERT INTO "Wine_Vineyard" VALUES(1840,1843,280); INSERT INTO "Wine_Vineyard" VALUES(1841,1844,280); INSERT INTO "Wine_Vineyard" VALUES(1842,1845,455); INSERT INTO "Wine_Vineyard" VALUES(1843,1846,51); INSERT INTO "Wine_Vineyard" VALUES(1844,1847,702); INSERT INTO "Wine_Vineyard" VALUES(1845,1848,752); INSERT INTO "Wine_Vineyard" VALUES(1846,1849,944); INSERT INTO "Wine_Vineyard" VALUES(1847,1850,658); INSERT INTO "Wine_Vineyard" VALUES(1848,1851,676); INSERT INTO "Wine_Vineyard" VALUES(1849,1852,936); INSERT INTO "Wine_Vineyard" VALUES(1850,1853,582); INSERT INTO "Wine_Vineyard" VALUES(1851,1854,945); INSERT INTO "Wine_Vineyard" VALUES(1852,1855,824); INSERT INTO "Wine_Vineyard" VALUES(1853,1856,946); INSERT INTO "Wine_Vineyard" VALUES(1854,1857,947); INSERT INTO "Wine_Vineyard" VALUES(1855,1858,31); INSERT INTO "Wine_Vineyard" VALUES(1856,1859,50); INSERT INTO "Wine_Vineyard" VALUES(1857,1860,749); INSERT INTO "Wine_Vineyard" VALUES(1858,1861,22); INSERT INTO "Wine_Vineyard" VALUES(1859,1862,948); INSERT INTO "Wine_Vineyard" VALUES(1860,1863,651); INSERT INTO "Wine_Vineyard" VALUES(1861,1864,949); INSERT INTO "Wine_Vineyard" VALUES(1862,1865,950); INSERT INTO "Wine_Vineyard" VALUES(1863,1866,951); INSERT INTO "Wine_Vineyard" VALUES(1864,1867,99); INSERT INTO "Wine_Vineyard" VALUES(1865,1868,952); INSERT INTO "Wine_Vineyard" VALUES(1866,1869,771); INSERT INTO "Wine_Vineyard" VALUES(1867,1870,953); INSERT INTO "Wine_Vineyard" VALUES(1868,1871,954); INSERT INTO "Wine_Vineyard" VALUES(1869,1872,278); INSERT INTO "Wine_Vineyard" VALUES(1870,1873,953); INSERT INTO "Wine_Vineyard" VALUES(1871,1874,955); INSERT INTO "Wine_Vineyard" VALUES(1872,1875,956); INSERT INTO "Wine_Vineyard" VALUES(1873,1876,828); INSERT INTO "Wine_Vineyard" VALUES(1874,1877,66); INSERT INTO "Wine_Vineyard" VALUES(1875,1878,63); INSERT INTO "Wine_Vineyard" VALUES(1876,1879,731); INSERT INTO "Wine_Vineyard" VALUES(1877,1880,957); INSERT INTO "Wine_Vineyard" VALUES(1878,1881,958); INSERT INTO "Wine_Vineyard" VALUES(1879,1882,899); INSERT INTO "Wine_Vineyard" VALUES(1880,1883,246); INSERT INTO "Wine_Vineyard" VALUES(1881,1884,959); INSERT INTO "Wine_Vineyard" VALUES(1882,1885,256); INSERT INTO "Wine_Vineyard" VALUES(1883,1886,960); INSERT INTO "Wine_Vineyard" VALUES(1884,1887,559); INSERT INTO "Wine_Vineyard" VALUES(1885,1888,961); INSERT INTO "Wine_Vineyard" VALUES(1886,1889,962); INSERT INTO "Wine_Vineyard" VALUES(1887,1890,846); INSERT INTO "Wine_Vineyard" VALUES(1888,1891,963); INSERT INTO "Wine_Vineyard" VALUES(1889,1892,964); INSERT INTO "Wine_Vineyard" VALUES(1890,1893,595); INSERT INTO "Wine_Vineyard" VALUES(1891,1894,51); INSERT INTO "Wine_Vineyard" VALUES(1892,1895,965); INSERT INTO "Wine_Vineyard" VALUES(1893,1896,675); INSERT INTO "Wine_Vineyard" VALUES(1894,1897,119); INSERT INTO "Wine_Vineyard" VALUES(1895,1898,22); INSERT INTO "Wine_Vineyard" VALUES(1896,1899,123); INSERT INTO "Wine_Vineyard" VALUES(1897,1900,966); INSERT INTO "Wine_Vineyard" VALUES(1898,1901,967); INSERT INTO "Wine_Vineyard" VALUES(1899,1902,215); INSERT INTO "Wine_Vineyard" VALUES(1900,1903,968); INSERT INTO "Wine_Vineyard" VALUES(1901,1904,969); INSERT INTO "Wine_Vineyard" VALUES(1902,1905,606); INSERT INTO "Wine_Vineyard" VALUES(1903,1906,686); INSERT INTO "Wine_Vineyard" VALUES(1904,1907,970); INSERT INTO "Wine_Vineyard" VALUES(1905,1908,8); INSERT INTO "Wine_Vineyard" VALUES(1906,1909,971); INSERT INTO "Wine_Vineyard" VALUES(1907,1910,972); INSERT INTO "Wine_Vineyard" VALUES(1908,1911,730); INSERT INTO "Wine_Vineyard" VALUES(1909,1912,604); INSERT INTO "Wine_Vineyard" VALUES(1910,1913,483); INSERT INTO "Wine_Vineyard" VALUES(1911,1914,973); INSERT INTO "Wine_Vineyard" VALUES(1912,1915,974); INSERT INTO "Wine_Vineyard" VALUES(1913,1916,292); INSERT INTO "Wine_Vineyard" VALUES(1914,1917,975); INSERT INTO "Wine_Vineyard" VALUES(1915,1918,138); INSERT INTO "Wine_Vineyard" VALUES(1916,1919,976); INSERT INTO "Wine_Vineyard" VALUES(1917,1920,977); INSERT INTO "Wine_Vineyard" VALUES(1918,1921,771); INSERT INTO "Wine_Vineyard" VALUES(1919,1922,155); INSERT INTO "Wine_Vineyard" VALUES(1920,1923,978); INSERT INTO "Wine_Vineyard" VALUES(1921,1924,730); INSERT INTO "Wine_Vineyard" VALUES(1922,1925,771); INSERT INTO "Wine_Vineyard" VALUES(1923,1926,163); INSERT INTO "Wine_Vineyard" VALUES(1924,1927,18); INSERT INTO "Wine_Vineyard" VALUES(1925,1928,375); INSERT INTO "Wine_Vineyard" VALUES(1926,1929,723); INSERT INTO "Wine_Vineyard" VALUES(1927,1930,99); INSERT INTO "Wine_Vineyard" VALUES(1928,1931,278); INSERT INTO "Wine_Vineyard" VALUES(1929,1932,597); INSERT INTO "Wine_Vineyard" VALUES(1930,1933,338); INSERT INTO "Wine_Vineyard" VALUES(1931,1934,51); INSERT INTO "Wine_Vineyard" VALUES(1932,1935,163); INSERT INTO "Wine_Vineyard" VALUES(1933,1936,979); INSERT INTO "Wine_Vineyard" VALUES(1934,1937,896); INSERT INTO "Wine_Vineyard" VALUES(1935,1938,889); INSERT INTO "Wine_Vineyard" VALUES(1936,1939,657); INSERT INTO "Wine_Vineyard" VALUES(1937,1940,552); INSERT INTO "Wine_Vineyard" VALUES(1938,1941,520); INSERT INTO "Wine_Vineyard" VALUES(1939,1942,689); INSERT INTO "Wine_Vineyard" VALUES(1940,1943,980); INSERT INTO "Wine_Vineyard" VALUES(1941,1944,981); INSERT INTO "Wine_Vineyard" VALUES(1942,1946,664); INSERT INTO "Wine_Vineyard" VALUES(1943,1947,99); INSERT INTO "Wine_Vineyard" VALUES(1944,1948,982); INSERT INTO "Wine_Vineyard" VALUES(1945,1949,983); INSERT INTO "Wine_Vineyard" VALUES(1946,1950,252); INSERT INTO "Wine_Vineyard" VALUES(1947,1951,249); INSERT INTO "Wine_Vineyard" VALUES(1948,1952,984); INSERT INTO "Wine_Vineyard" VALUES(1949,1954,985); INSERT INTO "Wine_Vineyard" VALUES(1950,1955,979); INSERT INTO "Wine_Vineyard" VALUES(1951,1956,792); INSERT INTO "Wine_Vineyard" VALUES(1952,1957,137); INSERT INTO "Wine_Vineyard" VALUES(1953,1959,749); INSERT INTO "Wine_Vineyard" VALUES(1954,1960,908); INSERT INTO "Wine_Vineyard" VALUES(1955,1961,145); INSERT INTO "Wine_Vineyard" VALUES(1956,1962,855); INSERT INTO "Wine_Vineyard" VALUES(1957,1963,232); INSERT INTO "Wine_Vineyard" VALUES(1958,1964,986); INSERT INTO "Wine_Vineyard" VALUES(1959,1965,846); INSERT INTO "Wine_Vineyard" VALUES(1960,1966,624); INSERT INTO "Wine_Vineyard" VALUES(1961,1967,749); INSERT INTO "Wine_Vineyard" VALUES(1962,1968,679); INSERT INTO "Wine_Vineyard" VALUES(1963,1969,162); INSERT INTO "Wine_Vineyard" VALUES(1964,1970,616); INSERT INTO "Wine_Vineyard" VALUES(1965,1971,987); INSERT INTO "Wine_Vineyard" VALUES(1966,1974,258); INSERT INTO "Wine_Vineyard" VALUES(1967,1975,915); INSERT INTO "Wine_Vineyard" VALUES(1968,1976,809); INSERT INTO "Wine_Vineyard" VALUES(1969,1977,846); INSERT INTO "Wine_Vineyard" VALUES(1970,1978,713); INSERT INTO "Wine_Vineyard" VALUES(1971,1979,334); INSERT INTO "Wine_Vineyard" VALUES(1972,1980,63); INSERT INTO "Wine_Vineyard" VALUES(1973,1981,249); INSERT INTO "Wine_Vineyard" VALUES(1974,1982,857); INSERT INTO "Wine_Vineyard" VALUES(1975,1983,648); INSERT INTO "Wine_Vineyard" VALUES(1976,1984,988); INSERT INTO "Wine_Vineyard" VALUES(1977,1985,841); INSERT INTO "Wine_Vineyard" VALUES(1978,1986,846); INSERT INTO "Wine_Vineyard" VALUES(1979,1987,104); INSERT INTO "Wine_Vineyard" VALUES(1980,1988,462); INSERT INTO "Wine_Vineyard" VALUES(1981,1989,930); INSERT INTO "Wine_Vineyard" VALUES(1982,1990,989); INSERT INTO "Wine_Vineyard" VALUES(1983,1992,552); INSERT INTO "Wine_Vineyard" VALUES(1984,1993,777); INSERT INTO "Wine_Vineyard" VALUES(1985,1994,979); INSERT INTO "Wine_Vineyard" VALUES(1986,1995,939); INSERT INTO "Wine_Vineyard" VALUES(1987,1996,106); INSERT INTO "Wine_Vineyard" VALUES(1988,1997,334); INSERT INTO "Wine_Vineyard" VALUES(1989,1998,501); INSERT INTO "Wine_Vineyard" VALUES(1990,1999,904); INSERT INTO "Wine_Vineyard" VALUES(1991,2000,990); INSERT INTO "Wine_Vineyard" VALUES(1992,2001,991); INSERT INTO "Wine_Vineyard" VALUES(1993,2002,846); INSERT INTO "Wine_Vineyard" VALUES(1994,2003,992); INSERT INTO "Wine_Vineyard" VALUES(1995,2004,993); INSERT INTO "Wine_Vineyard" VALUES(1996,2005,806); INSERT INTO "Wine_Vineyard" VALUES(1997,2006,702); INSERT INTO "Wine_Vineyard" VALUES(1998,2007,994); INSERT INTO "Wine_Vineyard" VALUES(1999,2008,169); INSERT INTO "Wine_Vineyard" VALUES(2000,2009,987); INSERT INTO "Wine_Vineyard" VALUES(2001,2010,915); INSERT INTO "Wine_Vineyard" VALUES(2002,2011,280); INSERT INTO "Wine_Vineyard" VALUES(2003,2012,563); INSERT INTO "Wine_Vineyard" VALUES(2004,2014,864); INSERT INTO "Wine_Vineyard" VALUES(2005,2015,142); INSERT INTO "Wine_Vineyard" VALUES(2006,2016,600); INSERT INTO "Wine_Vineyard" VALUES(2007,2017,995); INSERT INTO "Wine_Vineyard" VALUES(2008,2018,917); INSERT INTO "Wine_Vineyard" VALUES(2009,2019,142); INSERT INTO "Wine_Vineyard" VALUES(2010,2020,272); INSERT INTO "Wine_Vineyard" VALUES(2011,2021,745); INSERT INTO "Wine_Vineyard" VALUES(2012,2022,674); INSERT INTO "Wine_Vineyard" VALUES(2013,2023,996); INSERT INTO "Wine_Vineyard" VALUES(2014,2024,997); INSERT INTO "Wine_Vineyard" VALUES(2015,2025,634); INSERT INTO "Wine_Vineyard" VALUES(2016,2026,846); INSERT INTO "Wine_Vineyard" VALUES(2017,2027,998); INSERT INTO "Wine_Vineyard" VALUES(2018,2028,999); INSERT INTO "Wine_Vineyard" VALUES(2019,2029,900); INSERT INTO "Wine_Vineyard" VALUES(2020,2030,634); INSERT INTO "Wine_Vineyard" VALUES(2021,2031,995); INSERT INTO "Wine_Vineyard" VALUES(2022,2032,35); INSERT INTO "Wine_Vineyard" VALUES(2023,2033,648); INSERT INTO "Wine_Vineyard" VALUES(2024,2034,64); INSERT INTO "Wine_Vineyard" VALUES(2025,2035,846); INSERT INTO "Wine_Vineyard" VALUES(2026,2037,641); INSERT INTO "Wine_Vineyard" VALUES(2027,2038,988); INSERT INTO "Wine_Vineyard" VALUES(2028,2039,1000); INSERT INTO "Wine_Vineyard" VALUES(2029,2040,777); INSERT INTO "Wine_Vineyard" VALUES(2030,2041,1001); INSERT INTO "Wine_Vineyard" VALUES(2031,2042,979); INSERT INTO "Wine_Vineyard" VALUES(2032,2043,928); INSERT INTO "Wine_Vineyard" VALUES(2033,2045,3); INSERT INTO "Wine_Vineyard" VALUES(2034,2046,1002); INSERT INTO "Wine_Vineyard" VALUES(2035,2047,372); INSERT INTO "Wine_Vineyard" VALUES(2036,2048,909); INSERT INTO "Wine_Vineyard" VALUES(2037,2050,562); INSERT INTO "Wine_Vineyard" VALUES(2038,2051,880); INSERT INTO "Wine_Vineyard" VALUES(2039,2053,827); INSERT INTO "Wine_Vineyard" VALUES(2040,2054,1003); INSERT INTO "Wine_Vineyard" VALUES(2041,2056,1004); INSERT INTO "Wine_Vineyard" VALUES(2042,2059,280); INSERT INTO "Wine_Vineyard" VALUES(2043,2060,972); INSERT INTO "Wine_Vineyard" VALUES(2044,2063,1005); INSERT INTO "Wine_Vineyard" VALUES(2045,2064,624); INSERT INTO "Wine_Vineyard" VALUES(2046,2065,1006); INSERT INTO "Wine_Vineyard" VALUES(2047,2066,1007); INSERT INTO "Wine_Vineyard" VALUES(2048,2067,743); INSERT INTO "Wine_Vineyard" VALUES(2049,2068,613); INSERT INTO "Wine_Vineyard" VALUES(2050,2069,917); INSERT INTO "Wine_Vineyard" VALUES(2051,2071,979); INSERT INTO "Wine_Vineyard" VALUES(2052,2072,790); INSERT INTO "Wine_Vineyard" VALUES(2053,2073,749); INSERT INTO "Wine_Vineyard" VALUES(2054,2074,689); INSERT INTO "Wine_Vineyard" VALUES(2055,2075,608); INSERT INTO "Wine_Vineyard" VALUES(2056,2076,988); INSERT INTO "Wine_Vineyard" VALUES(2057,2077,113); INSERT INTO "Wine_Vineyard" VALUES(2058,2078,428); INSERT INTO "Wine_Vineyard" VALUES(2059,2079,703); INSERT INTO "Wine_Vineyard" VALUES(2060,2080,1008); INSERT INTO "Wine_Vineyard" VALUES(2061,2081,846); INSERT INTO "Wine_Vineyard" VALUES(2062,2083,582); INSERT INTO "Wine_Vineyard" VALUES(2063,2085,770); INSERT INTO "Wine_Vineyard" VALUES(2064,2086,3); INSERT INTO "Wine_Vineyard" VALUES(2065,2087,779); INSERT INTO "Wine_Vineyard" VALUES(2066,2089,234); INSERT INTO "Wine_Vineyard" VALUES(2067,2090,756); INSERT INTO "Wine_Vineyard" VALUES(2068,2091,1009); INSERT INTO "Wine_Vineyard" VALUES(2069,2092,624); INSERT INTO "Wine_Vineyard" VALUES(2070,2093,983); INSERT INTO "Wine_Vineyard" VALUES(2071,2094,1002); INSERT INTO "Wine_Vineyard" VALUES(2072,2096,1010); INSERT INTO "Wine_Vineyard" VALUES(2073,2097,428); INSERT INTO "Wine_Vineyard" VALUES(2074,2098,882); INSERT INTO "Wine_Vineyard" VALUES(2075,2099,1011); INSERT INTO "Wine_Vineyard" VALUES(2076,2100,846); INSERT INTO "Wine_Vineyard" VALUES(2077,2101,23); INSERT INTO "Wine_Vineyard" VALUES(2078,2103,1012); INSERT INTO "Wine_Vineyard" VALUES(2079,2104,1013); INSERT INTO "Wine_Vineyard" VALUES(2080,2105,1011); INSERT INTO "Wine_Vineyard" VALUES(2081,2106,624); INSERT INTO "Wine_Vineyard" VALUES(2082,2107,1014); INSERT INTO "Wine_Vineyard" VALUES(2083,2108,806); INSERT INTO "Wine_Vineyard" VALUES(2084,2110,1015); INSERT INTO "Wine_Vineyard" VALUES(2085,2112,874); INSERT INTO "Wine_Vineyard" VALUES(2086,2113,311); INSERT INTO "Wine_Vineyard" VALUES(2087,2116,824); INSERT INTO "Wine_Vineyard" VALUES(2088,2117,979); INSERT INTO "Wine_Vineyard" VALUES(2089,2118,980); INSERT INTO "Wine_Vineyard" VALUES(2090,2119,397); INSERT INTO "Wine_Vineyard" VALUES(2091,2121,1016); INSERT INTO "Wine_Vineyard" VALUES(2092,2123,893); INSERT INTO "Wine_Vineyard" VALUES(2093,2124,534); INSERT INTO "Wine_Vineyard" VALUES(2094,2125,156); INSERT INTO "Wine_Vineyard" VALUES(2095,2126,156); INSERT INTO "Wine_Vineyard" VALUES(2096,2127,723); INSERT INTO "Wine_Vineyard" VALUES(2097,2128,988); INSERT INTO "Wine_Vineyard" VALUES(2098,2129,857); INSERT INTO "Wine_Vineyard" VALUES(2099,2130,629); INSERT INTO "Wine_Vineyard" VALUES(2100,2131,928); INSERT INTO "Wine_Vineyard" VALUES(2101,2132,930); INSERT INTO "Wine_Vineyard" VALUES(2102,2133,616); INSERT INTO "Wine_Vineyard" VALUES(2103,2134,1017); INSERT INTO "Wine_Vineyard" VALUES(2104,2135,1018); INSERT INTO "Wine_Vineyard" VALUES(2105,2136,586); INSERT INTO "Wine_Vineyard" VALUES(2106,2137,669); INSERT INTO "Wine_Vineyard" VALUES(2107,2139,499); INSERT INTO "Wine_Vineyard" VALUES(2108,2140,884); INSERT INTO "Wine_Vineyard" VALUES(2109,2141,870); INSERT INTO "Wine_Vineyard" VALUES(2110,2142,280); INSERT INTO "Wine_Vineyard" VALUES(2111,2143,968); INSERT INTO "Wine_Vineyard" VALUES(2112,2144,988); INSERT INTO "Wine_Vineyard" VALUES(2113,2145,213); INSERT INTO "Wine_Vineyard" VALUES(2114,2146,1019); INSERT INTO "Wine_Vineyard" VALUES(2115,2147,201); INSERT INTO "Wine_Vineyard" VALUES(2116,2148,828); INSERT INTO "Wine_Vineyard" VALUES(2117,2149,455); INSERT INTO "Wine_Vineyard" VALUES(2118,2152,801); INSERT INTO "Wine_Vineyard" VALUES(2119,2153,874); INSERT INTO "Wine_Vineyard" VALUES(2120,2154,428); INSERT INTO "Wine_Vineyard" VALUES(2121,2155,562); INSERT INTO "Wine_Vineyard" VALUES(2122,2157,211); INSERT INTO "Wine_Vineyard" VALUES(2123,2158,1020); INSERT INTO "Wine_Vineyard" VALUES(2124,2159,1021); INSERT INTO "Wine_Vineyard" VALUES(2125,2160,702); INSERT INTO "Wine_Vineyard" VALUES(2126,2164,979); INSERT INTO "Wine_Vineyard" VALUES(2127,2165,211); INSERT INTO "Wine_Vineyard" VALUES(2128,2166,1022); INSERT INTO "Wine_Vineyard" VALUES(2129,2167,163); INSERT INTO "Wine_Vineyard" VALUES(2130,2168,748); INSERT INTO "Wine_Vineyard" VALUES(2131,2169,835); INSERT INTO "Wine_Vineyard" VALUES(2132,2171,162); INSERT INTO "Wine_Vineyard" VALUES(2133,2172,396); INSERT INTO "Wine_Vineyard" VALUES(2134,2173,436); INSERT INTO "Wine_Vineyard" VALUES(2135,2175,712); INSERT INTO "Wine_Vineyard" VALUES(2136,2176,738); INSERT INTO "Wine_Vineyard" VALUES(2137,2177,672); INSERT INTO "Wine_Vineyard" VALUES(2138,2179,735); INSERT INTO "Wine_Vineyard" VALUES(2139,2180,988); INSERT INTO "Wine_Vineyard" VALUES(2140,2181,1023); INSERT INTO "Wine_Vineyard" VALUES(2141,2182,234); INSERT INTO "Wine_Vineyard" VALUES(2142,2183,791); INSERT INTO "Wine_Vineyard" VALUES(2143,2184,428); INSERT INTO "Wine_Vineyard" VALUES(2144,2185,1024); INSERT INTO "Wine_Vineyard" VALUES(2145,2186,518); INSERT INTO "Wine_Vineyard" VALUES(2146,2191,98); INSERT INTO "Wine_Vineyard" VALUES(2147,2193,428); INSERT INTO "Wine_Vineyard" VALUES(2148,2194,851); INSERT INTO "Wine_Vineyard" VALUES(2149,2195,624); INSERT INTO "Wine_Vineyard" VALUES(2150,2196,106); INSERT INTO "Wine_Vineyard" VALUES(2151,2197,79); INSERT INTO "Wine_Vineyard" VALUES(2152,2198,915); INSERT INTO "Wine_Vineyard" VALUES(2153,2199,1025); INSERT INTO "Wine_Vineyard" VALUES(2154,2200,186); INSERT INTO "Wine_Vineyard" VALUES(2155,2201,269); INSERT INTO "Wine_Vineyard" VALUES(2156,2202,1026); INSERT INTO "Wine_Vineyard" VALUES(2157,2203,36); INSERT INTO "Wine_Vineyard" VALUES(2158,2204,373); INSERT INTO "Wine_Vineyard" VALUES(2159,2205,83); INSERT INTO "Wine_Vineyard" VALUES(2160,2206,331); INSERT INTO "Wine_Vineyard" VALUES(2161,2207,456); INSERT INTO "Wine_Vineyard" VALUES(2162,2208,1027); INSERT INTO "Wine_Vineyard" VALUES(2163,2209,1028); INSERT INTO "Wine_Vineyard" VALUES(2164,2210,1029); INSERT INTO "Wine_Vineyard" VALUES(2165,2211,511); INSERT INTO "Wine_Vineyard" VALUES(2166,2212,1030); INSERT INTO "Wine_Vineyard" VALUES(2167,2213,1031); INSERT INTO "Wine_Vineyard" VALUES(2168,2214,459); INSERT INTO "Wine_Vineyard" VALUES(2169,2215,331); INSERT INTO "Wine_Vineyard" VALUES(2170,2216,239); INSERT INTO "Wine_Vineyard" VALUES(2171,2217,948); INSERT INTO "Wine_Vineyard" VALUES(2172,2218,595); INSERT INTO "Wine_Vineyard" VALUES(2173,2219,201); INSERT INTO "Wine_Vineyard" VALUES(2174,2220,495); INSERT INTO "Wine_Vineyard" VALUES(2175,2221,1032); INSERT INTO "Wine_Vineyard" VALUES(2176,2222,36); INSERT INTO "Wine_Vineyard" VALUES(2177,2223,36); INSERT INTO "Wine_Vineyard" VALUES(2178,2224,1033); INSERT INTO "Wine_Vineyard" VALUES(2179,2225,177); INSERT INTO "Wine_Vineyard" VALUES(2180,2226,459); INSERT INTO "Wine_Vineyard" VALUES(2181,2227,1034); INSERT INTO "Wine_Vineyard" VALUES(2182,2228,600); INSERT INTO "Wine_Vineyard" VALUES(2183,2229,269); INSERT INTO "Wine_Vineyard" VALUES(2184,2230,920); INSERT INTO "Wine_Vineyard" VALUES(2185,2231,531); INSERT INTO "Wine_Vineyard" VALUES(2186,2232,37); INSERT INTO "Wine_Vineyard" VALUES(2187,2233,1033); INSERT INTO "Wine_Vineyard" VALUES(2188,2234,1033); INSERT INTO "Wine_Vineyard" VALUES(2189,2235,370); INSERT INTO "Wine_Vineyard" VALUES(2190,2236,36); INSERT INTO "Wine_Vineyard" VALUES(2191,2237,1026); INSERT INTO "Wine_Vineyard" VALUES(2192,2238,162); INSERT INTO "Wine_Vineyard" VALUES(2193,2239,1035); INSERT INTO "Wine_Vineyard" VALUES(2194,2240,1030); INSERT INTO "Wine_Vineyard" VALUES(2195,2241,1036); INSERT INTO "Wine_Vineyard" VALUES(2196,2242,1037); INSERT INTO "Wine_Vineyard" VALUES(2197,2243,464); INSERT INTO "Wine_Vineyard" VALUES(2198,2244,479); INSERT INTO "Wine_Vineyard" VALUES(2199,2245,1038); INSERT INTO "Wine_Vineyard" VALUES(2200,2246,36); INSERT INTO "Wine_Vineyard" VALUES(2201,2247,595); INSERT INTO "Wine_Vineyard" VALUES(2202,2248,351); INSERT INTO "Wine_Vineyard" VALUES(2203,2249,252); INSERT INTO "Wine_Vineyard" VALUES(2204,2250,31); INSERT INTO "Wine_Vineyard" VALUES(2205,2251,1039); INSERT INTO "Wine_Vineyard" VALUES(2206,2252,489); INSERT INTO "Wine_Vineyard" VALUES(2207,2253,1040); INSERT INTO "Wine_Vineyard" VALUES(2208,2254,1041); INSERT INTO "Wine_Vineyard" VALUES(2209,2255,459); INSERT INTO "Wine_Vineyard" VALUES(2210,2256,297); INSERT INTO "Wine_Vineyard" VALUES(2211,2257,1042); INSERT INTO "Wine_Vineyard" VALUES(2212,2258,650); INSERT INTO "Wine_Vineyard" VALUES(2213,2259,1041); INSERT INTO "Wine_Vineyard" VALUES(2214,2260,369); INSERT INTO "Wine_Vineyard" VALUES(2215,2261,414); INSERT INTO "Wine_Vineyard" VALUES(2216,2262,72); INSERT INTO "Wine_Vineyard" VALUES(2217,2263,437); INSERT INTO "Wine_Vineyard" VALUES(2218,2264,354); INSERT INTO "Wine_Vineyard" VALUES(2219,2265,1043); INSERT INTO "Wine_Vineyard" VALUES(2220,2266,201); INSERT INTO "Wine_Vineyard" VALUES(2221,2267,292); INSERT INTO "Wine_Vineyard" VALUES(2222,2268,1044); INSERT INTO "Wine_Vineyard" VALUES(2223,2269,1032); INSERT INTO "Wine_Vineyard" VALUES(2224,2270,936); INSERT INTO "Wine_Vineyard" VALUES(2225,2271,1045); INSERT INTO "Wine_Vineyard" VALUES(2226,2272,1046); INSERT INTO "Wine_Vineyard" VALUES(2227,2273,79); INSERT INTO "Wine_Vineyard" VALUES(2228,2274,1041); INSERT INTO "Wine_Vineyard" VALUES(2229,2275,1047); INSERT INTO "Wine_Vineyard" VALUES(2230,2276,1042); INSERT INTO "Wine_Vineyard" VALUES(2231,2277,70); INSERT INTO "Wine_Vineyard" VALUES(2232,2278,1048); INSERT INTO "Wine_Vineyard" VALUES(2233,2279,397); INSERT INTO "Wine_Vineyard" VALUES(2234,2280,825); INSERT INTO "Wine_Vineyard" VALUES(2235,2281,527); INSERT INTO "Wine_Vineyard" VALUES(2236,2282,244); INSERT INTO "Wine_Vineyard" VALUES(2237,2283,615); INSERT INTO "Wine_Vineyard" VALUES(2238,2284,1049); INSERT INTO "Wine_Vineyard" VALUES(2239,2285,534); INSERT INTO "Wine_Vineyard" VALUES(2240,2286,768); INSERT INTO "Wine_Vineyard" VALUES(2241,2287,552); INSERT INTO "Wine_Vineyard" VALUES(2242,2288,252); INSERT INTO "Wine_Vineyard" VALUES(2243,2289,64); INSERT INTO "Wine_Vineyard" VALUES(2244,2290,17); INSERT INTO "Wine_Vineyard" VALUES(2245,2291,568); INSERT INTO "Wine_Vineyard" VALUES(2246,2292,417); INSERT INTO "Wine_Vineyard" VALUES(2247,2293,1050); INSERT INTO "Wine_Vineyard" VALUES(2248,2294,1051); INSERT INTO "Wine_Vineyard" VALUES(2249,2295,1052); INSERT INTO "Wine_Vineyard" VALUES(2250,2296,522); INSERT INTO "Wine_Vineyard" VALUES(2251,2297,1053); INSERT INTO "Wine_Vineyard" VALUES(2252,2298,458); INSERT INTO "Wine_Vineyard" VALUES(2253,2299,1054); INSERT INTO "Wine_Vineyard" VALUES(2254,2300,1055); INSERT INTO "Wine_Vineyard" VALUES(2255,2301,268); INSERT INTO "Wine_Vineyard" VALUES(2256,2302,1056); INSERT INTO "Wine_Vineyard" VALUES(2257,2303,948); INSERT INTO "Wine_Vineyard" VALUES(2258,2304,1057); INSERT INTO "Wine_Vineyard" VALUES(2259,2305,91); INSERT INTO "Wine_Vineyard" VALUES(2260,2306,1058); INSERT INTO "Wine_Vineyard" VALUES(2261,2307,196); INSERT INTO "Wine_Vineyard" VALUES(2262,2308,1059); INSERT INTO "Wine_Vineyard" VALUES(2263,2309,455); INSERT INTO "Wine_Vineyard" VALUES(2264,2310,440); INSERT INTO "Wine_Vineyard" VALUES(2265,2311,1042); INSERT INTO "Wine_Vineyard" VALUES(2266,2312,170); INSERT INTO "Wine_Vineyard" VALUES(2267,2313,1060); INSERT INTO "Wine_Vineyard" VALUES(2268,2314,1061); INSERT INTO "Wine_Vineyard" VALUES(2269,2315,401); INSERT INTO "Wine_Vineyard" VALUES(2270,2316,36); INSERT INTO "Wine_Vineyard" VALUES(2271,2317,1062); INSERT INTO "Wine_Vineyard" VALUES(2272,2318,91); INSERT INTO "Wine_Vineyard" VALUES(2273,2319,1063); INSERT INTO "Wine_Vineyard" VALUES(2274,2320,1064); INSERT INTO "Wine_Vineyard" VALUES(2275,2321,655); INSERT INTO "Wine_Vineyard" VALUES(2276,2322,1065); INSERT INTO "Wine_Vineyard" VALUES(2277,2323,1066); INSERT INTO "Wine_Vineyard" VALUES(2278,2324,1067); INSERT INTO "Wine_Vineyard" VALUES(2279,2325,884); INSERT INTO "Wine_Vineyard" VALUES(2280,2326,1068); INSERT INTO "Wine_Vineyard" VALUES(2281,2327,688); INSERT INTO "Wine_Vineyard" VALUES(2282,2328,1069); INSERT INTO "Wine_Vineyard" VALUES(2283,2329,361); INSERT INTO "Wine_Vineyard" VALUES(2284,2330,576); INSERT INTO "Wine_Vineyard" VALUES(2285,2331,3); INSERT INTO "Wine_Vineyard" VALUES(2286,2332,1070); INSERT INTO "Wine_Vineyard" VALUES(2287,2333,1071); INSERT INTO "Wine_Vineyard" VALUES(2288,2334,127); INSERT INTO "Wine_Vineyard" VALUES(2289,2335,669); INSERT INTO "Wine_Vineyard" VALUES(2290,2336,833); INSERT INTO "Wine_Vineyard" VALUES(2291,2337,323); INSERT INTO "Wine_Vineyard" VALUES(2292,2338,708); INSERT INTO "Wine_Vineyard" VALUES(2293,2339,84); INSERT INTO "Wine_Vineyard" VALUES(2294,2340,1072); INSERT INTO "Wine_Vineyard" VALUES(2295,2341,524); INSERT INTO "Wine_Vineyard" VALUES(2296,2342,8); INSERT INTO "Wine_Vineyard" VALUES(2297,2343,244); INSERT INTO "Wine_Vineyard" VALUES(2298,2344,421); INSERT INTO "Wine_Vineyard" VALUES(2299,2345,1073); INSERT INTO "Wine_Vineyard" VALUES(2300,2346,36); INSERT INTO "Wine_Vineyard" VALUES(2301,2347,1074); INSERT INTO "Wine_Vineyard" VALUES(2302,2348,1075); INSERT INTO "Wine_Vineyard" VALUES(2303,2349,696); INSERT INTO "Wine_Vineyard" VALUES(2304,2350,92); INSERT INTO "Wine_Vineyard" VALUES(2305,2351,1076); INSERT INTO "Wine_Vineyard" VALUES(2306,2352,57); INSERT INTO "Wine_Vineyard" VALUES(2307,2353,91); INSERT INTO "Wine_Vineyard" VALUES(2308,2354,1077); INSERT INTO "Wine_Vineyard" VALUES(2309,2355,239); INSERT INTO "Wine_Vineyard" VALUES(2310,2356,599); INSERT INTO "Wine_Vineyard" VALUES(2311,2357,250); INSERT INTO "Wine_Vineyard" VALUES(2312,2358,1078); INSERT INTO "Wine_Vineyard" VALUES(2313,2359,437); INSERT INTO "Wine_Vineyard" VALUES(2314,2360,582); INSERT INTO "Wine_Vineyard" VALUES(2315,2361,299); INSERT INTO "Wine_Vineyard" VALUES(2316,2362,227); INSERT INTO "Wine_Vineyard" VALUES(2317,2363,258); INSERT INTO "Wine_Vineyard" VALUES(2318,2364,281); INSERT INTO "Wine_Vineyard" VALUES(2319,2365,1079); INSERT INTO "Wine_Vineyard" VALUES(2320,2366,248); INSERT INTO "Wine_Vineyard" VALUES(2321,2367,47); INSERT INTO "Wine_Vineyard" VALUES(2322,2368,496); INSERT INTO "Wine_Vineyard" VALUES(2323,2369,1080); INSERT INTO "Wine_Vineyard" VALUES(2324,2370,1081); INSERT INTO "Wine_Vineyard" VALUES(2325,2371,430); INSERT INTO "Wine_Vineyard" VALUES(2326,2372,25); INSERT INTO "Wine_Vineyard" VALUES(2327,2373,732); INSERT INTO "Wine_Vineyard" VALUES(2328,2374,1082); INSERT INTO "Wine_Vineyard" VALUES(2329,2375,246); INSERT INTO "Wine_Vineyard" VALUES(2330,2376,1041); INSERT INTO "Wine_Vineyard" VALUES(2331,2377,122); INSERT INTO "Wine_Vineyard" VALUES(2332,2378,335); INSERT INTO "Wine_Vineyard" VALUES(2333,2379,1083); INSERT INTO "Wine_Vineyard" VALUES(2334,2380,966); INSERT INTO "Wine_Vineyard" VALUES(2335,2381,10); INSERT INTO "Wine_Vineyard" VALUES(2336,2382,62); INSERT INTO "Wine_Vineyard" VALUES(2337,2383,1084); INSERT INTO "Wine_Vineyard" VALUES(2338,2384,502); INSERT INTO "Wine_Vineyard" VALUES(2339,2385,35); INSERT INTO "Wine_Vineyard" VALUES(2340,2386,552); INSERT INTO "Wine_Vineyard" VALUES(2341,2387,23); INSERT INTO "Wine_Vineyard" VALUES(2342,2388,252); INSERT INTO "Wine_Vineyard" VALUES(2343,2389,1085); INSERT INTO "Wine_Vineyard" VALUES(2344,2390,1078); INSERT INTO "Wine_Vineyard" VALUES(2345,2391,1086); INSERT INTO "Wine_Vineyard" VALUES(2346,2392,461); INSERT INTO "Wine_Vineyard" VALUES(2347,2393,606); INSERT INTO "Wine_Vineyard" VALUES(2348,2394,276); INSERT INTO "Wine_Vineyard" VALUES(2349,2395,1040); INSERT INTO "Wine_Vineyard" VALUES(2350,2396,75); INSERT INTO "Wine_Vineyard" VALUES(2351,2397,783); INSERT INTO "Wine_Vineyard" VALUES(2352,2398,297); INSERT INTO "Wine_Vineyard" VALUES(2353,2399,999); INSERT INTO "Wine_Vineyard" VALUES(2354,2400,322); INSERT INTO "Wine_Vineyard" VALUES(2355,2401,1087); INSERT INTO "Wine_Vineyard" VALUES(2356,2402,47); INSERT INTO "Wine_Vineyard" VALUES(2357,2403,453); INSERT INTO "Wine_Vineyard" VALUES(2358,2404,276); INSERT INTO "Wine_Vineyard" VALUES(2359,2405,506); INSERT INTO "Wine_Vineyard" VALUES(2360,2406,103); INSERT INTO "Wine_Vineyard" VALUES(2361,2407,233); INSERT INTO "Wine_Vineyard" VALUES(2362,2408,10); INSERT INTO "Wine_Vineyard" VALUES(2363,2409,1088); INSERT INTO "Wine_Vineyard" VALUES(2364,2410,803); INSERT INTO "Wine_Vineyard" VALUES(2365,2411,1041); INSERT INTO "Wine_Vineyard" VALUES(2366,2412,758); INSERT INTO "Wine_Vineyard" VALUES(2367,2413,732); INSERT INTO "Wine_Vineyard" VALUES(2368,2414,591); INSERT INTO "Wine_Vineyard" VALUES(2369,2415,1089); INSERT INTO "Wine_Vineyard" VALUES(2370,2416,473); INSERT INTO "Wine_Vineyard" VALUES(2371,2417,582); INSERT INTO "Wine_Vineyard" VALUES(2372,2418,1090); INSERT INTO "Wine_Vineyard" VALUES(2373,2419,1091); INSERT INTO "Wine_Vineyard" VALUES(2374,2420,1092); INSERT INTO "Wine_Vineyard" VALUES(2375,2421,31); INSERT INTO "Wine_Vineyard" VALUES(2376,2422,1093); INSERT INTO "Wine_Vineyard" VALUES(2377,2423,1094); INSERT INTO "Wine_Vineyard" VALUES(2378,2424,576); INSERT INTO "Wine_Vineyard" VALUES(2379,2425,292); INSERT INTO "Wine_Vineyard" VALUES(2380,2426,426); INSERT INTO "Wine_Vineyard" VALUES(2381,2427,534); INSERT INTO "Wine_Vineyard" VALUES(2382,2428,236); INSERT INTO "Wine_Vineyard" VALUES(2383,2429,1095); INSERT INTO "Wine_Vineyard" VALUES(2384,2430,155); INSERT INTO "Wine_Vineyard" VALUES(2385,2431,490); INSERT INTO "Wine_Vineyard" VALUES(2386,2432,1096); INSERT INTO "Wine_Vineyard" VALUES(2387,2433,17); INSERT INTO "Wine_Vineyard" VALUES(2388,2434,820); INSERT INTO "Wine_Vineyard" VALUES(2389,2435,1097); INSERT INTO "Wine_Vineyard" VALUES(2390,2436,601); INSERT INTO "Wine_Vineyard" VALUES(2391,2437,1098); INSERT INTO "Wine_Vineyard" VALUES(2392,2438,489); INSERT INTO "Wine_Vineyard" VALUES(2393,2439,1012); INSERT INTO "Wine_Vineyard" VALUES(2394,2440,56); INSERT INTO "Wine_Vineyard" VALUES(2395,2441,348); INSERT INTO "Wine_Vineyard" VALUES(2396,2442,609); INSERT INTO "Wine_Vineyard" VALUES(2397,2443,281); INSERT INTO "Wine_Vineyard" VALUES(2398,2444,1030); INSERT INTO "Wine_Vineyard" VALUES(2399,2445,865); INSERT INTO "Wine_Vineyard" VALUES(2400,2446,1099); INSERT INTO "Wine_Vineyard" VALUES(2401,2447,1100); INSERT INTO "Wine_Vineyard" VALUES(2402,2448,76); INSERT INTO "Wine_Vineyard" VALUES(2403,2449,145); INSERT INTO "Wine_Vineyard" VALUES(2404,2450,3); INSERT INTO "Wine_Vineyard" VALUES(2405,2451,280); INSERT INTO "Wine_Vineyard" VALUES(2406,2452,1101); INSERT INTO "Wine_Vineyard" VALUES(2407,2453,606); INSERT INTO "Wine_Vineyard" VALUES(2408,2454,678); INSERT INTO "Wine_Vineyard" VALUES(2409,2455,1015); INSERT INTO "Wine_Vineyard" VALUES(2410,2456,267); INSERT INTO "Wine_Vineyard" VALUES(2411,2457,534); INSERT INTO "Wine_Vineyard" VALUES(2412,2458,247); INSERT INTO "Wine_Vineyard" VALUES(2413,2459,1102); INSERT INTO "Wine_Vineyard" VALUES(2414,2460,502); INSERT INTO "Wine_Vineyard" VALUES(2415,2461,425); INSERT INTO "Wine_Vineyard" VALUES(2416,2462,3); INSERT INTO "Wine_Vineyard" VALUES(2417,2463,1103); INSERT INTO "Wine_Vineyard" VALUES(2418,2464,644); INSERT INTO "Wine_Vineyard" VALUES(2419,2465,455); INSERT INTO "Wine_Vineyard" VALUES(2420,2466,1104); INSERT INTO "Wine_Vineyard" VALUES(2421,2467,486); INSERT INTO "Wine_Vineyard" VALUES(2422,2468,695); INSERT INTO "Wine_Vineyard" VALUES(2423,2469,619); INSERT INTO "Wine_Vineyard" VALUES(2424,2470,1105); INSERT INTO "Wine_Vineyard" VALUES(2425,2471,1106); INSERT INTO "Wine_Vineyard" VALUES(2426,2472,442); INSERT INTO "Wine_Vineyard" VALUES(2427,2473,1107); INSERT INTO "Wine_Vineyard" VALUES(2428,2474,17); INSERT INTO "Wine_Vineyard" VALUES(2429,2475,1108); INSERT INTO "Wine_Vineyard" VALUES(2430,2476,448); INSERT INTO "Wine_Vineyard" VALUES(2431,2477,36); INSERT INTO "Wine_Vineyard" VALUES(2432,2478,984); INSERT INTO "Wine_Vineyard" VALUES(2433,2479,1109); INSERT INTO "Wine_Vineyard" VALUES(2434,2480,236); INSERT INTO "Wine_Vineyard" VALUES(2435,2481,1110); INSERT INTO "Wine_Vineyard" VALUES(2436,2482,513); INSERT INTO "Wine_Vineyard" VALUES(2437,2483,1111); INSERT INTO "Wine_Vineyard" VALUES(2438,2484,1112); INSERT INTO "Wine_Vineyard" VALUES(2439,2485,1113); INSERT INTO "Wine_Vineyard" VALUES(2440,2486,361); INSERT INTO "Wine_Vineyard" VALUES(2441,2487,1114); INSERT INTO "Wine_Vineyard" VALUES(2442,2488,213); INSERT INTO "Wine_Vineyard" VALUES(2443,2489,1077); INSERT INTO "Wine_Vineyard" VALUES(2444,2490,825); INSERT INTO "Wine_Vineyard" VALUES(2445,2491,259); INSERT INTO "Wine_Vineyard" VALUES(2446,2492,1115); INSERT INTO "Wine_Vineyard" VALUES(2447,2493,1091); INSERT INTO "Wine_Vineyard" VALUES(2448,2494,1116); INSERT INTO "Wine_Vineyard" VALUES(2449,2495,234); INSERT INTO "Wine_Vineyard" VALUES(2450,2496,561); INSERT INTO "Wine_Vineyard" VALUES(2451,2497,984); INSERT INTO "Wine_Vineyard" VALUES(2452,2498,1117); INSERT INTO "Wine_Vineyard" VALUES(2453,2499,155); INSERT INTO "Wine_Vineyard" VALUES(2454,2500,1118); INSERT INTO "Wine_Vineyard" VALUES(2455,2501,417); INSERT INTO "Wine_Vineyard" VALUES(2456,2502,843); INSERT INTO "Wine_Vineyard" VALUES(2457,2503,1009); INSERT INTO "Wine_Vineyard" VALUES(2458,2504,49); INSERT INTO "Wine_Vineyard" VALUES(2459,2505,280); INSERT INTO "Wine_Vineyard" VALUES(2460,2506,236); INSERT INTO "Wine_Vineyard" VALUES(2461,2507,1119); INSERT INTO "Wine_Vineyard" VALUES(2462,2508,246); INSERT INTO "Wine_Vineyard" VALUES(2463,2509,1120); INSERT INTO "Wine_Vineyard" VALUES(2464,2510,1113); INSERT INTO "Wine_Vineyard" VALUES(2465,2511,1121); INSERT INTO "Wine_Vineyard" VALUES(2466,2512,36); INSERT INTO "Wine_Vineyard" VALUES(2467,2513,1122); INSERT INTO "Wine_Vineyard" VALUES(2468,2514,1123); INSERT INTO "Wine_Vineyard" VALUES(2469,2515,682); INSERT INTO "Wine_Vineyard" VALUES(2470,2516,3); INSERT INTO "Wine_Vineyard" VALUES(2471,2517,449); INSERT INTO "Wine_Vineyard" VALUES(2472,2518,623); INSERT INTO "Wine_Vineyard" VALUES(2473,2519,80); INSERT INTO "Wine_Vineyard" VALUES(2474,2520,1061); INSERT INTO "Wine_Vineyard" VALUES(2475,2521,1124); INSERT INTO "Wine_Vineyard" VALUES(2476,2522,1125); INSERT INTO "Wine_Vineyard" VALUES(2477,2523,268); INSERT INTO "Wine_Vineyard" VALUES(2478,2524,234); INSERT INTO "Wine_Vineyard" VALUES(2479,2525,1126); INSERT INTO "Wine_Vineyard" VALUES(2480,2526,1127); INSERT INTO "Wine_Vineyard" VALUES(2481,2527,513); INSERT INTO "Wine_Vineyard" VALUES(2482,2528,217); INSERT INTO "Wine_Vineyard" VALUES(2483,2529,41); INSERT INTO "Wine_Vineyard" VALUES(2484,2530,63); INSERT INTO "Wine_Vineyard" VALUES(2485,2531,252); INSERT INTO "Wine_Vineyard" VALUES(2486,2532,128); INSERT INTO "Wine_Vineyard" VALUES(2487,2533,36); INSERT INTO "Wine_Vineyard" VALUES(2488,2534,1128); INSERT INTO "Wine_Vineyard" VALUES(2489,2535,426); INSERT INTO "Wine_Vineyard" VALUES(2490,2536,1075); INSERT INTO "Wine_Vineyard" VALUES(2491,2537,1129); INSERT INTO "Wine_Vineyard" VALUES(2492,2538,517); INSERT INTO "Wine_Vineyard" VALUES(2493,2539,36); INSERT INTO "Wine_Vineyard" VALUES(2494,2540,1130); INSERT INTO "Wine_Vineyard" VALUES(2495,2541,1131); INSERT INTO "Wine_Vineyard" VALUES(2496,2542,615); INSERT INTO "Wine_Vineyard" VALUES(2497,2543,898); INSERT INTO "Wine_Vineyard" VALUES(2498,2544,245); INSERT INTO "Wine_Vineyard" VALUES(2499,2545,615); INSERT INTO "Wine_Vineyard" VALUES(2500,2546,227); INSERT INTO "Wine_Vineyard" VALUES(2501,2547,531); INSERT INTO "Wine_Vineyard" VALUES(2502,2548,344); INSERT INTO "Wine_Vineyard" VALUES(2503,2549,228); INSERT INTO "Wine_Vineyard" VALUES(2504,2550,442); INSERT INTO "Wine_Vineyard" VALUES(2505,2551,803); INSERT INTO "Wine_Vineyard" VALUES(2506,2552,1132); INSERT INTO "Wine_Vineyard" VALUES(2507,2553,213); INSERT INTO "Wine_Vineyard" VALUES(2508,2554,246); INSERT INTO "Wine_Vineyard" VALUES(2509,2555,280); INSERT INTO "Wine_Vineyard" VALUES(2510,2556,568); INSERT INTO "Wine_Vineyard" VALUES(2511,2557,522); INSERT INTO "Wine_Vineyard" VALUES(2512,2558,335); INSERT INTO "Wine_Vineyard" VALUES(2513,2559,1133); INSERT INTO "Wine_Vineyard" VALUES(2514,2560,57); INSERT INTO "Wine_Vineyard" VALUES(2515,2561,576); INSERT INTO "Wine_Vineyard" VALUES(2516,2562,1134); INSERT INTO "Wine_Vineyard" VALUES(2517,2563,1135); INSERT INTO "Wine_Vineyard" VALUES(2518,2564,520); INSERT INTO "Wine_Vineyard" VALUES(2519,2565,359); INSERT INTO "Wine_Vineyard" VALUES(2520,2566,358); INSERT INTO "Wine_Vineyard" VALUES(2521,2567,894); INSERT INTO "Wine_Vineyard" VALUES(2522,2568,1052); INSERT INTO "Wine_Vineyard" VALUES(2523,2569,351); INSERT INTO "Wine_Vineyard" VALUES(2524,2570,591); INSERT INTO "Wine_Vineyard" VALUES(2525,2571,554); INSERT INTO "Wine_Vineyard" VALUES(2526,2572,1136); INSERT INTO "Wine_Vineyard" VALUES(2527,2573,99); INSERT INTO "Wine_Vineyard" VALUES(2528,2574,337); INSERT INTO "Wine_Vineyard" VALUES(2529,2575,40); INSERT INTO "Wine_Vineyard" VALUES(2530,2576,487); INSERT INTO "Wine_Vineyard" VALUES(2531,2577,1137); INSERT INTO "Wine_Vineyard" VALUES(2532,2578,191); INSERT INTO "Wine_Vineyard" VALUES(2533,2579,1138); INSERT INTO "Wine_Vineyard" VALUES(2534,2580,1139); INSERT INTO "Wine_Vineyard" VALUES(2535,2581,36); INSERT INTO "Wine_Vineyard" VALUES(2536,2582,522); INSERT INTO "Wine_Vineyard" VALUES(2537,2583,437); INSERT INTO "Wine_Vineyard" VALUES(2538,2584,1140); INSERT INTO "Wine_Vineyard" VALUES(2539,2585,1125); INSERT INTO "Wine_Vineyard" VALUES(2540,2586,1141); INSERT INTO "Wine_Vineyard" VALUES(2541,2587,1079); INSERT INTO "Wine_Vineyard" VALUES(2542,2588,246); INSERT INTO "Wine_Vineyard" VALUES(2543,2589,1142); INSERT INTO "Wine_Vineyard" VALUES(2544,2590,119); INSERT INTO "Wine_Vineyard" VALUES(2545,2591,1143); INSERT INTO "Wine_Vineyard" VALUES(2546,2592,106); INSERT INTO "Wine_Vineyard" VALUES(2547,2593,1076); INSERT INTO "Wine_Vineyard" VALUES(2548,2594,46); INSERT INTO "Wine_Vineyard" VALUES(2549,2595,228); INSERT INTO "Wine_Vineyard" VALUES(2550,2596,31); INSERT INTO "Wine_Vineyard" VALUES(2551,2597,179); INSERT INTO "Wine_Vineyard" VALUES(2552,2598,795); INSERT INTO "Wine_Vineyard" VALUES(2553,2599,1076); INSERT INTO "Wine_Vineyard" VALUES(2554,2600,1144); INSERT INTO "Wine_Vineyard" VALUES(2555,2601,1145); INSERT INTO "Wine_Vineyard" VALUES(2556,2602,1146); INSERT INTO "Wine_Vineyard" VALUES(2557,2603,1052); INSERT INTO "Wine_Vineyard" VALUES(2558,2604,60); INSERT INTO "Wine_Vineyard" VALUES(2559,2605,1147); INSERT INTO "Wine_Vineyard" VALUES(2560,2606,427); INSERT INTO "Wine_Vineyard" VALUES(2561,2607,1073); INSERT INTO "Wine_Vineyard" VALUES(2562,2608,455); INSERT INTO "Wine_Vineyard" VALUES(2563,2609,1148); INSERT INTO "Wine_Vineyard" VALUES(2564,2610,678); INSERT INTO "Wine_Vineyard" VALUES(2565,2611,382); INSERT INTO "Wine_Vineyard" VALUES(2566,2612,252); INSERT INTO "Wine_Vineyard" VALUES(2567,2613,758); INSERT INTO "Wine_Vineyard" VALUES(2568,2614,1149); INSERT INTO "Wine_Vineyard" VALUES(2569,2615,492); INSERT INTO "Wine_Vineyard" VALUES(2570,2616,642); INSERT INTO "Wine_Vineyard" VALUES(2571,2617,1042); INSERT INTO "Wine_Vineyard" VALUES(2572,2618,268); INSERT INTO "Wine_Vineyard" VALUES(2573,2619,1150); INSERT INTO "Wine_Vineyard" VALUES(2574,2620,1151); INSERT INTO "Wine_Vineyard" VALUES(2575,2621,333); INSERT INTO "Wine_Vineyard" VALUES(2576,2622,1152); INSERT INTO "Wine_Vineyard" VALUES(2577,2623,17); INSERT INTO "Wine_Vineyard" VALUES(2578,2624,23); INSERT INTO "Wine_Vineyard" VALUES(2579,2625,145); INSERT INTO "Wine_Vineyard" VALUES(2580,2626,54); INSERT INTO "Wine_Vineyard" VALUES(2581,2627,155); INSERT INTO "Wine_Vineyard" VALUES(2582,2628,560); INSERT INTO "Wine_Vineyard" VALUES(2583,2629,1153); INSERT INTO "Wine_Vineyard" VALUES(2584,2630,1033); INSERT INTO "Wine_Vineyard" VALUES(2585,2631,449); INSERT INTO "Wine_Vineyard" VALUES(2586,2632,234); INSERT INTO "Wine_Vineyard" VALUES(2587,2633,610); INSERT INTO "Wine_Vineyard" VALUES(2588,2634,1154); INSERT INTO "Wine_Vineyard" VALUES(2589,2635,1049); INSERT INTO "Wine_Vineyard" VALUES(2590,2636,748); INSERT INTO "Wine_Vineyard" VALUES(2591,2637,297); INSERT INTO "Wine_Vineyard" VALUES(2592,2638,458); INSERT INTO "Wine_Vineyard" VALUES(2593,2639,461); INSERT INTO "Wine_Vineyard" VALUES(2594,2640,569); INSERT INTO "Wine_Vineyard" VALUES(2595,2641,449); INSERT INTO "Wine_Vineyard" VALUES(2596,2642,234); INSERT INTO "Wine_Vineyard" VALUES(2597,2643,10); INSERT INTO "Wine_Vineyard" VALUES(2598,2644,942); INSERT INTO "Wine_Vineyard" VALUES(2599,2645,1155); INSERT INTO "Wine_Vineyard" VALUES(2600,2646,1156); INSERT INTO "Wine_Vineyard" VALUES(2601,2647,8); INSERT INTO "Wine_Vineyard" VALUES(2602,2648,1157); INSERT INTO "Wine_Vineyard" VALUES(2603,2649,281); INSERT INTO "Wine_Vineyard" VALUES(2604,2650,1018); INSERT INTO "Wine_Vineyard" VALUES(2605,2651,1095); INSERT INTO "Wine_Vineyard" VALUES(2606,2652,225); INSERT INTO "Wine_Vineyard" VALUES(2607,2653,14); INSERT INTO "Wine_Vineyard" VALUES(2608,2654,1030); INSERT INTO "Wine_Vineyard" VALUES(2609,2655,1058); INSERT INTO "Wine_Vineyard" VALUES(2610,2656,635); INSERT INTO "Wine_Vineyard" VALUES(2611,2657,497); INSERT INTO "Wine_Vineyard" VALUES(2612,2658,1056); INSERT INTO "Wine_Vineyard" VALUES(2613,2659,1158); INSERT INTO "Wine_Vineyard" VALUES(2614,2660,1159); INSERT INTO "Wine_Vineyard" VALUES(2615,2661,1160); INSERT INTO "Wine_Vineyard" VALUES(2616,2662,36); INSERT INTO "Wine_Vineyard" VALUES(2617,2663,1161); INSERT INTO "Wine_Vineyard" VALUES(2618,2664,1162); INSERT INTO "Wine_Vineyard" VALUES(2619,2665,252); INSERT INTO "Wine_Vineyard" VALUES(2620,2666,119); INSERT INTO "Wine_Vineyard" VALUES(2621,2667,1163); INSERT INTO "Wine_Vineyard" VALUES(2622,2668,1164); INSERT INTO "Wine_Vineyard" VALUES(2623,2669,1165); INSERT INTO "Wine_Vineyard" VALUES(2624,2670,235); INSERT INTO "Wine_Vineyard" VALUES(2625,2671,523); INSERT INTO "Wine_Vineyard" VALUES(2626,2672,379); INSERT INTO "Wine_Vineyard" VALUES(2627,2673,1102); INSERT INTO "Wine_Vineyard" VALUES(2628,2674,419); INSERT INTO "Wine_Vineyard" VALUES(2629,2675,1166); INSERT INTO "Wine_Vineyard" VALUES(2630,2676,421); INSERT INTO "Wine_Vineyard" VALUES(2631,2677,664); INSERT INTO "Wine_Vineyard" VALUES(2632,2678,981); INSERT INTO "Wine_Vineyard" VALUES(2633,2679,333); INSERT INTO "Wine_Vineyard" VALUES(2634,2680,453); INSERT INTO "Wine_Vineyard" VALUES(2635,2681,601); INSERT INTO "Wine_Vineyard" VALUES(2636,2682,948); INSERT INTO "Wine_Vineyard" VALUES(2637,2683,358); INSERT INTO "Wine_Vineyard" VALUES(2638,2684,1167); INSERT INTO "Wine_Vineyard" VALUES(2639,2685,872); INSERT INTO "Wine_Vineyard" VALUES(2640,2686,591); INSERT INTO "Wine_Vineyard" VALUES(2641,2687,872); INSERT INTO "Wine_Vineyard" VALUES(2642,2688,1168); INSERT INTO "Wine_Vineyard" VALUES(2643,2689,552); INSERT INTO "Wine_Vineyard" VALUES(2644,2690,1169); INSERT INTO "Wine_Vineyard" VALUES(2645,2691,1036); INSERT INTO "Wine_Vineyard" VALUES(2646,2692,39); INSERT INTO "Wine_Vineyard" VALUES(2647,2693,1170); INSERT INTO "Wine_Vineyard" VALUES(2648,2694,1074); INSERT INTO "Wine_Vineyard" VALUES(2649,2695,1159); INSERT INTO "Wine_Vineyard" VALUES(2650,2696,944); INSERT INTO "Wine_Vineyard" VALUES(2651,2697,1171); INSERT INTO "Wine_Vineyard" VALUES(2652,2698,588); INSERT INTO "Wine_Vineyard" VALUES(2653,2699,1172); INSERT INTO "Wine_Vineyard" VALUES(2654,2700,1173); INSERT INTO "Wine_Vineyard" VALUES(2655,2701,105); INSERT INTO "Wine_Vineyard" VALUES(2656,2702,110); INSERT INTO "Wine_Vineyard" VALUES(2657,2703,1174); INSERT INTO "Wine_Vineyard" VALUES(2658,2704,213); INSERT INTO "Wine_Vineyard" VALUES(2659,2705,531); INSERT INTO "Wine_Vineyard" VALUES(2660,2706,437); INSERT INTO "Wine_Vineyard" VALUES(2661,2707,56); INSERT INTO "Wine_Vineyard" VALUES(2662,2708,1175); INSERT INTO "Wine_Vineyard" VALUES(2663,2709,882); INSERT INTO "Wine_Vineyard" VALUES(2664,2710,920); INSERT INTO "Wine_Vineyard" VALUES(2665,2711,1176); INSERT INTO "Wine_Vineyard" VALUES(2666,2712,576); INSERT INTO "Wine_Vineyard" VALUES(2667,2713,33); INSERT INTO "Wine_Vineyard" VALUES(2668,2714,219); INSERT INTO "Wine_Vineyard" VALUES(2669,2715,1177); INSERT INTO "Wine_Vineyard" VALUES(2670,2716,757); INSERT INTO "Wine_Vineyard" VALUES(2671,2717,1178); INSERT INTO "Wine_Vineyard" VALUES(2672,2718,1081); INSERT INTO "Wine_Vineyard" VALUES(2673,2719,453); INSERT INTO "Wine_Vineyard" VALUES(2674,2720,749); INSERT INTO "Wine_Vineyard" VALUES(2675,2721,1179); INSERT INTO "Wine_Vineyard" VALUES(2676,2722,76); INSERT INTO "Wine_Vineyard" VALUES(2677,2723,1180); INSERT INTO "Wine_Vineyard" VALUES(2678,2724,682); INSERT INTO "Wine_Vineyard" VALUES(2679,2725,358); INSERT INTO "Wine_Vineyard" VALUES(2680,2726,1029); INSERT INTO "Wine_Vineyard" VALUES(2681,2727,401); INSERT INTO "Wine_Vineyard" VALUES(2682,2728,191); INSERT INTO "Wine_Vineyard" VALUES(2683,2729,708); INSERT INTO "Wine_Vineyard" VALUES(2684,2730,1181); INSERT INTO "Wine_Vineyard" VALUES(2685,2731,1148); INSERT INTO "Wine_Vineyard" VALUES(2686,2732,1182); INSERT INTO "Wine_Vineyard" VALUES(2687,2733,1183); INSERT INTO "Wine_Vineyard" VALUES(2688,2734,1168); INSERT INTO "Wine_Vineyard" VALUES(2689,2735,76); INSERT INTO "Wine_Vineyard" VALUES(2690,2736,948); INSERT INTO "Wine_Vineyard" VALUES(2691,2737,1184); INSERT INTO "Wine_Vineyard" VALUES(2692,2738,884); INSERT INTO "Wine_Vineyard" VALUES(2693,2739,1185); INSERT INTO "Wine_Vineyard" VALUES(2694,2740,80); INSERT INTO "Wine_Vineyard" VALUES(2695,2741,853); INSERT INTO "Wine_Vineyard" VALUES(2696,2742,502); INSERT INTO "Wine_Vineyard" VALUES(2697,2743,874); INSERT INTO "Wine_Vineyard" VALUES(2698,2744,1127); INSERT INTO "Wine_Vineyard" VALUES(2699,2745,333); INSERT INTO "Wine_Vineyard" VALUES(2700,2746,297); INSERT INTO "Wine_Vineyard" VALUES(2701,2747,745); INSERT INTO "Wine_Vineyard" VALUES(2702,2748,1186); INSERT INTO "Wine_Vineyard" VALUES(2703,2749,1187); INSERT INTO "Wine_Vineyard" VALUES(2704,2750,1162); INSERT INTO "Wine_Vineyard" VALUES(2705,2751,216); INSERT INTO "Wine_Vineyard" VALUES(2706,2752,1188); INSERT INTO "Wine_Vineyard" VALUES(2707,2753,609); INSERT INTO "Wine_Vineyard" VALUES(2708,2754,397); INSERT INTO "Wine_Vineyard" VALUES(2709,2755,333); INSERT INTO "Wine_Vineyard" VALUES(2710,2756,597); INSERT INTO "Wine_Vineyard" VALUES(2711,2757,103); INSERT INTO "Wine_Vineyard" VALUES(2712,2758,372); INSERT INTO "Wine_Vineyard" VALUES(2713,2759,1189); INSERT INTO "Wine_Vineyard" VALUES(2714,2760,116); INSERT INTO "Wine_Vineyard" VALUES(2715,2761,401); INSERT INTO "Wine_Vineyard" VALUES(2716,2762,1190); INSERT INTO "Wine_Vineyard" VALUES(2717,2763,1191); INSERT INTO "Wine_Vineyard" VALUES(2718,2764,298); INSERT INTO "Wine_Vineyard" VALUES(2719,2765,756); INSERT INTO "Wine_Vineyard" VALUES(2720,2766,1192); INSERT INTO "Wine_Vineyard" VALUES(2721,2767,14); INSERT INTO "Wine_Vineyard" VALUES(2722,2768,430); INSERT INTO "Wine_Vineyard" VALUES(2723,2769,440); INSERT INTO "Wine_Vineyard" VALUES(2724,2770,1193); INSERT INTO "Wine_Vineyard" VALUES(2725,2771,500); INSERT INTO "Wine_Vineyard" VALUES(2726,2772,298); INSERT INTO "Wine_Vineyard" VALUES(2727,2773,522); INSERT INTO "Wine_Vineyard" VALUES(2728,2774,470); INSERT INTO "Wine_Vineyard" VALUES(2729,2775,62); INSERT INTO "Wine_Vineyard" VALUES(2730,2776,748); INSERT INTO "Wine_Vineyard" VALUES(2731,2777,513); INSERT INTO "Wine_Vineyard" VALUES(2732,2778,379); INSERT INTO "Wine_Vineyard" VALUES(2733,2779,375); INSERT INTO "Wine_Vineyard" VALUES(2734,2780,1194); INSERT INTO "Wine_Vineyard" VALUES(2735,2781,113); INSERT INTO "Wine_Vineyard" VALUES(2736,2782,856); INSERT INTO "Wine_Vineyard" VALUES(2737,2783,476); INSERT INTO "Wine_Vineyard" VALUES(2738,2784,1195); INSERT INTO "Wine_Vineyard" VALUES(2739,2785,498); INSERT INTO "Wine_Vineyard" VALUES(2740,2786,180); INSERT INTO "Wine_Vineyard" VALUES(2741,2787,1196); INSERT INTO "Wine_Vineyard" VALUES(2742,2788,1197); INSERT INTO "Wine_Vineyard" VALUES(2743,2789,71); INSERT INTO "Wine_Vineyard" VALUES(2744,2790,479); INSERT INTO "Wine_Vineyard" VALUES(2745,2791,1198); INSERT INTO "Wine_Vineyard" VALUES(2746,2792,427); INSERT INTO "Wine_Vineyard" VALUES(2747,2793,1058); INSERT INTO "Wine_Vineyard" VALUES(2748,2794,100); INSERT INTO "Wine_Vineyard" VALUES(2749,2795,70); INSERT INTO "Wine_Vineyard" VALUES(2750,2796,1199); INSERT INTO "Wine_Vineyard" VALUES(2751,2797,1200); INSERT INTO "Wine_Vineyard" VALUES(2752,2798,256); INSERT INTO "Wine_Vineyard" VALUES(2753,2799,1061); INSERT INTO "Wine_Vineyard" VALUES(2754,2800,1201); INSERT INTO "Wine_Vineyard" VALUES(2755,2801,1202); INSERT INTO "Wine_Vineyard" VALUES(2756,2802,576); INSERT INTO "Wine_Vineyard" VALUES(2757,2803,1203); INSERT INTO "Wine_Vineyard" VALUES(2758,2804,84); INSERT INTO "Wine_Vineyard" VALUES(2759,2805,825); INSERT INTO "Wine_Vineyard" VALUES(2760,2806,1204); INSERT INTO "Wine_Vineyard" VALUES(2761,2807,1205); INSERT INTO "Wine_Vineyard" VALUES(2762,2808,3); INSERT INTO "Wine_Vineyard" VALUES(2763,2809,1206); INSERT INTO "Wine_Vineyard" VALUES(2764,2810,846); INSERT INTO "Wine_Vineyard" VALUES(2765,2811,140); INSERT INTO "Wine_Vineyard" VALUES(2766,2812,129); INSERT INTO "Wine_Vineyard" VALUES(2767,2813,1207); INSERT INTO "Wine_Vineyard" VALUES(2768,2814,1208); INSERT INTO "Wine_Vineyard" VALUES(2769,2815,1030); INSERT INTO "Wine_Vineyard" VALUES(2770,2816,531); INSERT INTO "Wine_Vineyard" VALUES(2771,2817,1209); INSERT INTO "Wine_Vineyard" VALUES(2772,2818,779); INSERT INTO "Wine_Vineyard" VALUES(2773,2819,1210); INSERT INTO "Wine_Vineyard" VALUES(2774,2820,46); INSERT INTO "Wine_Vineyard" VALUES(2775,2821,1211); INSERT INTO "Wine_Vineyard" VALUES(2776,2822,46); INSERT INTO "Wine_Vineyard" VALUES(2777,2823,740); INSERT INTO "Wine_Vineyard" VALUES(2778,2824,131); INSERT INTO "Wine_Vineyard" VALUES(2779,2825,874); INSERT INTO "Wine_Vineyard" VALUES(2780,2826,1212); INSERT INTO "Wine_Vineyard" VALUES(2781,2827,176); INSERT INTO "Wine_Vineyard" VALUES(2782,2828,1102); INSERT INTO "Wine_Vineyard" VALUES(2783,2829,577); INSERT INTO "Wine_Vineyard" VALUES(2784,2830,1054); INSERT INTO "Wine_Vineyard" VALUES(2785,2831,234); INSERT INTO "Wine_Vineyard" VALUES(2786,2832,1213); INSERT INTO "Wine_Vineyard" VALUES(2787,2833,606); INSERT INTO "Wine_Vineyard" VALUES(2788,2834,576); INSERT INTO "Wine_Vineyard" VALUES(2789,2835,663); INSERT INTO "Wine_Vineyard" VALUES(2790,2836,200); INSERT INTO "Wine_Vineyard" VALUES(2791,2837,452); INSERT INTO "Wine_Vineyard" VALUES(2792,2838,1214); INSERT INTO "Wine_Vineyard" VALUES(2793,2839,3); INSERT INTO "Wine_Vineyard" VALUES(2794,2840,780); INSERT INTO "Wine_Vineyard" VALUES(2795,2841,490); INSERT INTO "Wine_Vineyard" VALUES(2796,2842,1215); INSERT INTO "Wine_Vineyard" VALUES(2797,2843,602); INSERT INTO "Wine_Vineyard" VALUES(2798,2844,280); INSERT INTO "Wine_Vineyard" VALUES(2799,2845,549); INSERT INTO "Wine_Vineyard" VALUES(2800,2846,36); INSERT INTO "Wine_Vineyard" VALUES(2801,2847,1216); INSERT INTO "Wine_Vineyard" VALUES(2802,2848,1217); INSERT INTO "Wine_Vineyard" VALUES(2803,2849,1218); INSERT INTO "Wine_Vineyard" VALUES(2804,2850,117); INSERT INTO "Wine_Vineyard" VALUES(2805,2851,974); INSERT INTO "Wine_Vineyard" VALUES(2806,2852,271); INSERT INTO "Wine_Vineyard" VALUES(2807,2853,495); INSERT INTO "Wine_Vineyard" VALUES(2808,2854,281); INSERT INTO "Wine_Vineyard" VALUES(2809,2855,1001); INSERT INTO "Wine_Vineyard" VALUES(2810,2856,964); INSERT INTO "Wine_Vineyard" VALUES(2811,2857,635); INSERT INTO "Wine_Vineyard" VALUES(2812,2858,252); INSERT INTO "Wine_Vineyard" VALUES(2813,2859,562); INSERT INTO "Wine_Vineyard" VALUES(2814,2860,31); INSERT INTO "Wine_Vineyard" VALUES(2815,2861,1219); INSERT INTO "Wine_Vineyard" VALUES(2816,2862,1220); INSERT INTO "Wine_Vineyard" VALUES(2817,2863,635); INSERT INTO "Wine_Vineyard" VALUES(2818,2864,1221); INSERT INTO "Wine_Vineyard" VALUES(2819,2865,1222); INSERT INTO "Wine_Vineyard" VALUES(2820,2866,1223); INSERT INTO "Wine_Vineyard" VALUES(2821,2867,1058); INSERT INTO "Wine_Vineyard" VALUES(2822,2868,1209); INSERT INTO "Wine_Vineyard" VALUES(2823,2869,296); INSERT INTO "Wine_Vineyard" VALUES(2824,2870,898); INSERT INTO "Wine_Vineyard" VALUES(2825,2871,1224); INSERT INTO "Wine_Vineyard" VALUES(2826,2872,1216); INSERT INTO "Wine_Vineyard" VALUES(2827,2873,337); INSERT INTO "Wine_Vineyard" VALUES(2828,2874,1225); INSERT INTO "Wine_Vineyard" VALUES(2829,2875,282); INSERT INTO "Wine_Vineyard" VALUES(2830,2876,721); INSERT INTO "Wine_Vineyard" VALUES(2831,2877,307); INSERT INTO "Wine_Vineyard" VALUES(2832,2878,1226); INSERT INTO "Wine_Vineyard" VALUES(2833,2879,1142); INSERT INTO "Wine_Vineyard" VALUES(2834,2880,10); INSERT INTO "Wine_Vineyard" VALUES(2835,2881,1223); INSERT INTO "Wine_Vineyard" VALUES(2836,2882,634); INSERT INTO "Wine_Vineyard" VALUES(2837,2883,561); INSERT INTO "Wine_Vineyard" VALUES(2838,2884,132); INSERT INTO "Wine_Vineyard" VALUES(2839,2885,323); INSERT INTO "Wine_Vineyard" VALUES(2840,2886,1227); INSERT INTO "Wine_Vineyard" VALUES(2841,2887,634); INSERT INTO "Wine_Vineyard" VALUES(2842,2888,1228); INSERT INTO "Wine_Vineyard" VALUES(2843,2889,106); INSERT INTO "Wine_Vineyard" VALUES(2844,2890,1229); INSERT INTO "Wine_Vineyard" VALUES(2845,2891,1230); INSERT INTO "Wine_Vineyard" VALUES(2846,2892,280); INSERT INTO "Wine_Vineyard" VALUES(2847,2893,842); INSERT INTO "Wine_Vineyard" VALUES(2848,2894,1231); INSERT INTO "Wine_Vineyard" VALUES(2849,2895,1232); INSERT INTO "Wine_Vineyard" VALUES(2850,2896,179); INSERT INTO "Wine_Vineyard" VALUES(2851,2897,480); INSERT INTO "Wine_Vineyard" VALUES(2852,2898,1192); INSERT INTO "Wine_Vineyard" VALUES(2853,2899,1233); INSERT INTO "Wine_Vineyard" VALUES(2854,2900,1234); INSERT INTO "Wine_Vineyard" VALUES(2855,2901,842); INSERT INTO "Wine_Vineyard" VALUES(2856,2902,1235); INSERT INTO "Wine_Vineyard" VALUES(2857,2903,1236); INSERT INTO "Wine_Vineyard" VALUES(2858,2904,427); INSERT INTO "Wine_Vineyard" VALUES(2859,2905,1237); INSERT INTO "Wine_Vineyard" VALUES(2860,2906,1238); INSERT INTO "Wine_Vineyard" VALUES(2861,2907,904); INSERT INTO "Wine_Vineyard" VALUES(2862,2908,405); INSERT INTO "Wine_Vineyard" VALUES(2863,2909,1239); INSERT INTO "Wine_Vineyard" VALUES(2864,2910,177); INSERT INTO "Wine_Vineyard" VALUES(2865,2911,803); INSERT INTO "Wine_Vineyard" VALUES(2866,2912,246); INSERT INTO "Wine_Vineyard" VALUES(2867,2913,704); INSERT INTO "Wine_Vineyard" VALUES(2868,2914,1240); INSERT INTO "Wine_Vineyard" VALUES(2869,2915,1049); INSERT INTO "Wine_Vineyard" VALUES(2870,2916,1241); INSERT INTO "Wine_Vineyard" VALUES(2871,2917,534); INSERT INTO "Wine_Vineyard" VALUES(2872,2918,1196); INSERT INTO "Wine_Vineyard" VALUES(2873,2919,730); INSERT INTO "Wine_Vineyard" VALUES(2874,2920,820); INSERT INTO "Wine_Vineyard" VALUES(2875,2921,297); INSERT INTO "Wine_Vineyard" VALUES(2876,2922,640); INSERT INTO "Wine_Vineyard" VALUES(2877,2923,473); INSERT INTO "Wine_Vineyard" VALUES(2878,2924,162); INSERT INTO "Wine_Vineyard" VALUES(2879,2925,155); INSERT INTO "Wine_Vineyard" VALUES(2880,2926,476); INSERT INTO "Wine_Vineyard" VALUES(2881,2927,252); INSERT INTO "Wine_Vineyard" VALUES(2882,2928,1044); INSERT INTO "Wine_Vineyard" VALUES(2883,2929,1242); INSERT INTO "Wine_Vineyard" VALUES(2884,2930,186); INSERT INTO "Wine_Vineyard" VALUES(2885,2931,619); INSERT INTO "Wine_Vineyard" VALUES(2886,2932,524); INSERT INTO "Wine_Vineyard" VALUES(2887,2933,143); INSERT INTO "Wine_Vineyard" VALUES(2888,2934,1243); INSERT INTO "Wine_Vineyard" VALUES(2889,2935,496); INSERT INTO "Wine_Vineyard" VALUES(2890,2936,162); INSERT INTO "Wine_Vineyard" VALUES(2891,2937,1244); INSERT INTO "Wine_Vineyard" VALUES(2892,2938,1245); INSERT INTO "Wine_Vineyard" VALUES(2893,2939,328); INSERT INTO "Wine_Vineyard" VALUES(2894,2940,1246); INSERT INTO "Wine_Vineyard" VALUES(2895,2941,635); INSERT INTO "Wine_Vineyard" VALUES(2896,2942,1247); INSERT INTO "Wine_Vineyard" VALUES(2897,2943,280); INSERT INTO "Wine_Vineyard" VALUES(2898,2944,1020); INSERT INTO "Wine_Vineyard" VALUES(2899,2945,1248); INSERT INTO "Wine_Vineyard" VALUES(2900,2946,1163); INSERT INTO "Wine_Vineyard" VALUES(2901,2947,84); INSERT INTO "Wine_Vineyard" VALUES(2902,2948,1249); INSERT INTO "Wine_Vineyard" VALUES(2903,2949,961); INSERT INTO "Wine_Vineyard" VALUES(2904,2950,1151); INSERT INTO "Wine_Vineyard" VALUES(2905,2951,1246); INSERT INTO "Wine_Vineyard" VALUES(2906,2952,115); INSERT INTO "Wine_Vineyard" VALUES(2907,2953,1250); INSERT INTO "Wine_Vineyard" VALUES(2908,2954,441); INSERT INTO "Wine_Vineyard" VALUES(2909,2955,611); INSERT INTO "Wine_Vineyard" VALUES(2910,2956,37); INSERT INTO "Wine_Vineyard" VALUES(2911,2957,1251); INSERT INTO "Wine_Vineyard" VALUES(2912,2958,1252); INSERT INTO "Wine_Vineyard" VALUES(2913,2959,935); INSERT INTO "Wine_Vineyard" VALUES(2914,2960,552); INSERT INTO "Wine_Vineyard" VALUES(2915,2961,1050); INSERT INTO "Wine_Vineyard" VALUES(2916,2962,1253); INSERT INTO "Wine_Vineyard" VALUES(2917,2963,36); INSERT INTO "Wine_Vineyard" VALUES(2918,2964,1254); INSERT INTO "Wine_Vineyard" VALUES(2919,2965,79); INSERT INTO "Wine_Vineyard" VALUES(2920,2966,31); INSERT INTO "Wine_Vineyard" VALUES(2921,2967,1201); INSERT INTO "Wine_Vineyard" VALUES(2922,2968,552); INSERT INTO "Wine_Vineyard" VALUES(2923,2969,699); INSERT INTO "Wine_Vineyard" VALUES(2924,2970,1067); INSERT INTO "Wine_Vineyard" VALUES(2925,2971,1255); INSERT INTO "Wine_Vineyard" VALUES(2926,2972,1200); INSERT INTO "Wine_Vineyard" VALUES(2927,2973,1030); INSERT INTO "Wine_Vineyard" VALUES(2928,2974,470); INSERT INTO "Wine_Vineyard" VALUES(2929,2975,1256); INSERT INTO "Wine_Vineyard" VALUES(2930,2976,309); INSERT INTO "Wine_Vineyard" VALUES(2931,2977,1257); INSERT INTO "Wine_Vineyard" VALUES(2932,2978,199); INSERT INTO "Wine_Vineyard" VALUES(2933,2979,659); INSERT INTO "Wine_Vineyard" VALUES(2934,2980,1258); INSERT INTO "Wine_Vineyard" VALUES(2935,2981,293); INSERT INTO "Wine_Vineyard" VALUES(2936,2982,60); INSERT INTO "Wine_Vineyard" VALUES(2937,2983,932); INSERT INTO "Wine_Vineyard" VALUES(2938,2984,935); INSERT INTO "Wine_Vineyard" VALUES(2939,2985,1233); INSERT INTO "Wine_Vineyard" VALUES(2940,2986,1259); INSERT INTO "Wine_Vineyard" VALUES(2941,2987,357); INSERT INTO "Wine_Vineyard" VALUES(2942,2988,204); INSERT INTO "Wine_Vineyard" VALUES(2943,2989,1237); INSERT INTO "Wine_Vineyard" VALUES(2944,2990,1260); INSERT INTO "Wine_Vineyard" VALUES(2945,2991,1213); INSERT INTO "Wine_Vineyard" VALUES(2946,2992,309); INSERT INTO "Wine_Vineyard" VALUES(2947,2993,1061); INSERT INTO "Wine_Vineyard" VALUES(2948,2994,708); INSERT INTO "Wine_Vineyard" VALUES(2949,2995,1261); INSERT INTO "Wine_Vineyard" VALUES(2950,2996,1098); INSERT INTO "Wine_Vineyard" VALUES(2951,2997,1142); INSERT INTO "Wine_Vineyard" VALUES(2952,2998,178); INSERT INTO "Wine_Vineyard" VALUES(2953,2999,72); INSERT INTO "Wine_Vineyard" VALUES(2954,3000,1261); INSERT INTO "Wine_Vineyard" VALUES(2955,3001,178); INSERT INTO "Wine_Vineyard" VALUES(2956,3002,936); INSERT INTO "Wine_Vineyard" VALUES(2957,3003,1262); INSERT INTO "Wine_Vineyard" VALUES(2958,3004,1160); INSERT INTO "Wine_Vineyard" VALUES(2959,3005,1032); INSERT INTO "Wine_Vineyard" VALUES(2960,3006,1263); INSERT INTO "Wine_Vineyard" VALUES(2961,3007,631); INSERT INTO "Wine_Vineyard" VALUES(2962,3008,1012); INSERT INTO "Wine_Vineyard" VALUES(2963,3009,1048); INSERT INTO "Wine_Vineyard" VALUES(2964,3010,77); INSERT INTO "Wine_Vineyard" VALUES(2965,3011,1264); INSERT INTO "Wine_Vineyard" VALUES(2966,3012,1155); INSERT INTO "Wine_Vineyard" VALUES(2967,3013,1009); INSERT INTO "Wine_Vineyard" VALUES(2968,3014,178); INSERT INTO "Wine_Vineyard" VALUES(2969,3015,379); INSERT INTO "Wine_Vineyard" VALUES(2970,3016,397); INSERT INTO "Wine_Vineyard" VALUES(2971,3017,1265); INSERT INTO "Wine_Vineyard" VALUES(2972,3018,6); INSERT INTO "Wine_Vineyard" VALUES(2973,3019,1263); INSERT INTO "Wine_Vineyard" VALUES(2974,3020,196); INSERT INTO "Wine_Vineyard" VALUES(2975,3021,178); INSERT INTO "Wine_Vineyard" VALUES(2976,3022,549); INSERT INTO "Wine_Vineyard" VALUES(2977,3023,444); INSERT INTO "Wine_Vineyard" VALUES(2978,3024,461); INSERT INTO "Wine_Vineyard" VALUES(2979,3025,116); INSERT INTO "Wine_Vineyard" VALUES(2980,3026,1121); INSERT INTO "Wine_Vineyard" VALUES(2981,3027,1150); INSERT INTO "Wine_Vineyard" VALUES(2982,3028,1266); INSERT INTO "Wine_Vineyard" VALUES(2983,3029,493); INSERT INTO "Wine_Vineyard" VALUES(2984,3030,1118); INSERT INTO "Wine_Vineyard" VALUES(2985,3031,549); INSERT INTO "Wine_Vineyard" VALUES(2986,3032,1267); INSERT INTO "Wine_Vineyard" VALUES(2987,3033,884); INSERT INTO "Wine_Vineyard" VALUES(2988,3034,1105); INSERT INTO "Wine_Vineyard" VALUES(2989,3035,1268); INSERT INTO "Wine_Vineyard" VALUES(2990,3036,1269); INSERT INTO "Wine_Vineyard" VALUES(2991,3037,1270); INSERT INTO "Wine_Vineyard" VALUES(2992,3038,977); INSERT INTO "Wine_Vineyard" VALUES(2993,3039,1271); INSERT INTO "Wine_Vineyard" VALUES(2994,3040,1272); INSERT INTO "Wine_Vineyard" VALUES(2995,3041,1273); INSERT INTO "Wine_Vineyard" VALUES(2996,3042,562); INSERT INTO "Wine_Vineyard" VALUES(2997,3043,1274); INSERT INTO "Wine_Vineyard" VALUES(2998,3044,1275); INSERT INTO "Wine_Vineyard" VALUES(2999,3045,842); INSERT INTO "Wine_Vineyard" VALUES(3000,3046,222); INSERT INTO "Wine_Vineyard" VALUES(3001,3047,1086); INSERT INTO "Wine_Vineyard" VALUES(3002,3048,1090); INSERT INTO "Wine_Vineyard" VALUES(3003,3049,178); INSERT INTO "Wine_Vineyard" VALUES(3004,3050,1113); INSERT INTO "Wine_Vineyard" VALUES(3005,3051,661); INSERT INTO "Wine_Vineyard" VALUES(3006,3052,502); INSERT INTO "Wine_Vineyard" VALUES(3007,3053,1276); INSERT INTO "Wine_Vineyard" VALUES(3008,3054,117); INSERT INTO "Wine_Vineyard" VALUES(3009,3055,351); INSERT INTO "Wine_Vineyard" VALUES(3010,3056,316); INSERT INTO "Wine_Vineyard" VALUES(3011,3057,1167); INSERT INTO "Wine_Vineyard" VALUES(3012,3058,1142); INSERT INTO "Wine_Vineyard" VALUES(3013,3059,780); INSERT INTO "Wine_Vineyard" VALUES(3014,3060,971); INSERT INTO "Wine_Vineyard" VALUES(3015,3061,1277); INSERT INTO "Wine_Vineyard" VALUES(3016,3062,1278); INSERT INTO "Wine_Vineyard" VALUES(3017,3063,1279); INSERT INTO "Wine_Vineyard" VALUES(3018,3064,473); INSERT INTO "Wine_Vineyard" VALUES(3019,3065,402); INSERT INTO "Wine_Vineyard" VALUES(3020,3066,151); INSERT INTO "Wine_Vineyard" VALUES(3021,3067,1280); INSERT INTO "Wine_Vineyard" VALUES(3022,3068,1281); INSERT INTO "Wine_Vineyard" VALUES(3023,3069,682); INSERT INTO "Wine_Vineyard" VALUES(3024,3070,179); INSERT INTO "Wine_Vineyard" VALUES(3025,3071,1282); INSERT INTO "Wine_Vineyard" VALUES(3026,3072,36); INSERT INTO "Wine_Vineyard" VALUES(3027,3073,379); INSERT INTO "Wine_Vineyard" VALUES(3028,3074,36); INSERT INTO "Wine_Vineyard" VALUES(3029,3075,1113); INSERT INTO "Wine_Vineyard" VALUES(3030,3076,999); INSERT INTO "Wine_Vineyard" VALUES(3031,3077,84); INSERT INTO "Wine_Vineyard" VALUES(3032,3078,1283); INSERT INTO "Wine_Vineyard" VALUES(3033,3079,1284); INSERT INTO "Wine_Vineyard" VALUES(3034,3080,300); INSERT INTO "Wine_Vineyard" VALUES(3035,3081,743); INSERT INTO "Wine_Vineyard" VALUES(3036,3082,1285); INSERT INTO "Wine_Vineyard" VALUES(3037,3083,1286); INSERT INTO "Wine_Vineyard" VALUES(3038,3084,1287); INSERT INTO "Wine_Vineyard" VALUES(3039,3085,433); INSERT INTO "Wine_Vineyard" VALUES(3040,3086,1046); INSERT INTO "Wine_Vineyard" VALUES(3041,3087,944); INSERT INTO "Wine_Vineyard" VALUES(3042,3088,300); INSERT INTO "Wine_Vineyard" VALUES(3043,3089,299); INSERT INTO "Wine_Vineyard" VALUES(3044,3090,608); INSERT INTO "Wine_Vineyard" VALUES(3045,3091,1288); INSERT INTO "Wine_Vineyard" VALUES(3046,3092,1246); INSERT INTO "Wine_Vineyard" VALUES(3047,3093,1049); INSERT INTO "Wine_Vineyard" VALUES(3048,3094,1289); INSERT INTO "Wine_Vineyard" VALUES(3049,3095,1216); INSERT INTO "Wine_Vineyard" VALUES(3050,3097,217); INSERT INTO "Wine_Vineyard" VALUES(3051,3098,1290); INSERT INTO "Wine_Vineyard" VALUES(3052,3099,1150); INSERT INTO "Wine_Vineyard" VALUES(3053,3100,549); INSERT INTO "Wine_Vineyard" VALUES(3054,3101,1095); INSERT INTO "Wine_Vineyard" VALUES(3055,3102,1148); INSERT INTO "Wine_Vineyard" VALUES(3056,3103,619); INSERT INTO "Wine_Vineyard" VALUES(3057,3104,137); INSERT INTO "Wine_Vineyard" VALUES(3058,3105,110); INSERT INTO "Wine_Vineyard" VALUES(3059,3106,1098); INSERT INTO "Wine_Vineyard" VALUES(3060,3107,1246); INSERT INTO "Wine_Vineyard" VALUES(3061,3108,754); INSERT INTO "Wine_Vineyard" VALUES(3062,3109,534); INSERT INTO "Wine_Vineyard" VALUES(3063,3110,1291); INSERT INTO "Wine_Vineyard" VALUES(3064,3111,1292); INSERT INTO "Wine_Vineyard" VALUES(3065,3112,382); INSERT INTO "Wine_Vineyard" VALUES(3066,3114,47); INSERT INTO "Wine_Vineyard" VALUES(3067,3115,623); INSERT INTO "Wine_Vineyard" VALUES(3068,3116,1010); INSERT INTO "Wine_Vineyard" VALUES(3069,3117,1122); INSERT INTO "Wine_Vineyard" VALUES(3070,3118,280); INSERT INTO "Wine_Vineyard" VALUES(3071,3119,405); INSERT INTO "Wine_Vineyard" VALUES(3072,3121,1246); INSERT INTO "Wine_Vineyard" VALUES(3073,3122,1177); INSERT INTO "Wine_Vineyard" VALUES(3074,3124,75); INSERT INTO "Wine_Vineyard" VALUES(3075,3125,1103); INSERT INTO "Wine_Vineyard" VALUES(3076,3126,1020); INSERT INTO "Wine_Vineyard" VALUES(3077,3128,213); INSERT INTO "Wine_Vineyard" VALUES(3078,3129,25); INSERT INTO "Wine_Vineyard" VALUES(3079,3130,199); INSERT INTO "Wine_Vineyard" VALUES(3080,3131,497); INSERT INTO "Wine_Vineyard" VALUES(3081,3132,1293); INSERT INTO "Wine_Vineyard" VALUES(3082,3133,151); INSERT INTO "Wine_Vineyard" VALUES(3083,3134,162); INSERT INTO "Wine_Vineyard" VALUES(3084,3135,805); INSERT INTO "Wine_Vineyard" VALUES(3085,3136,1294); INSERT INTO "Wine_Vineyard" VALUES(3086,3137,57); INSERT INTO "Wine_Vineyard" VALUES(3087,3138,1295); INSERT INTO "Wine_Vineyard" VALUES(3088,3140,625); INSERT INTO "Wine_Vineyard" VALUES(3089,3141,1060); INSERT INTO "Wine_Vineyard" VALUES(3090,3142,252); INSERT INTO "Wine_Vineyard" VALUES(3091,3143,369); INSERT INTO "Wine_Vineyard" VALUES(3092,3144,1296); INSERT INTO "Wine_Vineyard" VALUES(3093,3145,329); INSERT INTO "Wine_Vineyard" VALUES(3094,3146,1184); INSERT INTO "Wine_Vineyard" VALUES(3095,3147,1297); INSERT INTO "Wine_Vineyard" VALUES(3096,3148,576); INSERT INTO "Wine_Vineyard" VALUES(3097,3150,1298); INSERT INTO "Wine_Vineyard" VALUES(3098,3151,1099); INSERT INTO "Wine_Vineyard" VALUES(3099,3152,1247); INSERT INTO "Wine_Vineyard" VALUES(3100,3153,234); INSERT INTO "Wine_Vineyard" VALUES(3101,3154,1299); INSERT INTO "Wine_Vineyard" VALUES(3102,3155,1300); INSERT INTO "Wine_Vineyard" VALUES(3103,3156,1152); INSERT INTO "Wine_Vineyard" VALUES(3104,3157,1301); INSERT INTO "Wine_Vineyard" VALUES(3105,3158,1302); INSERT INTO "Wine_Vineyard" VALUES(3106,3159,743); INSERT INTO "Wine_Vineyard" VALUES(3107,3160,1033); INSERT INTO "Wine_Vineyard" VALUES(3108,3161,569); INSERT INTO "Wine_Vineyard" VALUES(3109,3162,1289); INSERT INTO "Wine_Vineyard" VALUES(3110,3165,151); INSERT INTO "Wine_Vineyard" VALUES(3111,3166,273); INSERT INTO "Wine_Vineyard" VALUES(3112,3167,974); INSERT INTO "Wine_Vineyard" VALUES(3113,3168,534); INSERT INTO "Wine_Vineyard" VALUES(3114,3169,36); INSERT INTO "Wine_Vineyard" VALUES(3115,3170,1128); INSERT INTO "Wine_Vineyard" VALUES(3116,3171,1294); INSERT INTO "Wine_Vineyard" VALUES(3117,3172,1246); INSERT INTO "Wine_Vineyard" VALUES(3118,3173,556); INSERT INTO "Wine_Vineyard" VALUES(3119,3174,1303); INSERT INTO "Wine_Vineyard" VALUES(3120,3175,250); INSERT INTO "Wine_Vineyard" VALUES(3121,3176,158); INSERT INTO "Wine_Vineyard" VALUES(3122,3178,531); INSERT INTO "Wine_Vineyard" VALUES(3123,3179,567); INSERT INTO "Wine_Vineyard" VALUES(3124,3180,213); INSERT INTO "Wine_Vineyard" VALUES(3125,3181,1304); INSERT INTO "Wine_Vineyard" VALUES(3126,3182,1305); INSERT INTO "Wine_Vineyard" VALUES(3127,3183,92); INSERT INTO "Wine_Vineyard" VALUES(3128,3184,271); INSERT INTO "Wine_Vineyard" VALUES(3129,3185,1223); INSERT INTO "Wine_Vineyard" VALUES(3130,3186,489); INSERT INTO "Wine_Vineyard" VALUES(3131,3187,534); INSERT INTO "Wine_Vineyard" VALUES(3132,3188,105); INSERT INTO "Wine_Vineyard" VALUES(3133,3189,1204); INSERT INTO "Wine_Vineyard" VALUES(3134,3190,80); INSERT INTO "Wine_Vineyard" VALUES(3135,3191,322); INSERT INTO "Wine_Vineyard" VALUES(3136,3192,758); INSERT INTO "Wine_Vineyard" VALUES(3137,3193,611); INSERT INTO "Wine_Vineyard" VALUES(3138,3194,216); INSERT INTO "Wine_Vineyard" VALUES(3139,3195,1294); INSERT INTO "Wine_Vineyard" VALUES(3140,3196,1074); INSERT INTO "Wine_Vineyard" VALUES(3141,3197,300); INSERT INTO "Wine_Vineyard" VALUES(3142,3199,659); INSERT INTO "Wine_Vineyard" VALUES(3143,3200,375); INSERT INTO "Wine_Vineyard" VALUES(3144,3201,1283); INSERT INTO "Wine_Vineyard" VALUES(3145,3202,478); INSERT INTO "Wine_Vineyard" VALUES(3146,3203,502); INSERT INTO "Wine_Vineyard" VALUES(3147,3204,777); INSERT INTO "Wine_Vineyard" VALUES(3148,3205,1227); INSERT INTO "Wine_Vineyard" VALUES(3149,3206,113); INSERT INTO "Wine_Vineyard" VALUES(3150,3207,382); INSERT INTO "Wine_Vineyard" VALUES(3151,3208,1263); INSERT INTO "Wine_Vineyard" VALUES(3152,3209,1286); INSERT INTO "Wine_Vineyard" VALUES(3153,3210,359); INSERT INTO "Wine_Vineyard" VALUES(3154,3211,576); INSERT INTO "Wine_Vineyard" VALUES(3155,3212,201); INSERT INTO "Wine_Vineyard" VALUES(3156,3213,409); INSERT INTO "Wine_Vineyard" VALUES(3157,3214,1020); INSERT INTO "Wine_Vineyard" VALUES(3158,3215,1084); INSERT INTO "Wine_Vineyard" VALUES(3159,3216,23); INSERT INTO "Wine_Vineyard" VALUES(3160,3217,708); INSERT INTO "Wine_Vineyard" VALUES(3161,3218,1286); INSERT INTO "Wine_Vineyard" VALUES(3162,3219,1107); INSERT INTO "Wine_Vineyard" VALUES(3163,3220,495); INSERT INTO "Wine_Vineyard" VALUES(3164,3221,664); INSERT INTO "Wine_Vineyard" VALUES(3165,3222,1062); INSERT INTO "Wine_Vineyard" VALUES(3166,3223,1164); INSERT INTO "Wine_Vineyard" VALUES(3167,3224,609); INSERT INTO "Wine_Vineyard" VALUES(3168,3225,999); DELETE FROM sqlite_sequence; INSERT INTO "sqlite_sequence" VALUES('Descriptor',10); INSERT INTO "sqlite_sequence" VALUES('Wine',3225); INSERT INTO "sqlite_sequence" VALUES('Wine_Descriptor',6450); INSERT INTO "sqlite_sequence" VALUES('Vineyard',1305); INSERT INTO "sqlite_sequence" VALUES('Wine_Vineyard',3168); INSERT INTO "sqlite_sequence" VALUES('Variety',42); INSERT INTO "sqlite_sequence" VALUES('Wine_Variety',3168); COMMIT;
--修改日期:2012-12-18 --修改人:卢燕南 --修改内容:手机短信相关菜单 --修改原因:BFS-JD1-0006 --新增菜单:首页 >> 基础平台 >> 手机短信平台基础数据维护>> 短信提醒消息设置 insert into bt_sys_res (RES_CODE, RES_NAME, SYS_CODE, FATHER_CODE, RES_URL, FUNC_FLAG, RES_TYPE, LINK_TARGET, STATUS, RES_ORDER, RMK, REVERSE1, REVERSE2, REVERSE3, REVERSE4, REVERSE5, REVERSE6, REVERSE7, REVERSE8, REVERSE9, REVERSE10, RES_LEVEL, RES_ROLE) values ((select max(RES_CODE) + 1 from bt_sys_res), '短信提醒消息设置', 'adm', (select RES_CODE from bt_sys_res where sys_code = 'adm' and RES_NAME = '手机短信平台基础数据维护'), '/admin/mesAction.do?method=queryMesRemindRules', '0', '1', '0', '0', 10, '短信提醒消息设置', '', '', '', '', '', null, null, null, null, null, 2, ''); --新增菜单:首页 >> 基础平台 >> 手机短信平台基础数据维护>> 短信发送规则设置 insert into bt_sys_res (RES_CODE, RES_NAME, SYS_CODE, FATHER_CODE, RES_URL, FUNC_FLAG, RES_TYPE, LINK_TARGET, STATUS, RES_ORDER, RMK, REVERSE1, REVERSE2, REVERSE3, REVERSE4, REVERSE5, REVERSE6, REVERSE7, REVERSE8, REVERSE9, REVERSE10, RES_LEVEL, RES_ROLE) values ((select max(RES_CODE) + 1 from bt_sys_res), '短信发送规则设置', 'adm', (select RES_CODE from bt_sys_res where sys_code = 'adm' and RES_NAME = '手机短信平台基础数据维护'), '/admin/mesAction.do?method=queryMesSendRules', '0', '1', '0', '0', 10, '短信发送规则设置', '', '', '', '', '', null, null, null, null, null, 2, ''); --新增菜单:首页 >> 短信平台 >> 手机短信发送消息跟踪 insert into bt_sys_res (RES_CODE, RES_NAME, SYS_CODE, FATHER_CODE, RES_URL, FUNC_FLAG, RES_TYPE, LINK_TARGET, STATUS, RES_ORDER, RMK, REVERSE1, REVERSE2, REVERSE3, REVERSE4, REVERSE5, REVERSE6, REVERSE7, REVERSE8, REVERSE9, REVERSE10, RES_LEVEL, RES_ROLE) values ((select max(RES_CODE) + 1 from bt_sys_res), '手机短信发送消息跟踪', 'sms', (select RES_CODE from bt_sys_res where sys_code = 'sms' and RES_NAME = '短信平台'), '/sms/mesTrackAction.do?method=listMesTrack', '', '0', '', '0', 5, '手机短信发送消息跟踪', '', '', '', '', '', null, null, null, null, null, 2, ''); --修改日期:2012-12-18 --修改人:卢燕南 --修改内容:添加系统规则 --修改原因:BFS-JD1-0006 --付款申请提醒 insert into SYS_SUBSCRIBE_RULES (ID, SYS_CODE, NOTICE_TYPE, NOTICE_NAME, PRE_DAYS, TITLE, CONTENT, TRIGGER_NAME, TRIGGER_CNDT, SHOW_TYPE, VALIDE_SIGN, CREATE_TIME, MODIFY_TIME) values (20, 'sms', '20', '付款申请提醒', 10, '付款申请提醒', '您有一笔付款申请,付款帐号${payerAccount}收款帐号${payeeAccount}付款${money}元!', '', '', '2', '1', to_date('05-12-2012', 'dd-mm-yyyy'), null); --付款成功提醒 insert into SYS_SUBSCRIBE_RULES (ID, SYS_CODE, NOTICE_TYPE, NOTICE_NAME, PRE_DAYS, TITLE, CONTENT, TRIGGER_NAME, TRIGGER_CNDT, SHOW_TYPE, VALIDE_SIGN, CREATE_TIME, MODIFY_TIME) values (21, 'sms', '21', '付款成功提醒', 10, '付款成功提醒', '您有一笔银行交易成功!交易类型:${payType} 付款帐号:${payerAccount} 收款帐号:${payeeAccount} 金额:${money}元!', '', '', '2', '1', to_date('05-12-2012', 'dd-mm-yyyy'), null); --银行账户余额 insert into SYS_SUBSCRIBE_RULES (ID, SYS_CODE, NOTICE_TYPE, NOTICE_NAME, PRE_DAYS, TITLE, CONTENT, TRIGGER_NAME, TRIGGER_CNDT, SHOW_TYPE, VALIDE_SIGN, CREATE_TIME, MODIFY_TIME) values (22, 'sms', '22', '银行账户余额', 10, '银行账户余额', '账户${account},开户行:${bankType},当前余额:10000.00元!', '', '', '2', '1', to_date('05-12-2012', 'dd-mm-yyyy'), null); commit;
select products.name,categories.name from products join categories on products.id_categories=categories.id where products.amount>100 and products.id_categories in(1,2,3,6,9)
-- phpMyAdmin SQL Dump -- version 4.6.5.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Mar 22, 2017 at 08:41 PM -- Server version: 10.1.21-MariaDB -- PHP Version: 5.6.30 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*!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 utf8mb4 */; -- -- Database: `rmbsdatabase` -- -- -------------------------------------------------------- -- -- Table structure for table `admintable` -- CREATE TABLE `admintable` ( `username` varchar(50) NOT NULL, `password` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `admintable` -- INSERT INTO `admintable` (`username`, `password`) VALUES ('admin', 'admin'); -- -------------------------------------------------------- -- -- Table structure for table `booking` -- CREATE TABLE `booking` ( `bookingid` int(11) NOT NULL, `bookingname` varchar(50) NOT NULL, `bookingeamil` varchar(100) NOT NULL, `bookingtime` varchar(50) NOT NULL, `bookingtableno` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `booking` -- INSERT INTO `booking` (`bookingid`, `bookingname`, `bookingeamil`, `bookingtime`, `bookingtableno`) VALUES (33, 'Amit hasan', 'amithasan.ewubd@gmail.com', 'breakfast', 1), (34, 'sonnet', 'sonnet1993@gmail.com', 'lunch', 2), (35, 'raj', 'raj@emaill.com', 'dinner', 3), (36, 'ksfsllfs', 'sonnet1993@gmail.com', 'lunch', 1), (37, 'firuz', 'firuz@gmail.com', 'dinner', 1), (38, 'sakib', 'sonnet1993@gmail.com', 'dinner', 4); -- -------------------------------------------------------- -- -- Table structure for table `menu` -- CREATE TABLE `menu` ( `menuid` int(11) NOT NULL, `menuname` varchar(50) NOT NULL, `menutime` varchar(50) NOT NULL, `menuprice` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `menu` -- INSERT INTO `menu` (`menuid`, `menuname`, `menutime`, `menuprice`) VALUES (1, 'snack', 'breakfast', 10), (2, 'cheese burger', 'lunch', 30), (3, 'Fried Rice', 'lunch', 50), (4, 'burger', 'lunch', 88); -- -------------------------------------------------------- -- -- Table structure for table `stuff` -- CREATE TABLE `stuff` ( `id` int(11) NOT NULL, `name` varchar(50) NOT NULL, `designation` varchar(50) NOT NULL, `salary` int(11) NOT NULL, `gender` varchar(50) NOT NULL, `age` int(11) NOT NULL, `address` varchar(500) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `stuff` -- INSERT INTO `stuff` (`id`, `name`, `designation`, `salary`, `gender`, `age`, `address`) VALUES (1, 'amit', 'stuff', 1000, 'male', 23, 'dhaka'), (2, 'firuz', 'stuff', 2000, 'male', 24, 'rampura'); -- -- Indexes for dumped tables -- -- -- Indexes for table `admintable` -- ALTER TABLE `admintable` ADD PRIMARY KEY (`username`); -- -- Indexes for table `booking` -- ALTER TABLE `booking` ADD PRIMARY KEY (`bookingid`); -- -- Indexes for table `menu` -- ALTER TABLE `menu` ADD PRIMARY KEY (`menuid`); -- -- Indexes for table `stuff` -- ALTER TABLE `stuff` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `booking` -- ALTER TABLE `booking` MODIFY `bookingid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=39; -- -- AUTO_INCREMENT for table `menu` -- ALTER TABLE `menu` MODIFY `menuid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `stuff` -- ALTER TABLE `stuff` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; /*!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 */;
-- -------------------------------------------------------------------------------- -- Routine DDL -- Note: comments before and after the routine body will not be stored by the server -- -------------------------------------------------------------------------------- DELIMITER $$ CREATE PROCEDURE `sp_cursos_letras` (in fecha_n int) BEGIN declare id int; declare des varchar(45); declare lim int; declare letras int; declare letra varchar(45); declare lt varchar(45); DECLARE i INT DEFAULT 0; declare lts varchar(45); declare id_c int; declare fecha int; declare id_profesor int; declare id_especialidad int; DECLARE fin INTEGER DEFAULT 0; DECLARE cursos_cursor CURSOR FOR SELECT id_curso, descripcion_curso, limite_curso, cantidad_letras, 'letra_curso' = 'A' FROM curso WHERE vigencia = 1; -- Condición de salida DECLARE CONTINUE HANDLER FOR NOT FOUND SET fin=1; DROP TEMPORARY TABLE IF EXISTS cursos_temp; CREATE TEMPORARY TABLE IF NOT EXISTS cursos_temp (id_curso_anual int, nombre_curso_anual varchar(45), fecha_curso_anual varchar(45), id_curso int, descripcion_curso varchar(45), limite_curso int, letra_curso varchar(45), id_profesor int, id_especialidad int, estado int); set lts = 'ABCDEFGHYJKLMNOPQRSTUVXYZ'; set fecha = fecha_n; OPEN cursos_cursor; get_cursos: LOOP FETCH cursos_cursor INTO id, des, lim, letras,letra; IF fin = 1 THEN LEAVE get_cursos; END IF; set i = 1; WHILE i <= letras DO set lt = SUBSTRING(lts,i,1); set id_c = (select id_curso_anual from curso_anual where id_curso = id and letra_curso = lt and fecha_curso_anual = fecha); if id_c is null then set id_c = 0; set id_profesor = 0; set id_especialidad = 1; else set id_profesor = (select curso_anual.id_profesor from curso_anual where id_curso_anual = id_c); set id_especialidad = (select curso_anual.id_especialidad from curso_anual where id_curso_anual = id_c); end if; insert into cursos_temp values(id_c,concat(des,' ',lt),fecha,id,des,letras,lt,id_profesor,id_especialidad,1); set i = i+1; END WHILE; END LOOP get_cursos; CLOSE cursos_cursor; select * from cursos_temp; END
/* Navicat MySQL Data Transfer Source Server : localhost Source Server Version : 50524 Source Host : localhost:3306 Source Database : platform Target Server Type : MYSQL Target Server Version : 50524 File Encoding : 65001 Date: 2014-07-30 11:38:05 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for boyo_userplatformserver -- ---------------------------- DROP TABLE IF EXISTS `boyo_userplatformserver`; CREATE TABLE `boyo_userplatformserver` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userId` int(11) NOT NULL, `platformId` int(11) NOT NULL, `createTime` int(11) NOT NULL, `isSend` int(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `index_name` (`platformId`,`createTime`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=7633 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (0, 'MIN', 16, 'Syntax: MIN([DISTINCT] expr) Returns the minimum value of expr. MIN() may take a string argument; in such cases, it returns the minimum string value. The DISTINCT keyword can be used to find the minimum of the distinct values of expr, however, this produces the same result as omitting DISTINCT. MIN() returns NULL if there were no matching rows. URL: https://mariadb.com/kb/en/min/ ', 'MariaDB> SELECT student_name, MIN(test_score), MAX(test_score) -> FROM student -> GROUP BY student_name; ', 'https://mariadb.com/kb/en/min/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (1, 'JOIN', 27, 'MySQL supports the following JOIN syntaxes for the table_references part of SELECT statements and multiple-table DELETE and UPDATE statements: table_references: table_reference [, table_reference] ... table_reference: table_factor | join_table table_factor: tbl_name [[AS] alias] [index_hint_list] | table_subquery [AS] alias | ( table_references ) | { OJ table_reference LEFT OUTER JOIN table_reference ON conditional_expr } join_table: table_reference [INNER | CROSS] JOIN table_factor [join_condition] | table_reference STRAIGHT_JOIN table_factor | table_reference STRAIGHT_JOIN table_factor ON conditional_expr | table_reference {LEFT|RIGHT} [OUTER] JOIN table_reference join_condition | table_reference NATURAL [{LEFT|RIGHT} [OUTER]] JOIN table_factor join_condition: ON conditional_expr | USING (column_list) index_hint_list: index_hint [, index_hint] ... index_hint: USE {INDEX|KEY} [FOR {JOIN|ORDER BY|GROUP BY}] ([index_list]) | IGNORE {INDEX|KEY} [FOR {JOIN|ORDER BY|GROUP BY}] (index_list) | FORCE {INDEX|KEY} [FOR {JOIN|ORDER BY|GROUP BY}] (index_list) index_list: index_name [, index_name] ... A table reference is also known as a join expression. The syntax of table_factor is extended in comparison with the SQL Standard. The latter accepts only table_reference, not a list of them inside a pair of parentheses. This is a conservative extension if we consider each comma in a list of table_reference items as equivalent to an inner join. For example: SELECT * FROM t1 LEFT JOIN (t2, t3, t4) ON (t2.a=t1.a AND t3.b=t1.b AND t4.c=t1.c) is equivalent to: SELECT * FROM t1 LEFT JOIN (t2 CROSS JOIN t3 CROSS JOIN t4) ON (t2.a=t1.a AND t3.b=t1.b AND t4.c=t1.c) In MySQL, JOIN, CROSS JOIN, and INNER JOIN are syntactic equivalents (they can replace each other). In standard SQL, they are not equivalent. INNER JOIN is used with an ON clause, CROSS JOIN is used otherwise. In general, parentheses can be ignored in join expressions containing only inner join operations. Index hints can be specified to affect how the MySQL optimizer makes use of indexes. For more information, see https://mariadb.com/kb/en/how-to-force-query-plans/. URL: https://mariadb.com/kb/en/join-syntax/ ', 'SELECT left_tbl.* FROM left_tbl LEFT JOIN right_tbl ON left_tbl.id = right_tbl.id WHERE right_tbl.id IS NULL; ', 'https://mariadb.com/kb/en/join-syntax/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (2, 'HEX', 37, 'Syntax: HEX(str), HEX(N) For a string argument str, HEX() returns a hexadecimal string representation of str where each character in str is converted to two hexadecimal digits. The inverse of this operation is performed by the UNHEX() function. For a numeric argument N, HEX() returns a hexadecimal string representation of the value of N treated as a longlong (BIGINT) number. This is equivalent to CONV(N,10,16). The inverse of this operation is performed by CONV(HEX(N),16,10). URL: https://mariadb.com/kb/en/hex/ ', 'MariaDB> SELECT 0x616263, HEX(''abc''), UNHEX(HEX(''abc'')); -> ''abc'', 616263, ''abc'' MariaDB> SELECT HEX(255), CONV(HEX(255),16,10); -> ''FF'', 255 ', 'https://mariadb.com/kb/en/hex/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (3, 'REPLACE', 27, 'Syntax: REPLACE [LOW_PRIORITY | DELAYED] [INTO] tbl_name [(col_name,...)] {VALUES | VALUE} ({expr | DEFAULT},...),(...),... Or: REPLACE [LOW_PRIORITY | DELAYED] [INTO] tbl_name SET col_name={expr | DEFAULT}, ... Or: REPLACE [LOW_PRIORITY | DELAYED] [INTO] tbl_name [(col_name,...)] SELECT ... REPLACE works exactly like INSERT, except that if an old row in the table has the same value as a new row for a PRIMARY KEY or a UNIQUE index, the old row is deleted before the new row is inserted. See [HELP INSERT]. REPLACE is a MySQL extension to the SQL standard. It either inserts, or deletes and inserts. For another MySQL extension to standard SQL---that either inserts or updates---see https://mariadb.com/kb/en/insert-on-duplicate-key-update/. Note that unless the table has a PRIMARY KEY or UNIQUE index, using a REPLACE statement makes no sense. It becomes equivalent to INSERT, because there is no index to be used to determine whether a new row duplicates another. Values for all columns are taken from the values specified in the REPLACE statement. Any missing columns are set to their default values, just as happens for INSERT. You cannot refer to values from the current row and use them in the new row. If you use an assignment such as SET col_name = col_name + 1, the reference to the column name on the right hand side is treated as DEFAULT(col_name), so the assignment is equivalent to SET col_name = DEFAULT(col_name) + 1. To use REPLACE, you must have both the INSERT and DELETE privileges for the table. URL: https://mariadb.com/kb/en/replace/ ', '', 'https://mariadb.com/kb/en/replace/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (4, 'CONTAINS', 30, 'Contains(g1,g2) Returns 1 or 0 to indicate whether g1 completely contains g2. This tests the opposite relationship as Within(). URL: https://mariadb.com/kb/en/contains/ ', '', 'https://mariadb.com/kb/en/contains/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (5, 'SRID', 36, 'SRID(g) Returns an integer indicating the Spatial Reference System ID for the geometry value g. In MySQL, the SRID value is just an integer associated with the geometry value. All calculations are done assuming Euclidean (planar) geometry. URL: https://mariadb.com/kb/en/srid/ ', 'MariaDB> SELECT SRID(GeomFromText(''LineString(1 1,2 2)'',101)); +-----------------------------------------------+ | SRID(GeomFromText(''LineString(1 1,2 2)'',101)) | +-----------------------------------------------+ | 101 | +-----------------------------------------------+ ', 'https://mariadb.com/kb/en/srid/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (6, 'CURRENT_TIMESTAMP', 31, 'Syntax: CURRENT_TIMESTAMP, CURRENT_TIMESTAMP() CURRENT_TIMESTAMP and CURRENT_TIMESTAMP() are synonyms for NOW(). URL: https://mariadb.com/kb/en/current_timestamp/ ', '', 'https://mariadb.com/kb/en/current_timestamp/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (7, 'SHOW CONTRIBUTORS', 26, 'Syntax: SHOW CONTRIBUTORS The SHOW CONTRIBUTORS statement displays information about the people who contribute to MySQL source or to causes that we support. For each contributor, it displays Name, Location, and Comment values. URL: https://mariadb.com/kb/en/show-contributors/ ', '', 'https://mariadb.com/kb/en/show-contributors/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (8, 'VARIANCE', 16, 'Syntax: VARIANCE(expr) Returns the population standard variance of expr. This is an extension to standard SQL. The standard SQL function VAR_POP() can be used instead. VARIANCE() returns NULL if there were no matching rows. URL: https://mariadb.com/kb/en/variance/ ', '', 'https://mariadb.com/kb/en/variance/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (9, 'DROP SERVER', 39, 'Syntax: DROP SERVER [ IF EXISTS ] server_name Drops the server definition for the server named server_name. The corresponding row within the mysql.servers table will be deleted. This statement requires the SUPER privilege. Dropping a server for a table does not affect any FEDERATED tables that used this connection information when they were created. See [HELP CREATE SERVER]. URL: https://mariadb.com/kb/en/drop-server/ ', '', 'https://mariadb.com/kb/en/drop-server/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (10, 'SHOW AUTHORS', 26, 'Syntax: SHOW AUTHORS The SHOW AUTHORS statement displays information about the people who work on MySQL. For each author, it displays Name, Location, and Comment values. URL: https://mariadb.com/kb/en/show-authors/ ', '', 'https://mariadb.com/kb/en/show-authors/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (11, 'VAR_SAMP', 16, 'Syntax: VAR_SAMP(expr) Returns the sample variance of expr. That is, the denominator is the number of rows minus one. VAR_SAMP() returns NULL if there were no matching rows. URL: https://mariadb.com/kb/en/var_samp/ ', '', 'https://mariadb.com/kb/en/var_samp/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (12, 'CONCAT', 37, 'Syntax: CONCAT(str1,str2,...) Returns the string that results from concatenating the arguments. May have one or more arguments. If all arguments are nonbinary strings, the result is a nonbinary string. If the arguments include any binary strings, the result is a binary string. A numeric argument is converted to its equivalent string form. This is a nonbinary string as of MySQL 5.5.3. Before 5.5.3, it is a binary string; to to avoid that and produce a nonbinary string, you can use an explicit type cast, as in this example: SELECT CONCAT(CAST(int_col AS CHAR), char_col); CONCAT() returns NULL if any argument is NULL. URL: https://mariadb.com/kb/en/concat/ ', 'MariaDB> SELECT CONCAT(''My'', ''S'', ''QL''); -> ''MySQL'' MariaDB> SELECT CONCAT(''My'', NULL, ''QL''); -> NULL MariaDB> SELECT CONCAT(14.3); -> ''14.3'' ', 'https://mariadb.com/kb/en/concat/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (13, 'GEOMETRY HIERARCHY', 34, 'Geometry is the base class. It is an abstract class. The instantiable subclasses of Geometry are restricted to zero-, one-, and two-dimensional geometric objects that exist in two-dimensional coordinate space. All instantiable geometry classes are defined so that valid instances of a geometry class are topologically closed (that is, all defined geometries include their boundary). The base Geometry class has subclasses for Point, Curve, Surface, and GeometryCollection: o Point represents zero-dimensional objects. o Curve represents one-dimensional objects, and has subclass LineString, with sub-subclasses Line and LinearRing. o Surface is designed for two-dimensional objects and has subclass Polygon. o GeometryCollection has specialized zero-, one-, and two-dimensional collection classes named MultiPoint, MultiLineString, and MultiPolygon for modeling geometries corresponding to collections of Points, LineStrings, and Polygons, respectively. MultiCurve and MultiSurface are introduced as abstract superclasses that generalize the collection interfaces to handle Curves and Surfaces. Geometry, Curve, Surface, MultiCurve, and MultiSurface are defined as noninstantiable classes. They define a common set of methods for their subclasses and are included for extensibility. Point, LineString, Polygon, GeometryCollection, MultiPoint, MultiLineString, and MultiPolygon are instantiable classes. URL: https://mariadb.com/kb/en/geometry-hierarchy/ ', '', 'https://mariadb.com/kb/en/geometry-hierarchy/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (14, 'CHAR FUNCTION', 37, 'Syntax: CHAR(N,... [USING charset_name]) CHAR() interprets each argument N as an integer and returns a string consisting of the characters given by the code values of those integers. NULL values are skipped. By default, CHAR() returns a binary string. To produce a string in a given character set, use the optional USING clause: MariaDB> SELECT CHARSET(CHAR(0x65)), CHARSET(CHAR(0x65 USING utf8)); +---------------------+--------------------------------+ | CHARSET(CHAR(0x65)) | CHARSET(CHAR(0x65 USING utf8)) | +---------------------+--------------------------------+ | binary | utf8 | +---------------------+--------------------------------+ If USING is given and the result string is illegal for the given character set, a warning is issued. Also, if strict SQL mode is enabled, the result from CHAR() becomes NULL. URL: https://mariadb.com/kb/en/char-function/ ', 'MariaDB> SELECT CHAR(77,121,83,81,''76''); -> ''MySQL'' MariaDB> SELECT CHAR(77,77.3,''77.3''); -> ''MMM'' ', 'https://mariadb.com/kb/en/char-function/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (15, 'DATETIME', 22, 'DATETIME A date and time combination. The supported range is ''1000-01-01 00:00:00'' to ''9999-12-31 23:59:59''. MySQL displays DATETIME values in ''YYYY-MM-DD HH:MM:SS'' format, but permits assignment of values to DATETIME columns using either strings or numbers. URL: https://mariadb.com/kb/en/datetime/ ', '', 'https://mariadb.com/kb/en/datetime/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (16, 'SHOW CREATE TRIGGER', 26, 'Syntax: SHOW CREATE TRIGGER trigger_name This statement shows a CREATE TRIGGER statement that creates the given trigger. URL: https://mariadb.com/kb/en/show-create-trigger/ ', '', 'https://mariadb.com/kb/en/show-create-trigger/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (17, 'SHOW CREATE PROCEDURE', 26, 'Syntax: SHOW CREATE PROCEDURE proc_name This statement is a MySQL extension. It returns the exact string that can be used to re-create the named stored procedure. A similar statement, SHOW CREATE FUNCTION, displays information about stored functions (see [HELP SHOW CREATE FUNCTION]). Both statements require that you be the owner of the routine or have SELECT access to the mysql.proc table. If you do not have privileges for the routine itself, the value displayed for the Create Procedure or Create Function field will be NULL. URL: https://mariadb.com/kb/en/show-create-procedure/ ', 'MariaDB> SHOW CREATE PROCEDURE test.simpleproc\\G *************************** 1. row *************************** Procedure: simpleproc sql_mode: Create Procedure: CREATE PROCEDURE `simpleproc`(OUT param1 INT) BEGIN SELECT COUNT(*) INTO param1 FROM t; END character_set_client: latin1 collation_connection: latin1_swedish_ci Database Collation: latin1_swedish_ci MariaDB> SHOW CREATE FUNCTION test.hello\\G *************************** 1. row *************************** Function: hello sql_mode: Create Function: CREATE FUNCTION `hello`(s CHAR(20)) RETURNS CHAR(50) RETURN CONCAT(''Hello, '',s,''!'') character_set_client: latin1 collation_connection: latin1_swedish_ci Database Collation: latin1_swedish_ci ', 'https://mariadb.com/kb/en/show-create-procedure/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (18, 'OPEN', 23, 'Syntax: OPEN cursor_name This statement opens a previously declared cursor. For an example, see https://mariadb.com/kb/en/cursor-overview/. URL: https://mariadb.com/kb/en/open/ ', '', 'https://mariadb.com/kb/en/open/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (19, 'INTEGER', 22, 'INTEGER[(M)] [UNSIGNED] [ZEROFILL] This type is a synonym for INT. URL: https://mariadb.com/kb/en/sql_language-data_types-int ', '', 'https://mariadb.com/kb/en/sql_language-data_types-int'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (23, 'MONTH', 31, 'Syntax: MONTH(date) Returns the month for date, in the range 1 to 12 for January to December, or 0 for dates such as ''0000-00-00'' or ''2008-00-00'' that have a zero month part. URL: https://mariadb.com/kb/en/month/ ', 'MariaDB> SELECT MONTH(''2008-02-03''); -> 2 ', 'https://mariadb.com/kb/en/month/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (24, 'TINYINT', 22, 'TINYINT[(M)] [UNSIGNED] [ZEROFILL] A very small integer. The signed range is -128 to 127. The unsigned range is 0 to 255. URL: https://mariadb.com/kb/en/tinyint/ ', '', 'https://mariadb.com/kb/en/tinyint/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (29, '^', 19, 'Syntax: ^ Bitwise XOR: URL: https://mariadb.com/kb/en/bitwise-xor/ ', 'MariaDB> SELECT 1 ^ 1; -> 0 MariaDB> SELECT 1 ^ 0; -> 1 MariaDB> SELECT 11 ^ 3; -> 8 ', 'https://mariadb.com/kb/en/bitwise-xor/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (20, 'LOWER', 37, 'Syntax: LOWER(str) Returns the string str with all characters changed to lowercase according to the current character set mapping. The default is latin1 (cp1252 West European). MariaDB> SELECT LOWER(''QUADRATICALLY''); -> ''quadratically'' LOWER() (and UPPER()) are ineffective when applied to binary strings (BINARY, VARBINARY, BLOB). To perform lettercase conversion, convert the string to a nonbinary string: MariaDB> SET @str = BINARY ''New York''; MariaDB> SELECT LOWER(@str), LOWER(CONVERT(@str USING latin1)); +-------------+-----------------------------------+ | LOWER(@str) | LOWER(CONVERT(@str USING latin1)) | +-------------+-----------------------------------+ | New York | new york | +-------------+-----------------------------------+ URL: https://mariadb.com/kb/en/lower/ ', '', 'https://mariadb.com/kb/en/lower/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (21, 'SHOW COLUMNS', 26, 'Syntax: SHOW [FULL] COLUMNS {FROM | IN} tbl_name [{FROM | IN} db_name] [LIKE ''pattern'' | WHERE expr] SHOW COLUMNS displays information about the columns in a given table. It also works for views. The LIKE clause, if present, indicates which column names to match. The WHERE clause can be given to select rows using more general conditions, as discussed in https://mariadb.com/kb/en/extended-show/. SHOW COLUMNS displays information only for those columns for which you have some privilege. MariaDB> SHOW COLUMNS FROM City; +------------+----------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +------------+----------+------+-----+---------+----------------+ | Id | int(11) | NO | PRI | NULL | auto_increment | | Name | char(35) | NO | | | | | Country | char(3) | NO | UNI | | | | District | char(20) | YES | MUL | | | | Population | int(11) | NO | | 0 | | +------------+----------+------+-----+---------+----------------+ 5 rows in set (0.00 sec) If the data types differ from what you expect them to be based on a CREATE TABLE statement, note that MySQL sometimes changes data types when you create or alter a table. The conditions under which this occurs are described in https://mariadb.com/kb/en/silent-column-changes/. The FULL keyword causes the output to include the column collation and comments, as well as the privileges you have for each column. You can use db_name.tbl_name as an alternative to the tbl_name FROM db_name syntax. In other words, these two statements are equivalent: MariaDB> SHOW COLUMNS FROM mytable FROM mydb; MariaDB> SHOW COLUMNS FROM mydb.mytable; SHOW COLUMNS displays the following values for each table column: Field indicates the column name. Type indicates the column data type. Collation indicates the collation for nonbinary string columns, or NULL for other columns. This value is displayed only if you use the FULL keyword. The Null field contains YES if NULL values can be stored in the column, NO if not. The Key field indicates whether the column is indexed: o If Key is empty, the column either is not indexed or is indexed only as a secondary column in a multiple-column, nonunique index. o If Key is PRI, the column is a PRIMARY KEY or is one of the columns in a multiple-column PRIMARY KEY. o If Key is UNI, the column is the first column of a UNIQUE index. (A UNIQUE index permits multiple NULL values, but you can tell whether the column permits NULL by checking the Null field.) o If Key is MUL, the column is the first column of a nonunique index in which multiple occurrences of a given value are permitted within the column. If more than one of the Key values applies to a given column of a table, Key displays the one with the highest priority, in the order PRI, UNI, MUL. A UNIQUE index may be displayed as PRI if it cannot contain NULL values and there is no PRIMARY KEY in the table. A UNIQUE index may display as MUL if several columns form a composite UNIQUE index; although the combination of the columns is unique, each column can still hold multiple occurrences of a given value. The Default field indicates the default value that is assigned to the column. This is NULL if the column has an explicit default of NULL, or if the column definition has no DEFAULT clause. The Extra field contains any additional information that is available about a given column. The value is nonempty in these cases: auto_increment for columns that have the AUTO_INCREMENT attribute; on update CURRENT_TIMESTAMP for TIMESTAMP columns that have the ON UPDATE CURRENT_TIMESTAMP attribute. Privileges indicates the privileges you have for the column. This value is displayed only if you use the FULL keyword. Comment indicates any comment the column has. This value is displayed only if you use the FULL keyword. SHOW FIELDS is a synonym for SHOW COLUMNS. You can also list a table''s columns with the mysqlshow db_name tbl_name command. The DESCRIBE statement provides information similar to SHOW COLUMNS. See [HELP DESCRIBE]. The SHOW CREATE TABLE, SHOW TABLE STATUS, and SHOW INDEX statements also provide information about tables. See [HELP SHOW]. URL: https://mariadb.com/kb/en/show-columns/ ', '', 'https://mariadb.com/kb/en/show-columns/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (30, 'DROP VIEW', 39, 'Syntax: DROP VIEW [IF EXISTS] view_name [, view_name] ... [RESTRICT | CASCADE] DROP VIEW removes one or more views. You must have the DROP privilege for each view. If any of the views named in the argument list do not exist, MySQL returns an error indicating by name which nonexisting views it was unable to drop, but it also drops all of the views in the list that do exist. The IF EXISTS clause prevents an error from occurring for views that don''t exist. When this clause is given, a NOTE is generated for each nonexistent view. See [HELP SHOW WARNINGS]. RESTRICT and CASCADE, if given, are parsed and ignored. URL: https://mariadb.com/kb/en/drop-view/ ', '', 'https://mariadb.com/kb/en/drop-view/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (31, 'WITHIN', 30, 'Within(g1,g2) Returns 1 or 0 to indicate whether g1 is spatially within g2. This tests the opposite relationship as Contains(). URL: https://mariadb.com/kb/en/within/ ', '', 'https://mariadb.com/kb/en/within/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (32, 'WEEK', 31, 'Syntax: WEEK(date[,mode]) This function returns the week number for date. The two-argument form of WEEK() enables you to specify whether the week starts on Sunday or Monday and whether the return value should be in the range from 0 to 53 or from 1 to 53. If the mode argument is omitted, the value of the default_week_format system variable is used. See https://mariadb.com/kb/en/server-system-variables/. URL: https://mariadb.com/kb/en/week/ ', 'MariaDB> SELECT WEEK(''2008-02-20''); -> 7 MariaDB> SELECT WEEK(''2008-02-20'',0); -> 7 MariaDB> SELECT WEEK(''2008-02-20'',1); -> 8 MariaDB> SELECT WEEK(''2008-12-31'',1); -> 53 ', 'https://mariadb.com/kb/en/week/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (34, 'DROP FUNCTION UDF', 21, 'Syntax: DROP FUNCTION function_name This statement drops the user-defined function (UDF) named function_name. To drop a function, you must have the DELETE privilege for the mysql database. This is because DROP FUNCTION removes a row from the mysql.func system table that records the function''s name, type, and shared library name. URL: https://mariadb.com/kb/en/drop-function-udf/ ', '', 'https://mariadb.com/kb/en/drop-function-udf/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (22, 'CREATE TRIGGER', 39, 'Syntax: CREATE [DEFINER = { user | CURRENT_USER }] TRIGGER trigger_name trigger_time trigger_event ON tbl_name FOR EACH ROW trigger_body This statement creates a new trigger. A trigger is a named database object that is associated with a table, and that activates when a particular event occurs for the table. The trigger becomes associated with the table named tbl_name, which must refer to a permanent table. You cannot associate a trigger with a TEMPORARY table or a view. CREATE TRIGGER requires the TRIGGER privilege for the table associated with the trigger. The statement might also require the SUPER privilege, depending on the DEFINER value, as described later in this section. If binary logging is enabled, CREATE TRIGGER might require the SUPER privilege, as described in https://mariadb.com/kb/en/binary-logging-of-stored-routines/. The DEFINER clause determines the security context to be used when checking access privileges at trigger activation time. See later in this section for more information. trigger_time is the trigger action time. It can be BEFORE or AFTER to indicate that the trigger activates before or after each row to be modified. trigger_event indicates the kind of statement that activates the trigger. The trigger_event can be one of the following: o INSERT: The trigger is activated whenever a new row is inserted into the table; for example, through INSERT, LOAD DATA, and REPLACE statements. o UPDATE: The trigger is activated whenever a row is modified; for example, through UPDATE statements. o DELETE: The trigger is activated whenever a row is deleted from the table; for example, through DELETE and REPLACE statements. However, DROP TABLE and TRUNCATE TABLE statements on the table do not activate this trigger, because they do not use DELETE. Dropping a partition does not activate DELETE triggers, either. See [HELP TRUNCATE TABLE]. URL: https://mariadb.com/kb/en/create-trigger/ ', '', 'https://mariadb.com/kb/en/create-trigger/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (25, 'SHOW TRIGGERS', 26, 'Syntax: SHOW TRIGGERS [{FROM | IN} db_name] [LIKE ''pattern'' | WHERE expr] SHOW TRIGGERS lists the triggers currently defined for tables in a database (the default database unless a FROM clause is given). This statement returns results only for databases and tables for which you have the TRIGGER privilege. The LIKE clause, if present, indicates which table names to match and causes the statement to display triggers for those tables. The WHERE clause can be given to select rows using more general conditions, as discussed in https://mariadb.com/kb/en/extended-show/. For the trigger ins_sum as defined in https://mariadb.com/kb/en/triggers/, the output of this statement is as shown here: MariaDB> SHOW TRIGGERS LIKE ''acc%''\\G *************************** 1. row *************************** Trigger: ins_sum Event: INSERT Table: account Statement: SET @sum = @sum + NEW.amount Timing: BEFORE Created: NULL sql_mode: Definer: myname@localhost character_set_client: latin1 collation_connection: latin1_swedish_ci Database Collation: latin1_swedish_ci character_set_client is the session value of the character_set_client system variable when the trigger was created. collation_connection is the session value of the collation_connection system variable when the trigger was created. Database Collation is the collation of the database with which the trigger is associated. URL: https://mariadb.com/kb/en/show-triggers/ ', '', 'https://mariadb.com/kb/en/show-triggers/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (26, 'MASTER_POS_WAIT', 14, 'Syntax: MASTER_POS_WAIT(log_name,log_pos[,timeout]) This function is useful for control of master/slave synchronization. It blocks until the slave has read and applied all updates up to the specified position in the master log. The return value is the number of log events the slave had to wait for to advance to the specified position. The function returns NULL if the slave SQL thread is not started, the slave''s master information is not initialized, the arguments are incorrect, or an error occurs. It returns -1 if the timeout has been exceeded. If the slave SQL thread stops while MASTER_POS_WAIT() is waiting, the function returns NULL. If the slave is past the specified position, the function returns immediately. If a timeout value is specified, MASTER_POS_WAIT() stops waiting when timeout seconds have elapsed. timeout must be greater than 0; a zero or negative timeout means no timeout. URL: https://mariadb.com/kb/en/master_pos_wait/ ', '', 'https://mariadb.com/kb/en/master_pos_wait/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (27, 'REGEXP', 37, 'Syntax: expr REGEXP pat, expr RLIKE pat Performs a pattern match of a string expression expr against a pattern pat. The pattern can be an extended regular expression. The syntax for regular expressions is discussed in https://mariadb.com/kb/en/regexp/. Returns 1 if expr matches pat; otherwise it returns 0. If either expr or pat is NULL, the result is NULL. RLIKE is a synonym for REGEXP, provided for mSQL compatibility. The pattern need not be a literal string. For example, it can be specified as a string expression or table column. *Note*: Because MySQL uses the C escape syntax in strings (for example, "\\n" to represent the newline character), you must double any "\\" that you use in your REGEXP strings. REGEXP is not case sensitive, except when used with binary strings. URL: https://mariadb.com/kb/en/regexp/ ', 'MariaDB> SELECT ''Monty!'' REGEXP ''.*''; -> 1 MariaDB> SELECT ''new*\\n*line'' REGEXP ''new\\\\*.\\\\*line''; -> 1 MariaDB> SELECT ''a'' REGEXP ''A'', ''a'' REGEXP BINARY ''A''; -> 1 0 MariaDB> SELECT ''a'' REGEXP ''^[a-d]''; -> 1 ', 'https://mariadb.com/kb/en/regexp/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (39, 'SHOW BINARY LOGS', 26, 'Syntax: SHOW BINARY LOGS SHOW MASTER LOGS Lists the binary log files on the server. This statement is used as part of the procedure described in [HELP PURGE BINARY LOGS], that shows how to determine which logs can be purged. MariaDB> SHOW BINARY LOGS; +---------------+-----------+ | Log_name | File_size | +---------------+-----------+ | binlog.000015 | 724935 | | binlog.000016 | 733481 | +---------------+-----------+ URL: https://mariadb.com/kb/en/show-binary-logs/ ', '', 'https://mariadb.com/kb/en/show-binary-logs/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (40, 'POLYGON', 24, 'Polygon(ls1,ls2,...) Constructs a Polygon value from a number of LineString or WKB LineString arguments. If any argument does not represent a LinearRing (that is, not a closed and simple LineString), the return value is NULL. URL: https://mariadb.com/kb/en/polygon/ ', '', 'https://mariadb.com/kb/en/polygon/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (41, 'MINUTE', 31, 'Syntax: MINUTE(time) Returns the minute for time, in the range 0 to 59. URL: https://mariadb.com/kb/en/minute/ ', 'MariaDB> SELECT MINUTE(''2008-02-03 10:05:03''); -> 5 ', 'https://mariadb.com/kb/en/minute/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (42, 'DAY', 31, 'Syntax: DAY(date) DAY() is a synonym for DAYOFMONTH(). URL: https://mariadb.com/kb/en/day/ ', '', 'https://mariadb.com/kb/en/day/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (43, 'MID', 37, 'Syntax: MID(str,pos,len) MID(str,pos,len) is a synonym for SUBSTRING(str,pos,len). URL: https://mariadb.com/kb/en/mid/ ', '', 'https://mariadb.com/kb/en/mid/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (45, 'LINESTRING', 24, 'LineString(pt1,pt2,...) Constructs a LineString value from a number of Point or WKB Point arguments. If the number of arguments is less than two, the return value is NULL. URL: https://mariadb.com/kb/en/linestring/ ', '', 'https://mariadb.com/kb/en/linestring/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (28, 'IF STATEMENT', 23, 'Syntax: IF search_condition THEN statement_list [ELSEIF search_condition THEN statement_list] ... [ELSE statement_list] END IF The IF statement for stored programs implements a basic conditional construct. *Note*: There is also an IF() function, which differs from the IF statement described here. See https://mariadb.com/kb/en/if-function/. The IF statement can have THEN, ELSE, and ELSEIF clauses, and it is terminated with END IF. If the search_condition evaluates to true, the corresponding THEN or ELSEIF clause statement_list executes. If no search_condition matches, the ELSE clause statement_list executes. Each statement_list consists of one or more SQL statements; an empty statement_list is not permitted. URL: https://mariadb.com/kb/en/if-statement/ ', '', 'https://mariadb.com/kb/en/if-statement/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (33, 'SHOW PLUGINS', 26, 'Syntax: SHOW PLUGINS SHOW PLUGINS displays information about server plugins. Plugin information is also available in the INFORMATION_SCHEMA.PLUGINS table. See https://mariadb.com/kb/en/information_schemaplugins-table/. Example of SHOW PLUGINS output: MariaDB> SHOW PLUGINS\\G *************************** 1. row *************************** Name: binlog Status: ACTIVE Type: STORAGE ENGINE Library: NULL License: GPL *************************** 2. row *************************** Name: CSV Status: ACTIVE Type: STORAGE ENGINE Library: NULL License: GPL *************************** 3. row *************************** Name: MEMORY Status: ACTIVE Type: STORAGE ENGINE Library: NULL License: GPL *************************** 4. row *************************** Name: MyISAM Status: ACTIVE Type: STORAGE ENGINE Library: NULL License: GPL ... URL: https://mariadb.com/kb/en/show-plugins/ ', '', 'https://mariadb.com/kb/en/show-plugins/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (35, 'PREPARE', 8, 'Syntax: PREPARE stmt_name FROM preparable_stmt The PREPARE statement prepares a statement and assigns it a name, stmt_name, by which to refer to the statement later. Statement names are not case sensitive. preparable_stmt is either a string literal or a user variable that contains the text of the statement. The text must represent a single SQL statement, not multiple statements. Within the statement, "?" characters can be used as parameter markers to indicate where data values are to be bound to the query later when you execute it. The "?" characters should not be enclosed within quotation marks, even if you intend to bind them to string values. Parameter markers can be used only where data values should appear, not for SQL keywords, identifiers, and so forth. If a prepared statement with the given name already exists, it is deallocated implicitly before the new statement is prepared. This means that if the new statement contains an error and cannot be prepared, an error is returned and no statement with the given name exists. A prepared statement is executed with EXECUTE and released with DEALLOCATE PREPARE. The scope of a prepared statement is the session within which it is created. Other sessions cannot see it. URL: https://mariadb.com/kb/en/prepare-statement/ ', '', 'https://mariadb.com/kb/en/prepare-statement/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (36, 'LOCK', 8, 'Syntax: LOCK TABLES tbl_name [[AS] alias] lock_type [, tbl_name [[AS] alias] lock_type] ... lock_type: READ [LOCAL] | [LOW_PRIORITY] WRITE UNLOCK TABLES MySQL enables client sessions to acquire table locks explicitly for the purpose of cooperating with other sessions for access to tables, or to prevent other sessions from modifying tables during periods when a session requires exclusive access to them. A session can acquire or release locks only for itself. One session cannot acquire locks for another session or release locks held by another session. Locks may be used to emulate transactions or to get more speed when updating tables. This is explained in more detail later in this section. LOCK TABLES explicitly acquires table locks for the current client session. Table locks can be acquired for base tables or views. You must have the LOCK TABLES privilege, and the SELECT privilege for each object to be locked. For view locking, LOCK TABLES adds all base tables used in the view to the set of tables to be locked and locks them automatically. If you lock a table explicitly with LOCK TABLES, any tables used in triggers are also locked implicitly, as described in https://mariadb.com/kb/en/triggers-and-implicit-locks/. UNLOCK TABLES explicitly releases any table locks held by the current session. LOCK TABLES implicitly releases any table locks held by the current session before acquiring new locks. Another use for UNLOCK TABLES is to release the global read lock acquired with the FLUSH TABLES WITH READ LOCK statement, which enables you to lock all tables in all databases. See [HELP FLUSH]. (This is a very convenient way to get backups if you have a file system such as Veritas that can take snapshots in time.) URL: https://mariadb.com/kb/en/transactions-lock/ ', '', 'https://mariadb.com/kb/en/transactions-lock/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (46, 'SLEEP', 14, 'Syntax: SLEEP(duration) Sleeps (pauses) for the number of seconds given by the duration argument, then returns 0. If SLEEP() is interrupted, it returns 1. The duration may have a fractional part given in microseconds. URL: https://mariadb.com/kb/en/sleep/ ', '', 'https://mariadb.com/kb/en/sleep/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (47, 'CONNECTION_ID', 17, 'Syntax: CONNECTION_ID() Returns the connection ID (thread ID) for the connection. Every connection has an ID that is unique among the set of currently connected clients. URL: https://mariadb.com/kb/en/connection_id/ ', 'MariaDB> SELECT CONNECTION_ID(); -> 23786 ', 'https://mariadb.com/kb/en/connection_id/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (49, 'ROUND', 4, 'Syntax: ROUND(X), ROUND(X,D) Rounds the argument X to D decimal places. The rounding algorithm depends on the data type of X. D defaults to 0 if not specified. D can be negative to cause D digits left of the decimal point of the value X to become zero. URL: https://mariadb.com/kb/en/round/ ', 'MariaDB> SELECT ROUND(-1.23); -> -1 MariaDB> SELECT ROUND(-1.58); -> -2 MariaDB> SELECT ROUND(1.58); -> 2 MariaDB> SELECT ROUND(1.298, 1); -> 1.3 MariaDB> SELECT ROUND(1.298, 0); -> 1 MariaDB> SELECT ROUND(23.298, -1); -> 20 ', 'https://mariadb.com/kb/en/round/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (50, 'NULLIF', 7, 'Syntax: NULLIF(expr1,expr2) Returns NULL if expr1 = expr2 is true, otherwise returns expr1. This is the same as CASE WHEN expr1 = expr2 THEN NULL ELSE expr1 END. URL: https://mariadb.com/kb/en/nullif/ ', 'MariaDB> SELECT NULLIF(1,1); -> NULL MariaDB> SELECT NULLIF(1,2); -> 1 ', 'https://mariadb.com/kb/en/nullif/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (51, 'CLOSE', 23, 'Syntax: CLOSE cursor_name This statement closes a previously opened cursor. For an example, see https://mariadb.com/kb/en/cursor-overview/. An error occurs if the cursor is not open. If not closed explicitly, a cursor is closed at the end of the BEGIN ... END block in which it was declared. URL: https://mariadb.com/kb/en/close/ ', '', 'https://mariadb.com/kb/en/close/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (53, 'TIMEDIFF', 31, 'Syntax: TIMEDIFF(expr1,expr2) TIMEDIFF() returns expr1 - expr2 expressed as a time value. expr1 and expr2 are time or date-and-time expressions, but both must be of the same type. The result returned by TIMEDIFF() is limited to the range allowed for TIME values. Alternatively, you can use either of the functions TIMESTAMPDIFF() and UNIX_TIMESTAMP(), both of which return integers. URL: https://mariadb.com/kb/en/timediff/ ', 'MariaDB> SELECT TIMEDIFF(''2000:01:01 00:00:00'', -> ''2000:01:01 00:00:00.000001''); -> ''-00:00:00.000001'' MariaDB> SELECT TIMEDIFF(''2008-12-31 23:59:59.000001'', -> ''2008-12-30 01:01:01.000002''); -> ''46:58:57.999999'' ', 'https://mariadb.com/kb/en/timediff/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (37, 'UPDATEXML', 37, 'Syntax: UpdateXML(xml_target, xpath_expr, new_xml) This function replaces a single portion of a given fragment of XML markup xml_target with a new XML fragment new_xml, and then returns the changed XML. The portion of xml_target that is replaced matches an XPath expression xpath_expr supplied by the user. In MySQL 5.5, the XPath expression can contain at most 127 characters. (This limitation is lifted in MySQL 5.6.) If no expression matching xpath_expr is found, or if multiple matches are found, the function returns the original xml_target XML fragment. All three arguments should be strings. URL: https://mariadb.com/kb/en/updatexml/ ', 'MariaDB> SELECT -> UpdateXML(''<a><b>ccc</b><d></d></a>'', ''/a'', ''<e>fff</e>'') AS val1, -> UpdateXML(''<a><b>ccc</b><d></d></a>'', ''/b'', ''<e>fff</e>'') AS val2, -> UpdateXML(''<a><b>ccc</b><d></d></a>'', ''//b'', ''<e>fff</e>'') AS val3, -> UpdateXML(''<a><b>ccc</b><d></d></a>'', ''/a/d'', ''<e>fff</e>'') AS val4, -> UpdateXML(''<a><d></d><b>ccc</b><d></d></a>'', ''/a/d'', ''<e>fff</e>'') AS val5 -> \\G *************************** 1. row *************************** val1: <e>fff</e> val2: <a><b>ccc</b><d></d></a> val3: <a><e>fff</e><d></d></a> val4: <a><b>ccc</b><e>fff</e></a> val5: <a><d></d><b>ccc</b><d></d></a> ', 'https://mariadb.com/kb/en/updatexml/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (38, 'RESET SLAVE', 8, 'Syntax: RESET SLAVE [ALL] RESET SLAVE makes the slave forget its replication position in the master''s binary log. This statement is meant to be used for a clean start: It deletes the master.info and relay-log.info files, all the relay log files, and starts a new relay log file. To use RESET SLAVE, the slave replication threads must be stopped (use STOP SLAVE if necessary). *Note*: All relay log files are deleted, even if they have not been completely executed by the slave SQL thread. (This is a condition likely to exist on a replication slave if you have issued a STOP SLAVE statement or if the slave is highly loaded.) In MySQL 5.5 (unlike the case in MySQL 5.1 and earlier), RESET SLAVE does not change any replication connection parameters such as master host, master port, master user, or master password, which are retained in memory. This means that START SLAVE can be issued without requiring a CHANGE MASTER TO statement following RESET SLAVE. In MySQL 5.5.16 and later, you can use RESET SLAVE ALL to reset these connection parameters (Bug #11809016). Connection parameters are also reset if the slave mysqld is shut down. If the slave SQL thread was in the middle of replicating temporary tables when it was stopped, and RESET SLAVE is issued, these replicated temporary tables are deleted on the slave. URL: https://mariadb.com/kb/en/reset-slave-connection_name/ ', '', 'https://mariadb.com/kb/en/reset-slave-connection_name/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (44, 'UUID', 14, 'Syntax: UUID() Returns a Universal Unique Identifier (UUID) generated according to "DCE 1.1: Remote Procedure Call" (Appendix A) CAE (Common Applications Environment) Specifications published by The Open Group in October 1997 (Document Number C706, http://www.opengroup.org/public/pubs/catalog/c706.htm). A UUID is designed as a number that is globally unique in space and time. Two calls to UUID() are expected to generate two different values, even if these calls are performed on two separate computers that are not connected to each other. A UUID is a 128-bit number represented by a utf8 string of five hexadecimal numbers in aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee format: o The first three numbers are generated from a timestamp. o The fourth number preserves temporal uniqueness in case the timestamp value loses monotonicity (for example, due to daylight saving time). o The fifth number is an IEEE 802 node number that provides spatial uniqueness. A random number is substituted if the latter is not available (for example, because the host computer has no Ethernet card, or we do not know how to find the hardware address of an interface on your operating system). In this case, spatial uniqueness cannot be guaranteed. Nevertheless, a collision should have very low probability. Currently, the MAC address of an interface is taken into account only on FreeBSD and Linux. On other operating systems, MySQL uses a randomly generated 48-bit number. URL: https://mariadb.com/kb/en/uuid/ ', 'MariaDB> SELECT UUID(); -> ''6ccd780c-baba-1026-9564-0040f4311e29'' ', 'https://mariadb.com/kb/en/uuid/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (48, 'DELETE', 27, 'Syntax: Single-table syntax: DELETE [LOW_PRIORITY] [QUICK] [IGNORE] FROM tbl_name [WHERE where_condition] [ORDER BY ...] [LIMIT row_count] Multiple-table syntax: DELETE [LOW_PRIORITY] [QUICK] [IGNORE] tbl_name[.*] [, tbl_name[.*]] ... FROM table_references [WHERE where_condition] Or: DELETE [LOW_PRIORITY] [QUICK] [IGNORE] FROM tbl_name[.*] [, tbl_name[.*]] ... USING table_references [WHERE where_condition] For the single-table syntax, the DELETE statement deletes rows from tbl_name and returns a count of the number of deleted rows. This count can be obtained by calling the ROW_COUNT() function (see https://mariadb.com/kb/en/information-functions-row_count/). The WHERE clause, if given, specifies the conditions that identify which rows to delete. With no WHERE clause, all rows are deleted. If the ORDER BY clause is specified, the rows are deleted in the order that is specified. The LIMIT clause places a limit on the number of rows that can be deleted. For the multiple-table syntax, DELETE deletes from each tbl_name the rows that satisfy the conditions. In this case, ORDER BY and LIMIT cannot be used. where_condition is an expression that evaluates to true for each row to be deleted. It is specified as described in https://mariadb.com/kb/en/select/. Currently, you cannot delete from a table and select from the same table in a subquery. You need the DELETE privilege on a table to delete rows from it. You need only the SELECT privilege for any columns that are only read, such as those named in the WHERE clause. As stated, a DELETE statement with no WHERE clause deletes all rows. A faster way to do this, when you do not need to know the number of deleted rows, is to use TRUNCATE TABLE. However, within a transaction or if you have a lock on the table, TRUNCATE TABLE cannot be used whereas DELETE can. See [HELP TRUNCATE TABLE], and [HELP LOCK]. URL: https://mariadb.com/kb/en/delete/ ', '', 'https://mariadb.com/kb/en/delete/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (54, 'REPLACE FUNCTION', 37, 'Syntax: REPLACE(str,from_str,to_str) Returns the string str with all occurrences of the string from_str replaced by the string to_str. REPLACE() performs a case-sensitive match when searching for from_str. URL: https://mariadb.com/kb/en/replace-function/ ', 'MariaDB> SELECT REPLACE(''www.mariadb.org'', ''w'', ''Ww''); -> ''WwWwWw.mariadb.org'' ', 'https://mariadb.com/kb/en/replace-function/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (55, 'USE', 28, 'Syntax: USE db_name The USE db_name statement tells MySQL to use the db_name database as the default (current) database for subsequent statements. The database remains the default until the end of the session or another USE statement is issued: USE db1; SELECT COUNT(*) FROM mytable; # selects from db1.mytable USE db2; SELECT COUNT(*) FROM mytable; # selects from db2.mytable URL: https://mariadb.com/kb/en/use/ ', '', 'https://mariadb.com/kb/en/use/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (52, 'STOP SLAVE', 8, 'Syntax: STOP SLAVE [thread_types] thread_types: [thread_type [, thread_type] ... ] thread_type: IO_THREAD | SQL_THREAD Stops the slave threads. STOP SLAVE requires the SUPER privilege. Recommended best practice is to execute STOP SLAVE on the slave before stopping the slave server (see http://dev.mysql.com/doc/refman/5.5/en/server-shutdown.html, for more information). When using the row-based logging format: You should execute STOP SLAVE on the slave prior to shutting down the slave server if you are replicating any tables that use a nontransactional storage engine (see the Note later in this section). In MySQL 5.5.9 and later, you can also use STOP SLAVE SQL_THREAD for this purpose. Like START SLAVE, this statement may be used with the IO_THREAD and SQL_THREAD options to name the thread or threads to be stopped. *Note*: In MySQL 5.5, STOP SLAVE waits until the current replication event group affecting one or more non-transactional tables has finished executing (if there is any such replication group), or until the user issues a KILL QUERY or KILL CONNECTION statement. (Bug #319, Bug #38205) URL: https://mariadb.com/kb/en/stop-slave/ ', '', 'https://mariadb.com/kb/en/stop-slave/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (56, 'LINEFROMTEXT', 3, 'LineFromText(wkt[,srid]), LineStringFromText(wkt[,srid]) Constructs a LINESTRING value using its WKT representation and SRID. URL: https://mariadb.com/kb/en/linefromtext/ ', '', 'https://mariadb.com/kb/en/linefromtext/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (57, 'CASE OPERATOR', 7, 'Syntax: CASE value WHEN [compare_value] THEN result [WHEN [compare_value] THEN result ...] [ELSE result] END CASE WHEN [condition] THEN result [WHEN [condition] THEN result ...] [ELSE result] END The first version returns the result where value=compare_value. The second version returns the result for the first condition that is true. If there was no matching result value, the result after ELSE is returned, or NULL if there is no ELSE part. URL: https://mariadb.com/kb/en/case-operator/ ', 'MariaDB> SELECT CASE 1 WHEN 1 THEN ''one'' -> WHEN 2 THEN ''two'' ELSE ''more'' END; -> ''one'' MariaDB> SELECT CASE WHEN 1>0 THEN ''true'' ELSE ''false'' END; -> ''true'' MariaDB> SELECT CASE BINARY ''B'' -> WHEN ''a'' THEN 1 WHEN ''b'' THEN 2 END; -> NULL ', 'https://mariadb.com/kb/en/case-operator/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (58, 'SHOW MASTER STATUS', 26, 'Syntax: SHOW MASTER STATUS This statement provides status information about the binary log files of the master. It requires either the SUPER or REPLICATION CLIENT privilege. Example: MariaDB> SHOW MASTER STATUS; +---------------+----------+--------------+------------------+ | File | Position | Binlog_Do_DB | Binlog_Ignore_DB | +---------------+----------+--------------+------------------+ | mysql-bin.003 | 73 | test | manual,mysql | +---------------+----------+--------------+------------------+ URL: https://mariadb.com/kb/en/show-master-status/ ', '', 'https://mariadb.com/kb/en/show-master-status/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (59, 'ADDTIME', 31, 'Syntax: ADDTIME(expr1,expr2) ADDTIME() adds expr2 to expr1 and returns the result. expr1 is a time or datetime expression, and expr2 is a time expression. URL: https://mariadb.com/kb/en/addtime/ ', 'MariaDB> SELECT ADDTIME(''2007-12-31 23:59:59.999999'', ''1 1:1:1.000002''); -> ''2008-01-02 01:01:01.000001'' MariaDB> SELECT ADDTIME(''01:00:00.999999'', ''02:00:00.999998''); -> ''03:00:01.999997'' ', 'https://mariadb.com/kb/en/addtime/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (60, 'SPATIAL', 34, 'For MyISAM tables, MySQL can create spatial indexes using syntax similar to that for creating regular indexes, but extended with the SPATIAL keyword. Currently, columns in spatial indexes must be declared NOT NULL. The following examples demonstrate how to create spatial indexes: o With CREATE TABLE: CREATE TABLE geom (g GEOMETRY NOT NULL, SPATIAL INDEX(g)) ENGINE=MyISAM; o With ALTER TABLE: ALTER TABLE geom ADD SPATIAL INDEX(g); o With CREATE INDEX: CREATE SPATIAL INDEX sp_index ON geom (g); For MyISAM tables, SPATIAL INDEX creates an R-tree index. For storage engines that support nonspatial indexing of spatial columns, the engine creates a B-tree index. A B-tree index on spatial values will be useful for exact-value lookups, but not for range scans. For more information on indexing spatial columns, see [HELP CREATE INDEX]. To drop spatial indexes, use ALTER TABLE or DROP INDEX: o With ALTER TABLE: ALTER TABLE geom DROP INDEX g; o With DROP INDEX: DROP INDEX sp_index ON geom; Example: Suppose that a table geom contains more than 32,000 geometries, which are stored in the column g of type GEOMETRY. The table also has an AUTO_INCREMENT column fid for storing object ID values. URL: https://mariadb.com/kb/en/spatial/ ', '', 'https://mariadb.com/kb/en/spatial/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (61, 'TO_SECONDS', 31, 'Syntax: TO_SECONDS(expr) Given a date or datetime expr, returns a the number of seconds since the year 0. If expr is not a valid date or datetime value, returns NULL. URL: https://mariadb.com/kb/en/to_seconds/ ', 'MariaDB> SELECT TO_SECONDS(950501); -> 62966505600 MariaDB> SELECT TO_SECONDS(''2009-11-29''); -> 63426672000 MariaDB> SELECT TO_SECONDS(''2009-11-29 13:43:32''); -> 63426721412 MariaDB> SELECT TO_SECONDS( NOW() ); -> 63426721458 ', 'https://mariadb.com/kb/en/to_seconds/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (63, 'UPPER', 37, 'Syntax: UPPER(str) Returns the string str with all characters changed to uppercase according to the current character set mapping. The default is latin1 (cp1252 West European). MariaDB> SELECT UPPER(''Hej''); -> ''HEJ'' See the description of LOWER() for information that also applies to UPPER(), such as information about how to perform lettercase conversion of binary strings (BINARY, VARBINARY, BLOB) for which these functions are ineffective. URL: https://mariadb.com/kb/en/upper/ ', '', 'https://mariadb.com/kb/en/upper/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (65, 'MEDIUMBLOB', 22, 'MEDIUMBLOB A BLOB column with a maximum length of 16,777,215 (224 - 1) bytes. Each MEDIUMBLOB value is stored using a 3-byte length prefix that indicates the number of bytes in the value. URL: https://mariadb.com/kb/en/mediumblob/ ', '', 'https://mariadb.com/kb/en/mediumblob/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (67, 'IFNULL', 7, 'Syntax: IFNULL(expr1,expr2) If expr1 is not NULL, IFNULL() returns expr1; otherwise it returns expr2. IFNULL() returns a numeric or string value, depending on the context in which it is used. URL: https://mariadb.com/kb/en/ifnull/ ', 'MariaDB> SELECT IFNULL(1,0); -> 1 MariaDB> SELECT IFNULL(NULL,10); -> 10 MariaDB> SELECT IFNULL(1/0,10); -> 10 MariaDB> SELECT IFNULL(1/0,''yes''); -> ''yes'' ', 'https://mariadb.com/kb/en/ifnull/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (68, 'SHOW FUNCTION CODE', 26, 'Syntax: SHOW FUNCTION CODE func_name This statement is similar to SHOW PROCEDURE CODE but for stored functions. See [HELP SHOW PROCEDURE CODE]. URL: https://mariadb.com/kb/en/show-function-code/ ', '', 'https://mariadb.com/kb/en/show-function-code/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (71, '=', 18, '= Equal: URL: https://mariadb.com/kb/en/equal/ ', 'MariaDB> SELECT 1 = 0; -> 0 MariaDB> SELECT ''0'' = 0; -> 1 MariaDB> SELECT ''0.0'' = 0; -> 1 MariaDB> SELECT ''0.01'' = 0; -> 0 MariaDB> SELECT ''.01'' = 0.01; -> 1 ', 'https://mariadb.com/kb/en/equal/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (72, 'REVERSE', 37, 'Syntax: REVERSE(str) Returns the string str with the order of the characters reversed. URL: https://mariadb.com/kb/en/reverse/ ', 'MariaDB> SELECT REVERSE(''abc''); -> ''cba'' ', 'https://mariadb.com/kb/en/reverse/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (62, 'TIMESTAMPDIFF', 31, 'Syntax: TIMESTAMPDIFF(unit,datetime_expr1,datetime_expr2) Returns datetime_expr2 - datetime_expr1, where datetime_expr1 and datetime_expr2 are date or datetime expressions. One expression may be a date and the other a datetime; a date value is treated as a datetime having the time part ''00:00:00'' where necessary. The unit for the result (an integer) is given by the unit argument. The legal values for unit are the same as those listed in the description of the TIMESTAMPADD() function. URL: https://mariadb.com/kb/en/timestampdiff/ ', 'MariaDB> SELECT TIMESTAMPDIFF(MONTH,''2003-02-01'',''2003-05-01''); -> 3 MariaDB> SELECT TIMESTAMPDIFF(YEAR,''2002-05-01'',''2001-01-01''); -> -1 MariaDB> SELECT TIMESTAMPDIFF(MINUTE,''2003-02-01'',''2003-05-01 12:05:55''); -> 128885 ', 'https://mariadb.com/kb/en/timestampdiff/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (64, 'FROM_UNIXTIME', 31, 'Syntax: FROM_UNIXTIME(unix_timestamp), FROM_UNIXTIME(unix_timestamp,format) Returns a representation of the unix_timestamp argument as a value in ''YYYY-MM-DD HH:MM:SS'' or YYYYMMDDHHMMSS.uuuuuu format, depending on whether the function is used in a string or numeric context. The value is expressed in the current time zone. unix_timestamp is an internal timestamp value such as is produced by the UNIX_TIMESTAMP() function. If format is given, the result is formatted according to the format string, which is used the same way as listed in the entry for the DATE_FORMAT() function. URL: https://mariadb.com/kb/en/from_unixtime/ ', 'MariaDB> SELECT FROM_UNIXTIME(1196440219); -> ''2007-11-30 10:30:19'' MariaDB> SELECT FROM_UNIXTIME(1196440219) + 0; -> 20071130103019.000000 MariaDB> SELECT FROM_UNIXTIME(UNIX_TIMESTAMP(), -> ''%Y %D %M %h:%i:%s %x''); -> ''2007 30th November 10:30:59 2007'' ', 'https://mariadb.com/kb/en/from_unixtime/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (66, 'SHA2', 12, 'Syntax: SHA2(str, hash_length) Calculates the SHA-2 family of hash functions (SHA-224, SHA-256, SHA-384, and SHA-512). The first argument is the cleartext string to be hashed. The second argument indicates the desired bit length of the result, which must have a value of 224, 256, 384, 512, or 0 (which is equivalent to 256). If either argument is NULL or the hash length is not one of the permitted values, the return value is NULL. Otherwise, the function result is a hash value containing the desired number of bits. See the notes at the beginning of this section about storing hash values efficiently. As of MySQL 5.5.6, the return value is a nonbinary string in the connection character set. Before 5.5.6, the return value is a binary string; see the notes at the beginning of this section about using the value as a nonbinary string. URL: https://mariadb.com/kb/en/sha2/ ', 'MariaDB> SELECT SHA2(''abc'', 224); -> ''23097d223405d8228642a477bda255b32aadbce4bda0b3f7e36c9da7'' ', 'https://mariadb.com/kb/en/sha2/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (69, 'SHOW ERRORS', 26, 'Syntax: SHOW ERRORS [LIMIT [offset,] row_count] SHOW COUNT(*) ERRORS This statement is similar to SHOW WARNINGS, except that it displays information only for errors, rather than for errors, warnings, and notes. The LIMIT clause has the same syntax as for the SELECT statement. See https://mariadb.com/kb/en/select/. The SHOW COUNT(*) ERRORS statement displays the number of errors. You can also retrieve this number from the error_count variable: SHOW COUNT(*) ERRORS; SELECT @@error_count; SHOW ERRORS and error_count apply only to errors, not warnings or notes. In other respects, they are similar to SHOW WARNINGS and warning_count. In particular, SHOW ERRORS cannot display information for more than max_error_count messages, and error_count can exceed the value of max_error_count if the number of errors exceeds max_error_count. URL: https://mariadb.com/kb/en/show-errors/ ', '', 'https://mariadb.com/kb/en/show-errors/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (70, 'LEAST', 18, 'Syntax: LEAST(value1,value2,...) With two or more arguments, returns the smallest (minimum-valued) argument. The arguments are compared using the following rules: o If any argument is NULL, the result is NULL. No comparison is needed. o If the return value is used in an INTEGER context or all arguments are integer-valued, they are compared as integers. o If the return value is used in a REAL context or all arguments are real-valued, they are compared as reals. o If the arguments comprise a mix of numbers and strings, they are compared as numbers. o If any argument is a nonbinary (character) string, the arguments are compared as nonbinary strings. o In all other cases, the arguments are compared as binary strings. URL: https://mariadb.com/kb/en/least/ ', 'MariaDB> SELECT LEAST(2,0); -> 0 MariaDB> SELECT LEAST(34.0,3.0,5.0,767.0); -> 3.0 MariaDB> SELECT LEAST(''B'',''A'',''C''); -> ''A'' ', 'https://mariadb.com/kb/en/least/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (73, 'ISNULL', 18, 'Syntax: ISNULL(expr) If expr is NULL, ISNULL() returns 1, otherwise it returns 0. URL: https://mariadb.com/kb/en/isnull/ ', 'MariaDB> SELECT ISNULL(1+1); -> 0 MariaDB> SELECT ISNULL(1/0); -> 1 ', 'https://mariadb.com/kb/en/isnull/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (74, 'BINARY', 22, 'BINARY(M) The BINARY type is similar to the CHAR type, but stores binary byte strings rather than nonbinary character strings. M represents the column length in bytes. URL: https://mariadb.com/kb/en/binary/ ', '', 'https://mariadb.com/kb/en/binary/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (75, 'BLOB DATA TYPE', 22, 'A BLOB is a binary large object that can hold a variable amount of data. The four BLOB types are TINYBLOB, BLOB, MEDIUMBLOB, and LONGBLOB. These differ only in the maximum length of the values they can hold. The four TEXT types are TINYTEXT, TEXT, MEDIUMTEXT, and LONGTEXT. These correspond to the four BLOB types and have the same maximum lengths and storage requirements. See https://mariadb.com/kb/en/data-type-storage-requirements/. URL: https://mariadb.com/kb/en/sql_language-data_types-blob/ ', '', 'https://mariadb.com/kb/en/sql_language-data_types-blob/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (76, 'BOUNDARY', 36, 'Boundary(g) Returns a geometry that is the closure of the combinatorial boundary of the geometry value g. URL: https://mariadb.com/kb/en/boundary/ ', '', 'https://mariadb.com/kb/en/boundary/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (78, 'POINT', 24, 'Point(x,y) Constructs a Point using its coordinates. URL: https://mariadb.com/kb/en/point/ ', '', 'https://mariadb.com/kb/en/point/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (79, 'CURRENT_USER', 17, 'Syntax: CURRENT_USER, CURRENT_USER() Returns the user name and host name combination for the MySQL account that the server used to authenticate the current client. This account determines your access privileges. The return value is a string in the utf8 character set. The value of CURRENT_USER() can differ from the value of USER(). URL: https://mariadb.com/kb/en/current_user/ ', 'MariaDB> SELECT USER(); -> ''davida@localhost'' MariaDB> SELECT * FROM mysql.user; ERROR 1044: Access denied for user ''''@''localhost'' to database ''mysql'' MariaDB> SELECT CURRENT_USER(); -> ''@localhost'' ', 'https://mariadb.com/kb/en/current_user/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (80, 'LCASE', 37, 'Syntax: LCASE(str) LCASE() is a synonym for LOWER(). URL: https://mariadb.com/kb/en/lcase/ ', '', 'https://mariadb.com/kb/en/lcase/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (81, '<=', 18, 'Syntax: <= Less than or equal: URL: https://mariadb.com/kb/en/less-than-or-equal/ ', 'MariaDB> SELECT 0.1 <= 2; -> 1 ', 'https://mariadb.com/kb/en/less-than-or-equal/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (82, 'SHOW PROFILES', 26, 'Syntax: SHOW PROFILES The SHOW PROFILES statement, together with SHOW PROFILE, displays profiling information that indicates resource usage for statements executed during the course of the current session. For more information, see [HELP SHOW PROFILE]. URL: https://mariadb.com/kb/en/show-profiles/ ', '', 'https://mariadb.com/kb/en/show-profiles/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (77, 'CREATE USER', 10, 'Syntax: CREATE USER user_specification [, user_specification] ... user_specification: user [ IDENTIFIED BY [PASSWORD] ''password'' | IDENTIFIED WITH auth_plugin [AS ''auth_string''] ] The CREATE USER statement creates new MySQL accounts. To use it, you must have the global CREATE USER privilege or the INSERT privilege for the mysql database. For each account, CREATE USER creates a new row in the mysql.user table and assigns the account no privileges. An error occurs if the account already exists. Each account name uses the format described in https://mariadb.com/kb/en/create-user#account-names. For example: CREATE USER ''jeffrey''@''localhost'' IDENTIFIED BY ''mypass''; If you specify only the user name part of the account name, a host name part of ''%'' is used. The user specification may indicate how the user should authenticate when connecting to the server: o To enable the user to connect with no password (which is insecure), include no IDENTIFIED BY clause: CREATE USER ''jeffrey''@''localhost''; In this case, the account uses built-in authentication and clients must provide no password. o To assign a password, use IDENTIFIED BY with the literal plaintext password value: CREATE USER ''jeffrey''@''localhost'' IDENTIFIED BY ''mypass''; The account uses built-in authentication and clients must match the given password. o To avoid specifying the plaintext password if you know its hash value (the value that PASSWORD() would return for the password), specify the hash value preceded by the keyword PASSWORD: CREATE USER ''jeffrey''@''localhost'' IDENTIFIED BY PASSWORD ''*90E462C37378CED12064BB3388827D2BA3A9B689''; The account uses built-in authentication and clients must match the given password. o To authenticate the account using a specific authentication plugin, use IDENTIFIED WITH, where auth_plugin is the plugin name. It can be an unquoted name or a quoted string literal. ''auth_string'' is an optional quoted string literal to pass to the plugin. The plugin interprets the meaning of the string, so its format is plugin specific. Consult the documentation for a given plugin for information about the authentication string values it accepts. CREATE USER ''jeffrey''@''localhost'' IDENTIFIED WITH my_auth_plugin; For connections that use this account, the server invokes the named plugin and clients must provide credentials as required for the authentication method that the plugin implements. If the server cannot find the plugin, either at account-creation time or connect time, an error occurs. IDENTIFIED WITH can be used as of MySQL 5.5.7. The IDENTIFIED BY and IDENTIFIED WITH clauses are mutually exclusive, so at most one of them can be specified for a given user. For additional information about setting passwords, see https://mariadb.com/kb/en/create-user/. URL: https://mariadb.com/kb/en/create-user/ ', '', 'https://mariadb.com/kb/en/create-user/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (83, 'UPDATE', 27, 'Syntax: Single-table syntax: UPDATE [LOW_PRIORITY] [IGNORE] table_reference SET col_name1={expr1|DEFAULT} [, col_name2={expr2|DEFAULT}] ... [WHERE where_condition] [ORDER BY ...] [LIMIT row_count] Multiple-table syntax: UPDATE [LOW_PRIORITY] [IGNORE] table_references SET col_name1={expr1|DEFAULT} [, col_name2={expr2|DEFAULT}] ... [WHERE where_condition] For the single-table syntax, the UPDATE statement updates columns of existing rows in the named table with new values. The SET clause indicates which columns to modify and the values they should be given. Each value can be given as an expression, or the keyword DEFAULT to set a column explicitly to its default value. The WHERE clause, if given, specifies the conditions that identify which rows to update. With no WHERE clause, all rows are updated. If the ORDER BY clause is specified, the rows are updated in the order that is specified. The LIMIT clause places a limit on the number of rows that can be updated. For the multiple-table syntax, UPDATE updates rows in each table named in table_references that satisfy the conditions. In this case, ORDER BY and LIMIT cannot be used. where_condition is an expression that evaluates to true for each row to be updated. For expression syntax, see http://dev.mysql.com/doc/refman/5.5/en/expressions.html. table_references and where_condition are is specified as described in https://mariadb.com/kb/en/select/. You need the UPDATE privilege only for columns referenced in an UPDATE that are actually updated. You need only the SELECT privilege for any columns that are read but not modified. The UPDATE statement supports the following modifiers: o With the LOW_PRIORITY keyword, execution of the UPDATE is delayed until no other clients are reading from the table. This affects only storage engines that use only table-level locking (such as MyISAM, MEMORY, and MERGE). o With the IGNORE keyword, the update statement does not abort even if errors occur during the update. Rows for which duplicate-key conflicts occur are not updated. Rows for which columns are updated to values that would cause data conversion errors are updated to the closest valid values instead. URL: https://mariadb.com/kb/en/update/ ', '', 'https://mariadb.com/kb/en/update/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (84, 'IS NOT NULL', 18, 'Syntax: IS NOT NULL Tests whether a value is not NULL. URL: https://mariadb.com/kb/en/is-not-null/ ', 'MariaDB> SELECT 1 IS NOT NULL, 0 IS NOT NULL, NULL IS NOT NULL; -> 1, 1, 0 ', 'https://mariadb.com/kb/en/is-not-null/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (87, 'DROP INDEX', 39, 'Syntax: DROP [ONLINE|OFFLINE] INDEX index_name ON tbl_name DROP INDEX drops the index named index_name from the table tbl_name. This statement is mapped to an ALTER TABLE statement to drop the index. See [HELP ALTER TABLE]. To drop a primary key, the index name is always PRIMARY, which must be specified as a quoted identifier because PRIMARY is a reserved word: DROP INDEX `PRIMARY` ON t; URL: https://mariadb.com/kb/en/drop-index/ ', '', 'https://mariadb.com/kb/en/drop-index/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (90, 'ABS', 4, 'Syntax: ABS(X) Returns the absolute value of X. URL: https://mariadb.com/kb/en/abs/ ', 'MariaDB> SELECT ABS(2); -> 2 MariaDB> SELECT ABS(-32); -> 32 ', 'https://mariadb.com/kb/en/abs/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (91, 'POLYFROMWKB', 32, 'PolyFromWKB(wkb[,srid]), PolygonFromWKB(wkb[,srid]) Constructs a POLYGON value using its WKB representation and SRID. URL: https://mariadb.com/kb/en/polyfromwkb/ ', '', 'https://mariadb.com/kb/en/polyfromwkb/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (92, 'NOT LIKE', 37, 'Syntax: expr NOT LIKE pat [ESCAPE ''escape_char''] This is the same as NOT (expr LIKE pat [ESCAPE ''escape_char'']). URL: https://mariadb.com/kb/en/not-like/ ', '', 'https://mariadb.com/kb/en/not-like/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (93, 'SPACE', 37, 'Syntax: SPACE(N) Returns a string consisting of N space characters. URL: https://mariadb.com/kb/en/space/ ', 'MariaDB> SELECT SPACE(6); -> '' '' ', 'https://mariadb.com/kb/en/space/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (94, 'MBR DEFINITION', 6, 'Its MBR (Minimum Bounding Rectangle), or Envelope. This is the bounding geometry, formed by the minimum and maximum (X,Y) coordinates: URL: https://mariadb.com/kb/en/mbr-definition/ ', '((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY)) ', 'https://mariadb.com/kb/en/mbr-definition/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (95, 'GEOMETRYCOLLECTION', 24, 'GeometryCollection(g1,g2,...) Constructs a GeometryCollection. URL: https://mariadb.com/kb/en/geometrycollection/ ', '', 'https://mariadb.com/kb/en/geometrycollection/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (85, 'CASE STATEMENT', 23, 'Syntax: CASE case_value WHEN when_value THEN statement_list [WHEN when_value THEN statement_list] ... [ELSE statement_list] END CASE Or: CASE WHEN search_condition THEN statement_list [WHEN search_condition THEN statement_list] ... [ELSE statement_list] END CASE The CASE statement for stored programs implements a complex conditional construct. *Note*: There is also a CASE expression, which differs from the CASE statement described here. See https://mariadb.com/kb/en/case-operator/. The CASE statement cannot have an ELSE NULL clause, and it is terminated with END CASE instead of END. For the first syntax, case_value is an expression. This value is compared to the when_value expression in each WHEN clause until one of them is equal. When an equal when_value is found, the corresponding THEN clause statement_list executes. If no when_value is equal, the ELSE clause statement_list executes, if there is one. This syntax cannot be used to test for equality with NULL because NULL = NULL is false. See https://mariadb.com/kb/en/null-values/. For the second syntax, each WHEN clause search_condition expression is evaluated until one is true, at which point its corresponding THEN clause statement_list executes. If no search_condition is equal, the ELSE clause statement_list executes, if there is one. If no when_value or search_condition matches the value tested and the CASE statement contains no ELSE clause, a Case not found for CASE statement error results. Each statement_list consists of one or more SQL statements; an empty statement_list is not permitted. To handle situations where no value is matched by any WHEN clause, use an ELSE containing an empty BEGIN ... END block, as shown in this example. (The indentation used here in the ELSE clause is for purposes of clarity only, and is not otherwise significant.) DELIMITER | CREATE PROCEDURE p() BEGIN DECLARE v INT DEFAULT 1; CASE v WHEN 2 THEN SELECT v; WHEN 3 THEN SELECT 0; ELSE BEGIN END; END CASE; END; | URL: https://mariadb.com/kb/en/case-statement/ ', '', 'https://mariadb.com/kb/en/case-statement/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (86, 'EXECUTE STATEMENT', 8, 'Syntax: EXECUTE stmt_name [USING @var_name [, @var_name] ...] After preparing a statement with PREPARE, you execute it with an EXECUTE statement that refers to the prepared statement name. If the prepared statement contains any parameter markers, you must supply a USING clause that lists user variables containing the values to be bound to the parameters. Parameter values can be supplied only by user variables, and the USING clause must name exactly as many variables as the number of parameter markers in the statement. You can execute a given prepared statement multiple times, passing different variables to it or setting the variables to different values before each execution. URL: https://mariadb.com/kb/en/execute-statement/ ', '', 'https://mariadb.com/kb/en/execute-statement/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (89, 'CREATE EVENT', 39, 'Syntax: CREATE [DEFINER = { user | CURRENT_USER }] EVENT [IF NOT EXISTS] event_name ON SCHEDULE schedule [ON COMPLETION [NOT] PRESERVE] [ENABLE | DISABLE | DISABLE ON SLAVE] [COMMENT ''comment''] DO event_body; schedule: AT timestamp [+ INTERVAL interval] ... | EVERY interval [STARTS timestamp [+ INTERVAL interval] ...] [ENDS timestamp [+ INTERVAL interval] ...] interval: quantity {YEAR | QUARTER | MONTH | DAY | HOUR | MINUTE | WEEK | SECOND | YEAR_MONTH | DAY_HOUR | DAY_MINUTE | DAY_SECOND | HOUR_MINUTE | HOUR_SECOND | MINUTE_SECOND} This statement creates and schedules a new event. The event will not run unless the Event Scheduler is enabled. For information about checking Event Scheduler status and enabling it if necessary, see https://mariadb.com/kb/en/events/. CREATE EVENT requires the EVENT privilege for the schema in which the event is to be created. It might also require the SUPER privilege, depending on the DEFINER value, as described later in this section. The minimum requirements for a valid CREATE EVENT statement are as follows: o The keywords CREATE EVENT plus an event name, which uniquely identifies the event in a database schema. o An ON SCHEDULE clause, which determines when and how often the event executes. o A DO clause, which contains the SQL statement to be executed by an event. This is an example of a minimal CREATE EVENT statement: CREATE EVENT myevent ON SCHEDULE AT CURRENT_TIMESTAMP + INTERVAL 1 HOUR DO UPDATE myschema.mytable SET mycol = mycol + 1; The previous statement creates an event named myevent. This event executes once---one hour following its creation---by running an SQL statement that increments the value of the myschema.mytable table''s mycol column by 1. The event_name must be a valid MySQL identifier with a maximum length of 64 characters. Event names are not case sensitive, so you cannot have two events named myevent and MyEvent in the same schema. In general, the rules governing event names are the same as those for names of stored routines. See https://mariadb.com/kb/en/identifier-names/. An event is associated with a schema. If no schema is indicated as part of event_name, the default (current) schema is assumed. To create an event in a specific schema, qualify the event name with a schema using schema_name.event_name syntax. URL: https://mariadb.com/kb/en/create-event/ ', '', 'https://mariadb.com/kb/en/create-event/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (96, 'MAX', 16, 'Syntax: MAX([DISTINCT] expr) Returns the maximum value of expr. MAX() may take a string argument; in such cases, it returns the maximum string value. See https://mariadb.com/kb/en/max/. The DISTINCT keyword can be used to find the maximum of the distinct values of expr, however, this produces the same result as omitting DISTINCT. MAX() returns NULL if there were no matching rows. URL: https://mariadb.com/kb/en/max/ ', 'MariaDB> SELECT student_name, MIN(test_score), MAX(test_score) -> FROM student -> GROUP BY student_name; ', 'https://mariadb.com/kb/en/max/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (98, '*', 4, 'Syntax: * Multiplication: URL: https://mariadb.com/kb/en/multiplication-operator/ ', 'MariaDB> SELECT 3*5; -> 15 MariaDB> SELECT 18014398509481984*18014398509481984.0; -> 324518553658426726783156020576256.0 MariaDB> SELECT 18014398509481984*18014398509481984; -> 0 ', 'https://mariadb.com/kb/en/multiplication-operator/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (102, 'ENDPOINT', 13, 'EndPoint(ls) Returns the Point that is the endpoint of the LineString value ls. URL: https://mariadb.com/kb/en/endpoint/ ', 'MariaDB> SET @ls = ''LineString(1 1,2 2,3 3)''; MariaDB> SELECT AsText(EndPoint(GeomFromText(@ls))); +-------------------------------------+ | AsText(EndPoint(GeomFromText(@ls))) | +-------------------------------------+ | POINT(3 3) | +-------------------------------------+ ', 'https://mariadb.com/kb/en/endpoint/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (103, 'COMPRESS', 12, 'Syntax: COMPRESS(string_to_compress) Compresses a string and returns the result as a binary string. This function requires MySQL to have been compiled with a compression library such as zlib. Otherwise, the return value is always NULL. The compressed string can be uncompressed with UNCOMPRESS(). URL: https://mariadb.com/kb/en/compress/ ', 'MariaDB> SELECT LENGTH(COMPRESS(REPEAT(''a'',1000))); -> 21 MariaDB> SELECT LENGTH(COMPRESS('''')); -> 0 MariaDB> SELECT LENGTH(COMPRESS(''a'')); -> 13 MariaDB> SELECT LENGTH(COMPRESS(REPEAT(''a'',16))); -> 15 ', 'https://mariadb.com/kb/en/compress/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (88, 'MATCH AGAINST', 37, 'Syntax: MATCH (col1,col2,...) AGAINST (expr [search_modifier]) MySQL has support for full-text indexing and searching: o A full-text index in MySQL is an index of type FULLTEXT. o Full-text indexes can be used only with MyISAM tables, and can be created only for CHAR, VARCHAR, or TEXT columns. o A FULLTEXT index definition can be given in the CREATE TABLE statement when a table is created, or added later using ALTER TABLE or CREATE INDEX. o For large data sets, it is much faster to load your data into a table that has no FULLTEXT index and then create the index after that, than to load data into a table that has an existing FULLTEXT index. Full-text searching is performed using MATCH() ... AGAINST syntax. MATCH() takes a comma-separated list that names the columns to be searched. AGAINST takes a string to search for, and an optional modifier that indicates what type of search to perform. The search string must be a literal string, not a variable or a column name. There are three types of full-text searches: o A natural language search interprets the search string as a phrase in natural human language (a phrase in free text). There are no special operators. The stopword list applies. In addition, words that are present in 50% or more of the rows are considered common and do not match. Full-text searches are natural language searches if the IN NATURAL LANGUAGE MODE modifier is given or if no modifier is given. For more information, see https://mariadb.com/kb/en/fulltext-index-overview#in-natural-language-mode . o A boolean search interprets the search string using the rules of a special query language. The string contains the words to search for. It can also contain operators that specify requirements such that a word must be present or absent in matching rows, or that it should be weighted higher or lower than usual. Common words such as "some" or "then" are stopwords and do not match if present in the search string. The IN BOOLEAN MODE modifier specifies a boolean search. For more information, see https://mariadb.com/kb/en/fulltext-index-overview#in-boolean-mode. o A query expansion search is a modification of a natural language search. The search string is used to perform a natural language search. Then words from the most relevant rows returned by the search are added to the search string and the search is done again. The query returns the rows from the second search. The IN NATURAL LANGUAGE MODE WITH QUERY EXPANSION or WITH QUERY EXPANSION modifier specifies a query expansion search. For more information, see https://mariadb.com/kb/en/fulltext-index-overview#with-query-expansion. URL: https://mariadb.com/kb/en/match-against/ ', 'MariaDB> SELECT id, body, MATCH (title,body) AGAINST -> (''Security implications of running MySQL as root'' -> IN NATURAL LANGUAGE MODE) AS score -> FROM articles WHERE MATCH (title,body) AGAINST -> (''Security implications of running MySQL as root'' -> IN NATURAL LANGUAGE MODE); +----+-------------------------------------+-----------------+ | id | body | score | +----+-------------------------------------+-----------------+ | 4 | 1. Never run mysqld as root. 2. ... | 1.5219271183014 | | 6 | When configured properly, MySQL ... | 1.3114095926285 | +----+-------------------------------------+-----------------+ 2 rows in set (0.00 sec) ', 'https://mariadb.com/kb/en/match-against/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (97, 'CREATE FUNCTION UDF', 21, 'Syntax: CREATE [AGGREGATE] FUNCTION function_name RETURNS {STRING|INTEGER|REAL|DECIMAL} SONAME shared_library_name A user-defined function (UDF) is a way to extend MySQL with a new function that works like a native (built-in) MySQL function such as ABS() or CONCAT(). function_name is the name that should be used in SQL statements to invoke the function. The RETURNS clause indicates the type of the function''s return value. DECIMAL is a legal value after RETURNS, but currently DECIMAL functions return string values and should be written like STRING functions. shared_library_name is the basename of the shared object file that contains the code that implements the function. The file must be located in the plugin directory. This directory is given by the value of the plugin_dir system variable. For more information, see http://dev.mysql.com/doc/refman/5.5/en/udf-compiling.html. To create a function, you must have the INSERT privilege for the mysql database. This is necessary because CREATE FUNCTION adds a row to the mysql.func system table that records the function''s name, type, and shared library name. If you do not have this table, you should run the mysql_upgrade command to create it. See https://mariadb.com/kb/en/mysql_upgrade/. URL: https://mariadb.com/kb/en/create-function-udf/ ', '', 'https://mariadb.com/kb/en/create-function-udf/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (105, 'COUNT', 16, 'Syntax: COUNT(expr) Returns a count of the number of non-NULL values of expr in the rows retrieved by a SELECT statement. The result is a BIGINT value. COUNT() returns 0 if there were no matching rows. URL: https://mariadb.com/kb/en/count/ ', 'MariaDB> SELECT student.student_name,COUNT(*) -> FROM student,course -> WHERE student.student_id=course.student_id -> GROUP BY student_name; ', 'https://mariadb.com/kb/en/count/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (106, 'HANDLER', 27, 'Syntax: HANDLER tbl_name OPEN [ [AS] alias] HANDLER tbl_name READ index_name { = | <= | >= | < | > } (value1,value2,...) [ WHERE where_condition ] [LIMIT ... ] HANDLER tbl_name READ index_name { FIRST | NEXT | PREV | LAST } [ WHERE where_condition ] [LIMIT ... ] HANDLER tbl_name READ { FIRST | NEXT } [ WHERE where_condition ] [LIMIT ... ] HANDLER tbl_name CLOSE The HANDLER statement provides direct access to table storage engine interfaces. It is available for MyISAM and InnoDB tables. URL: https://mariadb.com/kb/en/handler-commands/ ', '', 'https://mariadb.com/kb/en/handler-commands/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (107, 'MLINEFROMTEXT', 3, 'MLineFromText(wkt[,srid]), MultiLineStringFromText(wkt[,srid]) Constructs a MULTILINESTRING value using its WKT representation and SRID. URL: https://mariadb.com/kb/en/mlinefromtext/ ', '', 'https://mariadb.com/kb/en/mlinefromtext/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (108, 'GEOMCOLLFROMWKB', 32, 'GeomCollFromWKB(wkb[,srid]), GeometryCollectionFromWKB(wkb[,srid]) Constructs a GEOMETRYCOLLECTION value using its WKB representation and SRID. URL: https://mariadb.com/kb/en/geomcollfromwkb/ ', '', 'https://mariadb.com/kb/en/geomcollfromwkb/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (109, 'HELP_DATE', 9, 'This help information was generated from the MySQL 5.5 Reference Manual on: 2012-08-25 ', '', ''); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (110, 'RENAME TABLE', 39, 'Syntax: RENAME TABLE tbl_name TO new_tbl_name [, tbl_name2 TO new_tbl_name2] ... This statement renames one or more tables. The rename operation is done atomically, which means that no other session can access any of the tables while the rename is running. For example, if you have an existing table old_table, you can create another table new_table that has the same structure but is empty, and then replace the existing table with the empty one as follows (assuming that backup_table does not already exist): URL: https://mariadb.com/kb/en/rename-table/ ', 'CREATE TABLE new_table (...); RENAME TABLE old_table TO backup_table, new_table TO old_table; ', 'https://mariadb.com/kb/en/rename-table/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (99, 'TIMESTAMP', 22, 'TIMESTAMP A timestamp. The range is ''1970-01-01 00:00:01'' UTC to ''2038-01-19 03:14:07'' UTC. TIMESTAMP values are stored as the number of seconds since the epoch (''1970-01-01 00:00:00'' UTC). A TIMESTAMP cannot represent the value ''1970-01-01 00:00:00'' because that is equivalent to 0 seconds from the epoch and the value 0 is reserved for representing ''0000-00-00 00:00:00'', the "zero" TIMESTAMP value. Unless specified otherwise, the first TIMESTAMP column in a table is defined to be automatically set to the date and time of the most recent modification if not explicitly assigned a value. This makes TIMESTAMP useful for recording the timestamp of an INSERT or UPDATE operation. You can also set any TIMESTAMP column to the current date and time by assigning it a NULL value, unless it has been defined with the NULL attribute to permit NULL values. The automatic initialization and updating to the current date and time can be specified using DEFAULT CURRENT_TIMESTAMP and ON UPDATE CURRENT_TIMESTAMP clauses, as described in https://mariadb.com/kb/en/timestamp/. *Note*: The TIMESTAMP format that was used prior to MySQL 4.1 is not supported in MySQL 5.5; see MySQL 3.23, 4.0, 4.1 Reference Manual for information regarding the old format. URL: https://mariadb.com/kb/en/timestamp/ ', '', 'https://mariadb.com/kb/en/timestamp/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (100, 'DES_DECRYPT', 12, 'Syntax: DES_DECRYPT(crypt_str[,key_str]) Decrypts a string encrypted with DES_ENCRYPT(). If an error occurs, this function returns NULL. This function works only if MySQL has been configured with SSL support. See https://mariadb.com/kb/en/ssl-connections/. If no key_str argument is given, DES_DECRYPT() examines the first byte of the encrypted string to determine the DES key number that was used to encrypt the original string, and then reads the key from the DES key file to decrypt the message. For this to work, the user must have the SUPER privilege. The key file can be specified with the --des-key-file server option. If you pass this function a key_str argument, that string is used as the key for decrypting the message. If the crypt_str argument does not appear to be an encrypted string, MySQL returns the given crypt_str. URL: https://mariadb.com/kb/en/des_decrypt/ ', '', 'https://mariadb.com/kb/en/des_decrypt/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (101, 'CACHE INDEX', 26, 'Syntax: CACHE INDEX tbl_index_list [, tbl_index_list] ... [PARTITION (partition_list | ALL)] IN key_cache_name tbl_index_list: tbl_name [[INDEX|KEY] (index_name[, index_name] ...)] partition_list: partition_name[, partition_name][, ...] The CACHE INDEX statement assigns table indexes to a specific key cache. It is used only for MyISAM tables. After the indexes have been assigned, they can be preloaded into the cache if desired with LOAD INDEX INTO CACHE. The following statement assigns indexes from the tables t1, t2, and t3 to the key cache named hot_cache: MariaDB> CACHE INDEX t1, t2, t3 IN hot_cache; +---------+--------------------+----------+----------+ | Table | Op | Msg_type | Msg_text | +---------+--------------------+----------+----------+ | test.t1 | assign_to_keycache | status | OK | | test.t2 | assign_to_keycache | status | OK | | test.t3 | assign_to_keycache | status | OK | +---------+--------------------+----------+----------+ URL: https://mariadb.com/kb/en/cache-index/ ', '', 'https://mariadb.com/kb/en/cache-index/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (104, 'INSERT', 27, 'Syntax: INSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE] [INTO] tbl_name [(col_name,...)] {VALUES | VALUE} ({expr | DEFAULT},...),(...),... [ ON DUPLICATE KEY UPDATE col_name=expr [, col_name=expr] ... ] Or: INSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE] [INTO] tbl_name SET col_name={expr | DEFAULT}, ... [ ON DUPLICATE KEY UPDATE col_name=expr [, col_name=expr] ... ] Or: INSERT [LOW_PRIORITY | HIGH_PRIORITY] [IGNORE] [INTO] tbl_name [(col_name,...)] SELECT ... [ ON DUPLICATE KEY UPDATE col_name=expr [, col_name=expr] ... ] INSERT inserts new rows into an existing table. The INSERT ... VALUES and INSERT ... SET forms of the statement insert rows based on explicitly specified values. The INSERT ... SELECT form inserts rows selected from another table or tables. INSERT ... SELECT is discussed further in [HELP INSERT SELECT]. URL: https://mariadb.com/kb/en/insert/ ', '', 'https://mariadb.com/kb/en/insert/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (111, 'BOOLEAN', 22, 'BOOL, BOOLEAN These types are synonyms for TINYINT(1). A value of zero is considered false. Nonzero values are considered true: MariaDB> SELECT IF(0, ''true'', ''false''); +------------------------+ | IF(0, ''true'', ''false'') | +------------------------+ | false | +------------------------+ MariaDB> SELECT IF(1, ''true'', ''false''); +------------------------+ | IF(1, ''true'', ''false'') | +------------------------+ | true | +------------------------+ MariaDB> SELECT IF(2, ''true'', ''false''); +------------------------+ | IF(2, ''true'', ''false'') | +------------------------+ | true | +------------------------+ However, the values TRUE and FALSE are merely aliases for 1 and 0, respectively, as shown here: MariaDB> SELECT IF(0 = FALSE, ''true'', ''false''); +--------------------------------+ | IF(0 = FALSE, ''true'', ''false'') | +--------------------------------+ | true | +--------------------------------+ MariaDB> SELECT IF(1 = TRUE, ''true'', ''false''); +-------------------------------+ | IF(1 = TRUE, ''true'', ''false'') | +-------------------------------+ | true | +-------------------------------+ MariaDB> SELECT IF(2 = TRUE, ''true'', ''false''); +-------------------------------+ | IF(2 = TRUE, ''true'', ''false'') | +-------------------------------+ | false | +-------------------------------+ MariaDB> SELECT IF(2 = FALSE, ''true'', ''false''); +--------------------------------+ | IF(2 = FALSE, ''true'', ''false'') | +--------------------------------+ | false | +--------------------------------+ The last two statements display the results shown because 2 is equal to neither 1 nor 0. URL: https://mariadb.com/kb/en/boolean/ ', '', 'https://mariadb.com/kb/en/boolean/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (112, 'DEFAULT', 14, 'Syntax: DEFAULT(col_name) Returns the default value for a table column. An error results if the column has no default value. URL: https://mariadb.com/kb/en/default/ ', 'MariaDB> UPDATE t SET i = DEFAULT(i)+1 WHERE id < 100; ', 'https://mariadb.com/kb/en/default/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (113, 'MOD', 4, 'Syntax: MOD(N,M), N % M, N MOD M Modulo operation. Returns the remainder of N divided by M. URL: https://mariadb.com/kb/en/mod/ ', 'MariaDB> SELECT MOD(234, 10); -> 4 MariaDB> SELECT 253 % 7; -> 1 MariaDB> SELECT MOD(29,9); -> 2 MariaDB> SELECT 29 MOD 9; -> 2 ', 'https://mariadb.com/kb/en/mod/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (114, 'TINYTEXT', 22, 'TINYTEXT [CHARACTER SET charset_name] [COLLATE collation_name] A TEXT column with a maximum length of 255 (28 - 1) characters. The effective maximum length is less if the value contains multi-byte characters. Each TINYTEXT value is stored using a 1-byte length prefix that indicates the number of bytes in the value. URL: https://mariadb.com/kb/en/tinytext/ ', '', 'https://mariadb.com/kb/en/tinytext/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (116, 'DECODE', 12, 'Syntax: DECODE(crypt_str,pass_str) Decrypts the encrypted string crypt_str using pass_str as the password. crypt_str should be a string returned from ENCODE(). URL: https://mariadb.com/kb/en/decode/ ', '', 'https://mariadb.com/kb/en/decode/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (115, 'OPTIMIZE TABLE', 20, 'Syntax: OPTIMIZE [NO_WRITE_TO_BINLOG | LOCAL] TABLE tbl_name [, tbl_name] ... OPTIMIZE TABLE should be used if you have deleted a large part of a table or if you have made many changes to a table with variable-length rows (tables that have VARCHAR, VARBINARY, BLOB, or TEXT columns). Deleted rows are maintained in a linked list and subsequent INSERT operations reuse old row positions. You can use OPTIMIZE TABLE to reclaim the unused space and to defragment the data file. After extensive changes to a table, this statement may also improve performance of statements that use the table, sometimes significantly. This statement requires SELECT and INSERT privileges for the table. OPTIMIZE TABLE is supported for partitioned tables, and you can use ALTER TABLE ... OPTIMIZE PARTITION to optimize one or more partitions; for more information, see [HELP ALTER TABLE], and http://dev.mysql.com/doc/refman/5.5/en/partitioning-maintenance.html. URL: https://mariadb.com/kb/en/optimize-table/ ', '', 'https://mariadb.com/kb/en/optimize-table/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (117, '<=>', 18, 'Syntax: <=> NULL-safe equal. This operator performs an equality comparison like the = operator, but returns 1 rather than NULL if both operands are NULL, and 0 rather than NULL if one operand is NULL. URL: https://mariadb.com/kb/en/null-safe-equal/ ', 'MariaDB> SELECT 1 <=> 1, NULL <=> NULL, 1 <=> NULL; -> 1, 1, 0 MariaDB> SELECT 1 = 1, NULL = NULL, 1 = NULL; -> 1, NULL, NULL ', 'https://mariadb.com/kb/en/null-safe-equal/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (118, 'HELP STATEMENT', 28, 'Syntax: HELP ''search_string'' The HELP statement returns online information from the MySQL Reference manual. Its proper operation requires that the help tables in the mysql database be initialized with help topic information. The HELP statement searches the help tables for the given search string and displays the result of the search. The search string is not case sensitive. URL: https://mariadb.com/kb/en/help-command/ ', '', 'https://mariadb.com/kb/en/help-command/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (119, 'RESET', 26, 'Syntax: RESET reset_option [, reset_option] ... The RESET statement is used to clear the state of various server operations. You must have the RELOAD privilege to execute RESET. RESET acts as a stronger version of the FLUSH statement. See [HELP FLUSH]. The RESET statement causes an implicit commit. See https://mariadb.com/kb/en/sql-statements-that-cause-an-implicit-commit/. URL: https://mariadb.com/kb/en/reset/ ', '', 'https://mariadb.com/kb/en/reset/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (120, 'GET_LOCK', 14, 'Syntax: GET_LOCK(str,timeout) Tries to obtain a lock with a name given by the string str, using a timeout of timeout seconds. Returns 1 if the lock was obtained successfully, 0 if the attempt timed out (for example, because another client has previously locked the name), or NULL if an error occurred (such as running out of memory or the thread was killed with mysqladmin kill). If you have a lock obtained with GET_LOCK(), it is released when you execute RELEASE_LOCK(), execute a new GET_LOCK(), or your connection terminates (either normally or abnormally). Locks obtained with GET_LOCK() do not interact with transactions. That is, committing a transaction does not release any such locks obtained during the transaction. This function can be used to implement application locks or to simulate record locks. Names are locked on a server-wide basis. If a name has been locked by one client, GET_LOCK() blocks any request by another client for a lock with the same name. This enables clients that agree on a given lock name to use the name to perform cooperative advisory locking. But be aware that it also enables a client that is not among the set of cooperating clients to lock a name, either inadvertently or deliberately, and thus prevent any of the cooperating clients from locking that name. One way to reduce the likelihood of this is to use lock names that are database-specific or application-specific. For example, use lock names of the form db_name.str or app_name.str. URL: https://mariadb.com/kb/en/get_lock/ ', 'MariaDB> SELECT GET_LOCK(''lock1'',10); -> 1 MariaDB> SELECT IS_FREE_LOCK(''lock2''); -> 1 MariaDB> SELECT GET_LOCK(''lock2'',10); -> 1 MariaDB> SELECT RELEASE_LOCK(''lock2''); -> 1 MariaDB> SELECT RELEASE_LOCK(''lock1''); -> NULL ', 'https://mariadb.com/kb/en/get_lock/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (121, 'UCASE', 37, 'Syntax: UCASE(str) UCASE() is a synonym for UPPER(). URL: https://mariadb.com/kb/en/ucase/ ', '', 'https://mariadb.com/kb/en/ucase/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (122, 'SHOW BINLOG EVENTS', 26, 'Syntax: SHOW BINLOG EVENTS [IN ''log_name''] [FROM pos] [LIMIT [offset,] row_count] Shows the events in the binary log. If you do not specify ''log_name'', the first binary log is displayed. URL: https://mariadb.com/kb/en/show-binlog-events/ ', '', 'https://mariadb.com/kb/en/show-binlog-events/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (123, 'MPOLYFROMWKB', 32, 'MPolyFromWKB(wkb[,srid]), MultiPolygonFromWKB(wkb[,srid]) Constructs a MULTIPOLYGON value using its WKB representation and SRID. URL: https://mariadb.com/kb/en/mpolyfromwkb/ ', '', 'https://mariadb.com/kb/en/mpolyfromwkb/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (124, 'ITERATE', 23, 'Syntax: ITERATE label ITERATE can appear only within LOOP, REPEAT, and WHILE statements. ITERATE means "start the loop again." URL: https://mariadb.com/kb/en/iterate/ ', '', 'https://mariadb.com/kb/en/iterate/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (125, 'DO', 27, 'Syntax: DO expr [, expr] ... DO executes the expressions but does not return any results. In most respects, DO is shorthand for SELECT expr, ..., but has the advantage that it is slightly faster when you do not care about the result. DO is useful primarily with functions that have side effects, such as RELEASE_LOCK(). URL: https://mariadb.com/kb/en/do/ ', '', 'https://mariadb.com/kb/en/do/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (126, 'CURTIME', 31, 'Syntax: CURTIME() Returns the current time as a value in ''HH:MM:SS'' or HHMMSS.uuuuuu format, depending on whether the function is used in a string or numeric context. The value is expressed in the current time zone. URL: https://mariadb.com/kb/en/curtime/ ', 'MariaDB> SELECT CURTIME(); -> ''23:50:26'' MariaDB> SELECT CURTIME() + 0; -> 235026.000000 ', 'https://mariadb.com/kb/en/curtime/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (127, 'CHAR_LENGTH', 37, 'Syntax: CHAR_LENGTH(str) Returns the length of the string str, measured in characters. A multi-byte character counts as a single character. This means that for a string containing five 2-byte characters, LENGTH() returns 10, whereas CHAR_LENGTH() returns 5. URL: https://mariadb.com/kb/en/char_length/ ', '', 'https://mariadb.com/kb/en/char_length/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (128, 'BIGINT', 22, 'BIGINT[(M)] [UNSIGNED] [ZEROFILL] A large integer. The signed range is -9223372036854775808 to 9223372036854775807. The unsigned range is 0 to 18446744073709551615. SERIAL is an alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE. URL: https://mariadb.com/kb/en/bigint/ ', '', 'https://mariadb.com/kb/en/bigint/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (129, 'SET', 26, 'Syntax: SET variable_assignment [, variable_assignment] ... variable_assignment: user_var_name = expr | [GLOBAL | SESSION] system_var_name = expr | [@@global. | @@session. | @@]system_var_name = expr The SET statement assigns values to different types of variables that affect the operation of the server or your client. Older versions of MySQL employed SET OPTION, but this syntax is deprecated in favor of SET without OPTION. URL: https://mariadb.com/kb/en/set/ ', '', 'https://mariadb.com/kb/en/set/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (130, 'LOAD XML', 27, 'Syntax: LOAD XML [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE ''file_name'' [REPLACE | IGNORE] INTO TABLE [db_name.]tbl_name [CHARACTER SET charset_name] [ROWS IDENTIFIED BY ''<tagname>''] [IGNORE number {LINES | ROWS}] [(column_or_user_var,...)] [SET col_name = expr,...] The LOAD XML statement reads data from an XML file into a table. The file_name must be given as a literal string. The tagname in the optional ROWS IDENTIFIED BY clause must also be given as a literal string, and must be surrounded by angle brackets (< and >). LOAD XML acts as the complement of running the mysql client in XML output mode (that is, starting the client with the --xml option). To write data from a table to an XML file, use a command such as the following one from the system shell: shell> mysql --xml -e ''SELECT * FROM mytable'' > file.xml To read the file back into a table, use LOAD XML INFILE. By default, the <row> element is considered to be the equivalent of a database table row; this can be changed using the ROWS IDENTIFIED BY clause. This statement supports three different XML formats: o Column names as attributes and column values as attribute values: <row column1="value1" column2="value2" .../> o Column names as tags and column values as the content of these tags: <row> <column1>value1</column1> <column2>value2</column2> </row> o Column names are the name attributes of <field> tags, and values are the contents of these tags: <row> <field name=''column1''>value1</field> <field name=''column2''>value2</field> </row> This is the format used by other MySQL tools, such as mysqldump. All 3 formats can be used in the same XML file; the import routine automatically detects the format for each row and interprets it correctly. Tags are matched based on the tag or attribute name and the column name. The following clauses work essentially the same way for LOAD XML as they do for LOAD DATA: o LOW_PRIORITY or CONCURRENT o LOCAL o REPLACE or IGNORE o CHARACTER SET o (column_or_user_var,...) o SET See [HELP LOAD DATA], for more information about these clauses. The IGNORE number LINES or IGNORE number ROWS clause causes the first number rows in the XML file to be skipped. It is analogous to the LOAD DATA statement''s IGNORE ... LINES clause. URL: https://mariadb.com/kb/en/load-xml/ ', '', 'https://mariadb.com/kb/en/load-xml/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (131, 'CONV', 4, 'Syntax: CONV(N,from_base,to_base) Converts numbers between different number bases. Returns a string representation of the number N, converted from base from_base to base to_base. Returns NULL if any argument is NULL. The argument N is interpreted as an integer, but may be specified as an integer or a string. The minimum base is 2 and the maximum base is 36. If to_base is a negative number, N is regarded as a signed number. Otherwise, N is treated as unsigned. CONV() works with 64-bit precision. URL: https://mariadb.com/kb/en/conv/ ', 'MariaDB> SELECT CONV(''a'',16,2); -> ''1010'' MariaDB> SELECT CONV(''6E'',18,8); -> ''172'' MariaDB> SELECT CONV(-17,10,-18); -> ''-H'' MariaDB> SELECT CONV(10+''10''+''10''+0xa,10,10); -> ''40'' ', 'https://mariadb.com/kb/en/conv/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (132, 'DATE', 22, 'DATE A date. The supported range is ''1000-01-01'' to ''9999-12-31''. MySQL displays DATE values in ''YYYY-MM-DD'' format, but permits assignment of values to DATE columns using either strings or numbers. URL: https://mariadb.com/kb/en/date/ ', '', 'https://mariadb.com/kb/en/date/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (133, 'ASSIGN-VALUE', 15, 'Syntax: := Assignment operator. Causes the user variable on the left hand side of the operator to take on the value to its right. The value on the right hand side may be a literal value, another variable storing a value, or any legal expression that yields a scalar value, including the result of a query (provided that this value is a scalar value). You can perform multiple assignments in the same SET statement. You can perform multiple assignments in the same statement- Unlike =, the := operator is never interpreted as a comparison operator. This means you can use := in any valid SQL statement (not just in SET statements) to assign a value to a variable. URL: https://mariadb.com/kb/en/assignment-operator/ ', 'MariaDB> SELECT @var1, @var2; -> NULL, NULL MariaDB> SELECT @var1 := 1, @var2; -> 1, NULL MariaDB> SELECT @var1, @var2; -> 1, NULL MariaDB> SELECT @var1, @var2 := @var1; -> 1, 1 MariaDB> SELECT @var1, @var2; -> 1, 1 MariaDB> SELECT @var1:=COUNT(*) FROM t1; -> 4 MariaDB> SELECT @var1; -> 4 ', 'https://mariadb.com/kb/en/assignment-operator/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (134, 'SHOW OPEN TABLES', 26, 'Syntax: SHOW OPEN TABLES [{FROM | IN} db_name] [LIKE ''pattern'' | WHERE expr] SHOW OPEN TABLES lists the non-TEMPORARY tables that are currently open in the table cache. See http://dev.mysql.com/doc/refman/5.5/en/table-cache.html. The FROM clause, if present, restricts the tables shown to those present in the db_name database. The LIKE clause, if present, indicates which table names to match. The WHERE clause can be given to select rows using more general conditions, as discussed in https://mariadb.com/kb/en/extended-show/. URL: https://mariadb.com/kb/en/show-open-tables/ ', '', 'https://mariadb.com/kb/en/show-open-tables/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (135, 'EXTRACT', 31, 'Syntax: EXTRACT(unit FROM date) The EXTRACT() function uses the same kinds of unit specifiers as DATE_ADD() or DATE_SUB(), but extracts parts from the date rather than performing date arithmetic. URL: https://mariadb.com/kb/en/extract/ ', 'MariaDB> SELECT EXTRACT(YEAR FROM ''2009-07-02''); -> 2009 MariaDB> SELECT EXTRACT(YEAR_MONTH FROM ''2009-07-02 01:02:03''); -> 200907 MariaDB> SELECT EXTRACT(DAY_MINUTE FROM ''2009-07-02 01:02:03''); -> 20102 MariaDB> SELECT EXTRACT(MICROSECOND -> FROM ''2003-01-02 10:30:00.000123''); -> 123 ', 'https://mariadb.com/kb/en/extract/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (136, 'ENCRYPT', 12, 'Syntax: ENCRYPT(str[,salt]) Encrypts str using the Unix crypt() system call and returns a binary string. The salt argument must be a string with at least two characters or the result will be NULL. If no salt argument is given, a random value is used. URL: https://mariadb.com/kb/en/encrypt/ ', 'MariaDB> SELECT ENCRYPT(''hello''); -> ''VxuFAJXVARROc'' ', 'https://mariadb.com/kb/en/encrypt/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (139, 'OLD_PASSWORD', 12, 'Syntax: OLD_PASSWORD(str) OLD_PASSWORD() was added when the implementation of PASSWORD() was changed in MySQL 4.1 to improve security. OLD_PASSWORD() returns the value of the pre-4.1 implementation of PASSWORD() as a string, and is intended to permit you to reset passwords for any pre-4.1 clients that need to connect to your version 5.5 MySQL server without locking them out. See http://dev.mysql.com/doc/refman/5.1/en/password-hashing.html. As of MySQL 5.5.3, the return value is a nonbinary string in the connection character set. Before 5.5.3, the return value is a binary string. URL: https://mariadb.com/kb/en/old_password/ ', '', 'https://mariadb.com/kb/en/old_password/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (141, '||', 15, 'Syntax: OR, || Logical OR. When both operands are non-NULL, the result is 1 if any operand is nonzero, and 0 otherwise. With a NULL operand, the result is 1 if the other operand is nonzero, and NULL otherwise. If both operands are NULL, the result is NULL. URL: https://mariadb.com/kb/en/or/ ', 'MariaDB> SELECT 1 || 1; -> 1 MariaDB> SELECT 1 || 0; -> 1 MariaDB> SELECT 0 || 0; -> 0 MariaDB> SELECT 0 || NULL; -> NULL MariaDB> SELECT 1 || NULL; -> 1 ', 'https://mariadb.com/kb/en/or/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (137, 'SHOW STATUS', 26, 'Syntax: SHOW [GLOBAL | SESSION] STATUS [LIKE ''pattern'' | WHERE expr] SHOW STATUS provides server status information. This information also can be obtained using the mysqladmin extended-status command. The LIKE clause, if present, indicates which variable names to match. The WHERE clause can be given to select rows using more general conditions, as discussed in https://mariadb.com/kb/en/extended-show/. This statement does not require any privilege. It requires only the ability to connect to the server. With a LIKE clause, the statement displays only rows for those variables with names that match the pattern: MariaDB> SHOW STATUS LIKE ''Key%''; +--------------------+----------+ | Variable_name | Value | +--------------------+----------+ | Key_blocks_used | 14955 | | Key_read_requests | 96854827 | | Key_reads | 162040 | | Key_write_requests | 7589728 | | Key_writes | 3813196 | +--------------------+----------+ With the GLOBAL modifier, SHOW STATUS displays the status values for all connections to MySQL. With SESSION, it displays the status values for the current connection. If no modifier is present, the default is SESSION. LOCAL is a synonym for SESSION. Some status variables have only a global value. For these, you get the same value for both GLOBAL and SESSION. The scope for each status variable is listed at https://mariadb.com/kb/en/server-status-variables/. Each invocation of the SHOW STATUS statement uses an internal temporary table and increments the global Created_tmp_tables value. URL: https://mariadb.com/kb/en/show-status/ ', '', 'https://mariadb.com/kb/en/show-status/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (138, 'EXTRACTVALUE', 37, 'Syntax: ExtractValue(xml_frag, xpath_expr) ExtractValue() takes two string arguments, a fragment of XML markup xml_frag and an XPath expression xpath_expr (also known as a locator); it returns the text (CDATA) of the first text node which is a child of the elements or elements matched by the XPath expression. In MySQL 5.5, the XPath expression can contain at most 127 characters. (This limitation is lifted in MySQL 5.6.) Using this function is the equivalent of performing a match using the xpath_expr after appending /text(). In other words, ExtractValue(''<a><b>Sakila</b></a>'', ''/a/b'') and ExtractValue(''<a><b>Sakila</b></a>'', ''/a/b/text()'') produce the same result. If multiple matches are found, the content of the first child text node of each matching element is returned (in the order matched) as a single, space-delimited string. If no matching text node is found for the expression (including the implicit /text())---for whatever reason, as long as xpath_expr is valid, and xml_frag consists of elements which are properly nested and closed---an empty string is returned. No distinction is made between a match on an empty element and no match at all. This is by design. If you need to determine whether no matching element was found in xml_frag or such an element was found but contained no child text nodes, you should test the result of an expression that uses the XPath count() function. For example, both of these statements return an empty string, as shown here: MariaDB> SELECT ExtractValue(''<a><b/></a>'', ''/a/b''); +-------------------------------------+ | ExtractValue(''<a><b/></a>'', ''/a/b'') | +-------------------------------------+ | | +-------------------------------------+ 1 row in set (0.00 sec) MariaDB> SELECT ExtractValue(''<a><c/></a>'', ''/a/b''); +-------------------------------------+ | ExtractValue(''<a><c/></a>'', ''/a/b'') | +-------------------------------------+ | | +-------------------------------------+ 1 row in set (0.00 sec) However, you can determine whether there was actually a matching element using the following: MariaDB> SELECT ExtractValue(''<a><b/></a>'', ''count(/a/b)''); +-------------------------------------+ | ExtractValue(''<a><b/></a>'', ''count(/a/b)'') | +-------------------------------------+ | 1 | +-------------------------------------+ 1 row in set (0.00 sec) MariaDB> SELECT ExtractValue(''<a><c/></a>'', ''count(/a/b)''); +-------------------------------------+ | ExtractValue(''<a><c/></a>'', ''count(/a/b)'') | +-------------------------------------+ | 0 | +-------------------------------------+ 1 row in set (0.01 sec) *Important*: ExtractValue() returns only CDATA, and does not return any tags that might be contained within a matching tag, nor any of their content (see the result returned as val1 in the following example). URL: https://mariadb.com/kb/en/extractvalue/ ', 'MariaDB> SELECT -> ExtractValue(''<a>ccc<b>ddd</b></a>'', ''/a'') AS val1, -> ExtractValue(''<a>ccc<b>ddd</b></a>'', ''/a/b'') AS val2, -> ExtractValue(''<a>ccc<b>ddd</b></a>'', ''//b'') AS val3, -> ExtractValue(''<a>ccc<b>ddd</b></a>'', ''/b'') AS val4, -> ExtractValue(''<a>ccc<b>ddd</b><b>eee</b></a>'', ''//b'') AS val5; +------+------+------+------+---------+ | val1 | val2 | val3 | val4 | val5 | +------+------+------+------+---------+ | ccc | ddd | ddd | | ddd eee | +------+------+------+------+---------+ ', 'https://mariadb.com/kb/en/extractvalue/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (142, 'BIT_LENGTH', 37, 'Syntax: BIT_LENGTH(str) Returns the length of the string str in bits. URL: https://mariadb.com/kb/en/bit_length/ ', 'MariaDB> SELECT BIT_LENGTH(''text''); -> 32 ', 'https://mariadb.com/kb/en/bit_length/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (143, 'EXTERIORRING', 2, 'ExteriorRing(poly) Returns the exterior ring of the Polygon value poly as a LineString. URL: https://mariadb.com/kb/en/exteriorring/ ', 'MariaDB> SET @poly = -> ''Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))''; MariaDB> SELECT AsText(ExteriorRing(GeomFromText(@poly))); +-------------------------------------------+ | AsText(ExteriorRing(GeomFromText(@poly))) | +-------------------------------------------+ | LINESTRING(0 0,0 3,3 3,3 0,0 0) | +-------------------------------------------+ ', 'https://mariadb.com/kb/en/exteriorring/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (144, 'GEOMFROMWKB', 32, 'GeomFromWKB(wkb[,srid]), GeometryFromWKB(wkb[,srid]) Constructs a geometry value of any type using its WKB representation and SRID. URL: https://mariadb.com/kb/en/geomfromwkb/ ', '', 'https://mariadb.com/kb/en/geomfromwkb/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (147, 'BETWEEN AND', 18, 'Syntax: expr BETWEEN min AND max If expr is greater than or equal to min and expr is less than or equal to max, BETWEEN returns 1, otherwise it returns 0. This is equivalent to the expression (min <= expr AND expr <= max) if all the arguments are of the same type. Otherwise type conversion takes place according to the rules described in https://mariadb.com/kb/en/type-conversion/, but applied to all the three arguments. URL: https://mariadb.com/kb/en/between-and/ ', 'MariaDB> SELECT 2 BETWEEN 1 AND 3, 2 BETWEEN 3 and 1; -> 1, 0 MariaDB> SELECT 1 BETWEEN 2 AND 3; -> 0 MariaDB> SELECT ''b'' BETWEEN ''a'' AND ''c''; -> 1 MariaDB> SELECT 2 BETWEEN 2 AND ''3''; -> 1 MariaDB> SELECT 2 BETWEEN 2 AND ''x-3''; -> 0 ', 'https://mariadb.com/kb/en/between-and/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (148, 'MULTIPOLYGON', 24, 'MultiPolygon(poly1,poly2,...) Constructs a MultiPolygon value from a set of Polygon or WKB Polygon arguments. URL: https://mariadb.com/kb/en/multipolygon/ ', '', 'https://mariadb.com/kb/en/multipolygon/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (149, 'TIME_FORMAT', 31, 'Syntax: TIME_FORMAT(time,format) This is used like the DATE_FORMAT() function, but the format string may contain format specifiers only for hours, minutes, seconds, and microseconds. Other specifiers produce a NULL value or 0. URL: https://mariadb.com/kb/en/time_format/ ', 'MariaDB> SELECT TIME_FORMAT(''100:00:00'', ''%H %k %h %I %l''); -> ''100 100 04 04 4'' ', 'https://mariadb.com/kb/en/time_format/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (140, 'FORMAT', 37, 'Syntax: FORMAT(X,D[,locale]) Formats the number X to a format like ''#,###,###.##'', rounded to D decimal places, and returns the result as a string. If D is 0, the result has no decimal point or fractional part. The optional third parameter enables a locale to be specified to be used for the result number''s decimal point, thousands separator, and grouping between separators. Permissible locale values are the same as the legal values for the lc_time_names system variable (see https://mariadb.com/kb/en/server-locale/). If no locale is specified, the default is ''en_US''. URL: https://mariadb.com/kb/en/format/ ', 'MariaDB> SELECT FORMAT(12332.123456, 4); -> ''12,332.1235'' MariaDB> SELECT FORMAT(12332.1,4); -> ''12,332.1000'' MariaDB> SELECT FORMAT(12332.2,0); -> ''12,332'' MariaDB> SELECT FORMAT(12332.2,2,''de_DE''); -> ''12.332,20'' ', 'https://mariadb.com/kb/en/format/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (145, 'SHOW SLAVE HOSTS', 26, 'Syntax: SHOW SLAVE HOSTS Displays a list of replication slaves currently registered with the master. (Before MySQL 5.5.3, only slaves started with the --report-host=host_name option are visible in this list.) The list is displayed on any server (not just the master server). The output looks like this: MariaDB> SHOW SLAVE HOSTS; +------------+-----------+------+-----------+ | Server_id | Host | Port | Master_id | +------------+-----------+------+-----------+ | 192168010 | iconnect2 | 3306 | 192168011 | | 1921680101 | athena | 3306 | 192168011 | +------------+-----------+------+-----------+ o Server_id: The unique server ID of the slave server, as configured in the server''s option file, or on the command line with --server-id=value. o Host: The host name of the slave server, as configured in the server''s option file, or on the command line with --report-host=host_name. Note that this can differ from the machine name as configured in the operating system. o Port: The port the slave server is listening on. In MySQL 5.5.23 and later, a zero in this column means that the slave port (--report-port) was not set. Prior to MySQL 5.5.23, 3306 was used as the default in such cases (Bug #13333431). o Master_id: The unique server ID of the master server that the slave server is replicating from. Some MySQL versions report another variable, Rpl_recovery_rank. This variable was never used, and was removed in MySQL 5.5.3. (Bug #13963) URL: https://mariadb.com/kb/en/show-slave-hosts/ ', '', 'https://mariadb.com/kb/en/show-slave-hosts/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (150, 'LEFT', 37, 'Syntax: LEFT(str,len) Returns the leftmost len characters from the string str, or NULL if any argument is NULL. URL: https://mariadb.com/kb/en/left/ ', 'MariaDB> SELECT LEFT(''foobarbar'', 5); -> ''fooba'' ', 'https://mariadb.com/kb/en/left/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (151, 'FLUSH QUERY CACHE', 26, 'You can defragment the query cache to better utilize its memory with the FLUSH QUERY CACHE statement. The statement does not remove any queries from the cache. The RESET QUERY CACHE statement removes all query results from the query cache. The FLUSH TABLES statement also does this. URL: https://mariadb.com/kb/en/flush-query-cache/ ', '', 'https://mariadb.com/kb/en/flush-query-cache/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (152, 'SET DATA TYPE', 22, 'SET(''value1'',''value2'',...) [CHARACTER SET charset_name] [COLLATE collation_name] A set. A string object that can have zero or more values, each of which must be chosen from the list of values ''value1'', ''value2'', ... A SET column can have a maximum of 64 members. SET values are represented internally as integers. URL: https://mariadb.com/kb/en/set-data-type/ ', '', 'https://mariadb.com/kb/en/set-data-type/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (153, 'RAND', 4, 'Syntax: RAND(), RAND(N) Returns a random floating-point value v in the range 0 <= v < 1.0. If a constant integer argument N is specified, it is used as the seed value, which produces a repeatable sequence of column values. In the following example, note that the sequences of values produced by RAND(3) is the same both places where it occurs. URL: https://mariadb.com/kb/en/rand/ ', 'MariaDB> CREATE TABLE t (i INT); Query OK, 0 rows affected (0.42 sec) MariaDB> INSERT INTO t VALUES(1),(2),(3); Query OK, 3 rows affected (0.00 sec) Records: 3 Duplicates: 0 Warnings: 0 MariaDB> SELECT i, RAND() FROM t; +------+------------------+ | i | RAND() | +------+------------------+ | 1 | 0.61914388706828 | | 2 | 0.93845168309142 | | 3 | 0.83482678498591 | +------+------------------+ 3 rows in set (0.00 sec) MariaDB> SELECT i, RAND(3) FROM t; +------+------------------+ | i | RAND(3) | +------+------------------+ | 1 | 0.90576975597606 | | 2 | 0.37307905813035 | | 3 | 0.14808605345719 | +------+------------------+ 3 rows in set (0.00 sec) MariaDB> SELECT i, RAND() FROM t; +------+------------------+ | i | RAND() | +------+------------------+ | 1 | 0.35877890638893 | | 2 | 0.28941420772058 | | 3 | 0.37073435016976 | +------+------------------+ 3 rows in set (0.00 sec) MariaDB> SELECT i, RAND(3) FROM t; +------+------------------+ | i | RAND(3) | +------+------------------+ | 1 | 0.90576975597606 | | 2 | 0.37307905813035 | | 3 | 0.14808605345719 | +------+------------------+ 3 rows in set (0.01 sec) ', 'https://mariadb.com/kb/en/rand/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (154, 'RPAD', 37, 'Syntax: RPAD(str,len,padstr) Returns the string str, right-padded with the string padstr to a length of len characters. If str is longer than len, the return value is shortened to len characters. URL: https://mariadb.com/kb/en/rpad/ ', 'MariaDB> SELECT RPAD(''hi'',5,''?''); -> ''hi???'' MariaDB> SELECT RPAD(''hi'',1,''?''); -> ''h'' ', 'https://mariadb.com/kb/en/rpad/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (155, 'CREATE DATABASE', 39, 'Syntax: CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name [create_specification] ... create_specification: [DEFAULT] CHARACTER SET [=] charset_name | [DEFAULT] COLLATE [=] collation_name CREATE DATABASE creates a database with the given name. To use this statement, you need the CREATE privilege for the database. CREATE SCHEMA is a synonym for CREATE DATABASE. URL: https://mariadb.com/kb/en/create-database/ ', '', 'https://mariadb.com/kb/en/create-database/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (156, 'DEC', 22, 'DEC[(M[,D])] [UNSIGNED] [ZEROFILL], NUMERIC[(M[,D])] [UNSIGNED] [ZEROFILL], FIXED[(M[,D])] [UNSIGNED] [ZEROFILL] These types are synonyms for DECIMAL. The FIXED synonym is available for compatibility with other database systems. URL: https://mariadb.com/kb/en/dec-numeric-fixed/ ', '', 'https://mariadb.com/kb/en/dec-numeric-fixed/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (157, 'VAR_POP', 16, 'Syntax: VAR_POP(expr) Returns the population standard variance of expr. It considers rows as the whole population, not as a sample, so it has the number of rows as the denominator. You can also use VARIANCE(), which is equivalent but is not standard SQL. VAR_POP() returns NULL if there were no matching rows. URL: https://mariadb.com/kb/en/var_pop/ ', '', 'https://mariadb.com/kb/en/var_pop/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (158, 'ELT', 37, 'Syntax: ELT(N,str1,str2,str3,...) Returns str1 if N = 1, str2 if N = 2, and so on. Returns NULL if N is less than 1 or greater than the number of arguments. ELT() is the complement of FIELD(). URL: https://mariadb.com/kb/en/elt/.html ', 'MariaDB> SELECT ELT(1, ''ej'', ''Heja'', ''hej'', ''foo''); -> ''ej'' MariaDB> SELECT ELT(4, ''ej'', ''Heja'', ''hej'', ''foo''); -> ''foo'' ', 'https://mariadb.com/kb/en/elt/.html'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (146, 'START TRANSACTION', 8, 'Syntax: START TRANSACTION [WITH CONSISTENT SNAPSHOT] BEGIN [WORK] COMMIT [WORK] [AND [NO] CHAIN] [[NO] RELEASE] ROLLBACK [WORK] [AND [NO] CHAIN] [[NO] RELEASE] SET autocommit = {0 | 1} These statements provide control over use of transactions: o START TRANSACTION or BEGIN start a new transaction. o COMMIT commits the current transaction, making its changes permanent. o ROLLBACK rolls back the current transaction, canceling its changes. o SET autocommit disables or enables the default autocommit mode for the current session. By default, MySQL runs with autocommit mode enabled. This means that as soon as you execute a statement that updates (modifies) a table, MySQL stores the update on disk to make it permanent. The change cannot be rolled back. To disable autocommit mode implicitly for a single series of statements, use the START TRANSACTION statement: START TRANSACTION; SELECT @A:=SUM(salary) FROM table1 WHERE type=1; UPDATE table2 SET summary=@A WHERE type=1; COMMIT; With START TRANSACTION, autocommit remains disabled until you end the transaction with COMMIT or ROLLBACK. The autocommit mode then reverts to its previous state. You can also begin a transaction like this: START TRANSACTION WITH CONSISTENT SNAPSHOT; The WITH CONSISTENT SNAPSHOT option starts a consistent read for storage engines that are capable of it. This applies only to InnoDB. The effect is the same as issuing a START TRANSACTION followed by a SELECT from any InnoDB table. See http://dev.mysql.com/doc/refman/5.5/en/innodb-consistent-read.html. The WITH CONSISTENT SNAPSHOT option does not change the current transaction isolation level, so it provides a consistent snapshot only if the current isolation level is one that permits consistent read (REPEATABLE READ or SERIALIZABLE). *Important*: Many APIs used for writing MySQL client applications (such as JDBC) provide their own methods for starting transactions that can (and sometimes should) be used instead of sending a START TRANSACTION statement from the client. See http://dev.mysql.com/doc/refman/5.5/en/connectors-apis.html, or the documentation for your API, for more information. To disable autocommit mode explicitly, use the following statement: SET autocommit=0; After disabling autocommit mode by setting the autocommit variable to zero, changes to transaction-safe tables (such as those for InnoDB) are not made permanent immediately. You must use COMMIT to store your changes to disk or ROLLBACK to ignore the changes. autocommit is a session variable and must be set for each session. To disable autocommit mode for each new connection, see the description of the autocommit system variable at https://mariadb.com/kb/en/server-system-variables/. BEGIN and BEGIN WORK are supported as aliases of START TRANSACTION for initiating a transaction. START TRANSACTION is standard SQL syntax and is the recommended way to start an ad-hoc transaction. The BEGIN statement differs from the use of the BEGIN keyword that starts a BEGIN ... END compound statement. The latter does not begin a transaction. See [HELP BEGIN END]. *Note*: Within all stored programs (stored procedures and functions, triggers, and events), the parser treats BEGIN [WORK] as the beginning of a BEGIN ... END block. Begin a transaction in this context with START TRANSACTION instead. The optional WORK keyword is supported for COMMIT and ROLLBACK, as are the CHAIN and RELEASE clauses. CHAIN and RELEASE can be used for additional control over transaction completion. The value of the completion_type system variable determines the default completion behavior. See https://mariadb.com/kb/en/server-system-variables/. The AND CHAIN clause causes a new transaction to begin as soon as the current one ends, and the new transaction has the same isolation level as the just-terminated transaction. The RELEASE clause causes the server to disconnect the current client session after terminating the current transaction. Including the NO keyword suppresses CHAIN or RELEASE completion, which can be useful if the completion_type system variable is set to cause chaining or release completion by default. URL: https://mariadb.com/kb/en/start-transaction/ ', '', 'https://mariadb.com/kb/en/start-transaction/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (159, 'ALTER VIEW', 39, 'Syntax: ALTER [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}] [DEFINER = { user | CURRENT_USER }] [SQL SECURITY { DEFINER | INVOKER }] VIEW view_name [(column_list)] AS select_statement [WITH [CASCADED | LOCAL] CHECK OPTION] This statement changes the definition of a view, which must exist. The syntax is similar to that for CREATE VIEW and the effect is the same as for CREATE OR REPLACE VIEW. See [HELP CREATE VIEW]. This statement requires the CREATE VIEW and DROP privileges for the view, and some privilege for each column referred to in the SELECT statement. ALTER VIEW is permitted only to the definer or users with the SUPER privilege. URL: https://mariadb.com/kb/en/alter-view/ ', '', 'https://mariadb.com/kb/en/alter-view/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (161, '~', 19, 'Syntax: ~ Invert all bits. URL: https://mariadb.com/kb/en/3489/ ', 'MariaDB> SELECT 5 & ~1; -> 4 ', 'https://mariadb.com/kb/en/3489/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (162, 'TEXT', 22, 'TEXT[(M)] [CHARACTER SET charset_name] [COLLATE collation_name] A TEXT column with a maximum length of 65,535 (216 - 1) characters. The effective maximum length is less if the value contains multi-byte characters. Each TEXT value is stored using a 2-byte length prefix that indicates the number of bytes in the value. An optional length M can be given for this type. If this is done, MySQL creates the column as the smallest TEXT type large enough to hold values M characters long. URL: https://mariadb.com/kb/en/text/ ', '', 'https://mariadb.com/kb/en/text/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (163, 'CONCAT_WS', 37, 'Syntax: CONCAT_WS(separator,str1,str2,...) CONCAT_WS() stands for Concatenate With Separator and is a special form of CONCAT(). The first argument is the separator for the rest of the arguments. The separator is added between the strings to be concatenated. The separator can be a string, as can the rest of the arguments. If the separator is NULL, the result is NULL. URL: https://mariadb.com/kb/en/concat_ws/ ', 'MariaDB> SELECT CONCAT_WS('','',''First name'',''Second name'',''Last Name''); -> ''First name,Second name,Last Name'' MariaDB> SELECT CONCAT_WS('','',''First name'',NULL,''Last Name''); -> ''First name,Last Name'' ', 'https://mariadb.com/kb/en/concat_ws/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (165, 'ASIN', 4, 'Syntax: ASIN(X) Returns the arc sine of X, that is, the value whose sine is X. Returns NULL if X is not in the range -1 to 1. URL: https://mariadb.com/kb/en/asin/ ', 'MariaDB> SELECT ASIN(0.2); -> 0.20135792079033 MariaDB> SELECT ASIN(''foo''); +-------------+ | ASIN(''foo'') | +-------------+ | 0 | +-------------+ 1 row in set, 1 warning (0.00 sec) MariaDB> SHOW WARNINGS; +---------+------+-----------------------------------------+ | Level | Code | Message | +---------+------+-----------------------------------------+ | Warning | 1292 | Truncated incorrect DOUBLE value: ''foo'' | +---------+------+-----------------------------------------+ ', 'https://mariadb.com/kb/en/asin/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (166, 'SIGN', 4, 'Syntax: SIGN(X) Returns the sign of the argument as -1, 0, or 1, depending on whether X is negative, zero, or positive. URL: https://mariadb.com/kb/en/sign/ ', 'MariaDB> SELECT SIGN(-32); -> -1 MariaDB> SELECT SIGN(0); -> 0 MariaDB> SELECT SIGN(234); -> 1 ', 'https://mariadb.com/kb/en/sign/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (160, 'SHOW DATABASES', 26, 'Syntax: SHOW {DATABASES | SCHEMAS} [LIKE ''pattern'' | WHERE expr] SHOW DATABASES lists the databases on the MySQL server host. SHOW SCHEMAS is a synonym for SHOW DATABASES. The LIKE clause, if present, indicates which database names to match. The WHERE clause can be given to select rows using more general conditions, as discussed in https://mariadb.com/kb/en/extended-show/. You see only those databases for which you have some kind of privilege, unless you have the global SHOW DATABASES privilege. You can also get this list using the mysqlshow command. If the server was started with the --skip-show-database option, you cannot use this statement at all unless you have the SHOW DATABASES privilege. URL: https://mariadb.com/kb/en/show-databases/ ', '', 'https://mariadb.com/kb/en/show-databases/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (164, 'ROW_COUNT', 17, 'Syntax: ROW_COUNT() Before MySQL 5.5.5, ROW_COUNT() returns the number of rows changed, deleted, or inserted by the last statement if it was an UPDATE, DELETE, or INSERT. For other statements, the value may not be meaningful. As of MySQL 5.5.5, ROW_COUNT() returns a value as follows: o DDL statements: 0. This applies to statements such as CREATE TABLE or DROP TABLE. o DML statements other than SELECT: The number of affected rows. This applies to statements such as UPDATE, INSERT, or DELETE (as before), but now also to statements such as ALTER TABLE and LOAD DATA INFILE. o SELECT: -1 if the statement returns a result set, or the number of rows "affected" if it does not. For example, for SELECT * FROM t1, ROW_COUNT() returns -1. For SELECT * FROM t1 INTO OUTFILE ''file_name'', ROW_COUNT() returns the number of rows written to the file. o SIGNAL statements: 0. For UPDATE statements, the affected-rows value by default is the number of rows actually changed. If you specify the CLIENT_FOUND_ROWS flag to mysql_real_connect() when connecting to mysqld, the affected-rows value is the number of rows "found"; that is, matched by the WHERE clause. For REPLACE statements, the affected-rows value is 2 if the new row replaced an old row, because in this case, one row was inserted after the duplicate was deleted. For INSERT ... ON DUPLICATE KEY UPDATE statements, the affected-rows value is 1 if the row is inserted as a new row and 2 if an existing row is updated. The ROW_COUNT() value is similar to the value from the mysql_affected_rows() C API function and the row count that the mysql client displays following statement execution. URL: https://mariadb.com/kb/en/information-functions-row_count/ ', 'MariaDB> INSERT INTO t VALUES(1),(2),(3); Query OK, 3 rows affected (0.00 sec) Records: 3 Duplicates: 0 Warnings: 0 MariaDB> SELECT ROW_COUNT(); +-------------+ | ROW_COUNT() | +-------------+ | 3 | +-------------+ 1 row in set (0.00 sec) MariaDB> DELETE FROM t WHERE i IN(1,2); Query OK, 2 rows affected (0.00 sec) MariaDB> SELECT ROW_COUNT(); +-------------+ | ROW_COUNT() | +-------------+ | 2 | +-------------+ 1 row in set (0.00 sec) ', 'https://mariadb.com/kb/en/information-functions-row_count/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (167, 'SEC_TO_TIME', 31, 'Syntax: SEC_TO_TIME(seconds) Returns the seconds argument, converted to hours, minutes, and seconds, as a TIME value. The range of the result is constrained to that of the TIME data type. A warning occurs if the argument corresponds to a value outside that range. URL: https://mariadb.com/kb/en/sec_to_time/ ', 'MariaDB> SELECT SEC_TO_TIME(2378); -> ''00:39:38'' MariaDB> SELECT SEC_TO_TIME(2378) + 0; -> 3938 ', 'https://mariadb.com/kb/en/sec_to_time/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (168, 'FLOAT', 22, 'FLOAT[(M,D)] [UNSIGNED] [ZEROFILL] A small (single-precision) floating-point number. Permissible values are -3.402823466E+38 to -1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38. These are the theoretical limits, based on the IEEE standard. The actual range might be slightly smaller depending on your hardware or operating system. M is the total number of digits and D is the number of digits following the decimal point. If M and D are omitted, values are stored to the limits permitted by the hardware. A single-precision floating-point number is accurate to approximately 7 decimal places. UNSIGNED, if specified, disallows negative values. Using FLOAT might give you some unexpected problems because all calculations in MySQL are done with double precision. See https://mariadb.com/kb/en/floating-point-accuracy/. URL: https://mariadb.com/kb/en/float/ ', '', 'https://mariadb.com/kb/en/float/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (169, 'LOCATE', 37, 'Syntax: LOCATE(substr,str), LOCATE(substr,str,pos) The first syntax returns the position of the first occurrence of substring substr in string str. The second syntax returns the position of the first occurrence of substring substr in string str, starting at position pos. Returns 0 if substr is not in str. URL: https://mariadb.com/kb/en/locate/ ', 'MariaDB> SELECT LOCATE(''bar'', ''foobarbar''); -> 4 MariaDB> SELECT LOCATE(''xbar'', ''foobar''); -> 0 MariaDB> SELECT LOCATE(''bar'', ''foobarbar'', 5); -> 7 ', 'https://mariadb.com/kb/en/locate/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (171, 'CHARSET', 17, 'Syntax: CHARSET(str) Returns the character set of the string argument. URL: https://mariadb.com/kb/en/charset/ ', 'MariaDB> SELECT CHARSET(''abc''); -> ''latin1'' MariaDB> SELECT CHARSET(CONVERT(''abc'' USING utf8)); -> ''utf8'' MariaDB> SELECT CHARSET(USER()); -> ''utf8'' ', 'https://mariadb.com/kb/en/charset/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (172, 'SUBDATE', 31, 'Syntax: SUBDATE(date,INTERVAL expr unit), SUBDATE(expr,days) When invoked with the INTERVAL form of the second argument, SUBDATE() is a synonym for DATE_SUB(). For information on the INTERVAL unit argument, see the discussion for DATE_ADD(). MariaDB> SELECT DATE_SUB(''2008-01-02'', INTERVAL 31 DAY); -> ''2007-12-02'' MariaDB> SELECT SUBDATE(''2008-01-02'', INTERVAL 31 DAY); -> ''2007-12-02'' The second form enables the use of an integer value for days. In such cases, it is interpreted as the number of days to be subtracted from the date or datetime expression expr. MariaDB> SELECT SUBDATE(''2008-01-02 12:00:00'', 31); -> ''2007-12-02 12:00:00'' URL: https://mariadb.com/kb/en/subdate/ ', '', 'https://mariadb.com/kb/en/subdate/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (173, 'DAYOFYEAR', 31, 'Syntax: DAYOFYEAR(date) Returns the day of the year for date, in the range 1 to 366. URL: https://mariadb.com/kb/en/dayofyear/ ', 'MariaDB> SELECT DAYOFYEAR(''2007-02-03''); -> 34 ', 'https://mariadb.com/kb/en/dayofyear/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (174, '%', 4, 'Syntax: N % M, N MOD M Modulo operation. Returns the remainder of N divided by M. For more information, see the description for the MOD() function in https://mariadb.com/kb/en/mod/. URL: https://mariadb.com/kb/en/modulo-operator/ ', '', 'https://mariadb.com/kb/en/modulo-operator/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (175, 'LONGTEXT', 22, 'LONGTEXT [CHARACTER SET charset_name] [COLLATE collation_name] A TEXT column with a maximum length of 4,294,967,295 or 4GB (232 - 1) characters. The effective maximum length is less if the value contains multi-byte characters. The effective maximum length of LONGTEXT columns also depends on the configured maximum packet size in the client/server protocol and available memory. Each LONGTEXT value is stored using a 4-byte length prefix that indicates the number of bytes in the value. URL: https://mariadb.com/kb/en/longtext/ ', '', 'https://mariadb.com/kb/en/longtext/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (170, 'SHOW EVENTS', 26, 'Syntax: SHOW EVENTS [{FROM | IN} schema_name] [LIKE ''pattern'' | WHERE expr] This statement displays information about Event Manager events. It requires the EVENT privilege for the database from which the events are to be shown. In its simplest form, SHOW EVENTS lists all of the events in the current schema: MariaDB> SELECT CURRENT_USER(), SCHEMA(); +----------------+----------+ | CURRENT_USER() | SCHEMA() | +----------------+----------+ | jon@ghidora | myschema | +----------------+----------+ 1 row in set (0.00 sec) MariaDB> SHOW EVENTS\\G *************************** 1. row *************************** Db: myschema Name: e_daily Definer: jon@ghidora Time zone: SYSTEM Type: RECURRING Execute at: NULL Interval value: 10 Interval field: SECOND Starts: 2006-02-09 10:41:23 Ends: NULL Status: ENABLED Originator: 0 character_set_client: latin1 collation_connection: latin1_swedish_ci Database Collation: latin1_swedish_ci To see events for a specific schema, use the FROM clause. For example, to see events for the test schema, use the following statement: SHOW EVENTS FROM test; The LIKE clause, if present, indicates which event names to match. The WHERE clause can be given to select rows using more general conditions, as discussed in https://mariadb.com/kb/en/extended-show/. URL: https://mariadb.com/kb/en/show-events/ ', '', 'https://mariadb.com/kb/en/show-events/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (176, 'KILL', 26, 'Syntax: KILL [CONNECTION | QUERY] thread_id Each connection to mysqld runs in a separate thread. You can see which threads are running with the SHOW PROCESSLIST statement and kill a thread with the KILL thread_id statement. KILL permits an optional CONNECTION or QUERY modifier: o KILL CONNECTION is the same as KILL with no modifier: It terminates the connection associated with the given thread_id. o KILL QUERY terminates the statement that the connection is currently executing, but leaves the connection itself intact. If you have the PROCESS privilege, you can see all threads. If you have the SUPER privilege, you can kill all threads and statements. Otherwise, you can see and kill only your own threads and statements. You can also use the mysqladmin processlist and mysqladmin kill commands to examine and kill threads. *Note*: You cannot use KILL with the Embedded MySQL Server library because the embedded server merely runs inside the threads of the host application. It does not create any connection threads of its own. URL: https://mariadb.com/kb/en/data-manipulation-kill-connection-query/ ', '', 'https://mariadb.com/kb/en/data-manipulation-kill-connection-query/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (177, 'DISJOINT', 30, 'Disjoint(g1,g2) Returns 1 or 0 to indicate whether g1 is spatially disjoint from (does not intersect) g2. URL: https://mariadb.com/kb/en/disjoint/ ', '', 'https://mariadb.com/kb/en/disjoint/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (178, 'ASTEXT', 3, 'AsText(g), AsWKT(g) Converts a value in internal geometry format to its WKT representation and returns the string result. URL: https://mariadb.com/kb/en/astext/ ', 'MariaDB> SET @g = ''LineString(1 1,2 2,3 3)''; MariaDB> SELECT AsText(GeomFromText(@g)); +--------------------------+ | AsText(GeomFromText(@g)) | +--------------------------+ | LINESTRING(1 1,2 2,3 3) | +--------------------------+ ', 'https://mariadb.com/kb/en/astext/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (179, 'LPAD', 37, 'Syntax: LPAD(str,len,padstr) Returns the string str, left-padded with the string padstr to a length of len characters. If str is longer than len, the return value is shortened to len characters. URL: https://mariadb.com/kb/en/lpad/ ', 'MariaDB> SELECT LPAD(''hi'',4,''??''); -> ''??hi'' MariaDB> SELECT LPAD(''hi'',1,''??''); -> ''h'' ', 'https://mariadb.com/kb/en/lpad/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (180, 'DECLARE CONDITION', 23, 'Syntax: DECLARE condition_name CONDITION FOR condition_value condition_value: mysql_error_code | SQLSTATE [VALUE] sqlstate_value The DECLARE ... CONDITION statement declares a named error condition, associating a name with a condition that needs specific handling. The name can be referred to in a subsequent DECLARE ... HANDLER statement (see [HELP DECLARE HANDLER]). Condition declarations must appear before cursor or handler declarations. The condition_value for DECLARE ... CONDITION can be a MySQL error code (a number) or an SQLSTATE value (a 5-character string literal). You should not use MySQL error code 0 or SQLSTATE values that begin with ''00'', because those indicate success rather than an error condition. For a list of MySQL error codes and SQLSTATE values, see https://mariadb.com/kb/en/mariadb-error-codes/. URL: https://mariadb.com/kb/en/declare-condition/ ', '', 'https://mariadb.com/kb/en/declare-condition/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (181, 'OVERLAPS', 30, 'Overlaps(g1,g2) Returns 1 or 0 to indicate whether g1 spatially overlaps g2. The term spatially overlaps is used if two geometries intersect and their intersection results in a geometry of the same dimension but not equal to either of the given geometries. URL: https://mariadb.com/kb/en/overlaps/ ', '', 'https://mariadb.com/kb/en/overlaps/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (182, 'SET GLOBAL SQL_SLAVE_SKIP_COUNTER', 8, 'Syntax: SET GLOBAL sql_slave_skip_counter = N This statement skips the next N events from the master. This is useful for recovering from replication stops caused by a statement. This statement is valid only when the slave threads are not running. Otherwise, it produces an error. URL: https://mariadb.com/kb/en/set-global-sql_slave_skip_counter/ ', '', 'https://mariadb.com/kb/en/set-global-sql_slave_skip_counter/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (183, 'NUMGEOMETRIES', 25, 'NumGeometries(gc) Returns the number of geometries in the GeometryCollection value gc. URL: https://mariadb.com/kb/en/numgeometries/ ', 'MariaDB> SET @gc = ''GeometryCollection(Point(1 1),LineString(2 2, 3 3))''; MariaDB> SELECT NumGeometries(GeomFromText(@gc)); +----------------------------------+ | NumGeometries(GeomFromText(@gc)) | +----------------------------------+ | 2 | +----------------------------------+ ', 'https://mariadb.com/kb/en/numgeometries/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (184, 'MONTHNAME', 31, 'Syntax: MONTHNAME(date) Returns the full name of the month for date. The language used for the name is controlled by the value of the lc_time_names system variable (https://mariadb.com/kb/en/server-locale/). URL: https://mariadb.com/kb/en/monthname/ ', 'MariaDB> SELECT MONTHNAME(''2008-02-03''); -> ''February'' ', 'https://mariadb.com/kb/en/monthname/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (185, 'CHANGE MASTER TO', 8, 'Syntax: CHANGE MASTER TO option [, option] ... option: MASTER_BIND = ''interface_name'' | MASTER_HOST = ''host_name'' | MASTER_USER = ''user_name'' | MASTER_PASSWORD = ''password'' | MASTER_PORT = port_num | MASTER_CONNECT_RETRY = interval | MASTER_HEARTBEAT_PERIOD = interval | MASTER_LOG_FILE = ''master_log_name'' | MASTER_LOG_POS = master_log_pos | RELAY_LOG_FILE = ''relay_log_name'' | RELAY_LOG_POS = relay_log_pos | MASTER_SSL = {0|1} | MASTER_SSL_CA = ''ca_file_name'' | MASTER_SSL_CAPATH = ''ca_directory_name'' | MASTER_SSL_CERT = ''cert_file_name'' | MASTER_SSL_KEY = ''key_file_name'' | MASTER_SSL_CIPHER = ''cipher_list'' | MASTER_SSL_VERIFY_SERVER_CERT = {0|1} | IGNORE_SERVER_IDS = (server_id_list) server_id_list: [server_id [, server_id] ... ] CHANGE MASTER TO changes the parameters that the slave server uses for connecting to the master server, for reading the master binary log, and reading the slave relay log. It also updates the contents of the master.info and relay-log.info files. To use CHANGE MASTER TO, the slave replication threads must be stopped (use STOP SLAVE if necessary). Options not specified retain their value, except as indicated in the following discussion. Thus, in most cases, there is no need to specify options that do not change. For example, if the password to connect to your MySQL master has changed, you just need to issue these statements to tell the slave about the new password: STOP SLAVE; -- if replication was running CHANGE MASTER TO MASTER_PASSWORD=''new3cret''; START SLAVE; -- if you want to restart replication MASTER_HOST, MASTER_USER, MASTER_PASSWORD, and MASTER_PORT provide information to the slave about how to connect to its master: o MASTER_HOST and MASTER_PORT are the host name (or IP address) of the master host and its TCP/IP port. *Note*: Replication cannot use Unix socket files. You must be able to connect to the master MySQL server using TCP/IP. If you specify the MASTER_HOST or MASTER_PORT option, the slave assumes that the master server is different from before (even if the option value is the same as its current value.) In this case, the old values for the master binary log file name and position are considered no longer applicable, so if you do not specify MASTER_LOG_FILE and MASTER_LOG_POS in the statement, MASTER_LOG_FILE='''' and MASTER_LOG_POS=4 are silently appended to it. Setting MASTER_HOST='''' (that is, setting its value explicitly to an empty string) is not the same as not setting MASTER_HOST at all. Beginning with MySQL 5.5, trying to set MASTER_HOST to an empty string fails with an error. Previously, setting MASTER_HOST to an empty string caused START SLAVE subsequently to fail. (Bug #28796) o MASTER_USER and MASTER_PASSWORD are the user name and password of the account to use for connecting to the master. In MySQL 5.5.20 and later, MASTER_USER cannot be made empty; setting MASTER_USER = '''' or leaving it unset when setting a value for for MASTER_PASSWORD causes an error (Bug #13427949). Currently, a password used for a replication slave account is effectively limited to 32 characters in length; the password can be longer, but any excess characters are truncated. This is not due to any limit imposed by the MySQL Server generally, but rather is an issue specific to MySQL Replication. (For more information, see Bug #43439.) The text of a running CHANGE MASTER TO statement, including values for MASTER_USER and MASTER_PASSWORD, can be seen in the output of a concurrent SHOW PROCESSLIST statement. The MASTER_SSL_xxx options provide information about using SSL for the connection. They correspond to the --ssl-xxx options described in https://mariadb.com/kb/en/ssl-server-system-variables/, and http://dev.mysql.com/doc/refman/5.5/en/replication-solutions-ssl.html. These options can be changed even on slaves that are compiled without SSL support. They are saved to the master.info file, but are ignored if the slave does not have SSL support enabled. MASTER_CONNECT_RETRY specifies how many seconds to wait between connect retries. The default is 60. The number of reconnection attempts is limited by the --master-retry-count server option; for more information, see https://mariadb.com/kb/en/replication-and-binary-log-server-system-variables/. MASTER_HEARTBEAT_PERIOD sets the interval in seconds between replication heartbeats. Whenever the master''s binary log is updated with an event, the waiting period for the next heartbeat is reset. interval is a decimal value having the range 0 to 4294967 seconds and a resolution in milliseconds; the smallest nonzero value is 0.001. Heartbeats are sent by the master only if there are no unsent events in the binary log file for a period longer than interval. Setting interval to 0 disables heartbeats altogether. The default value for interval is equal to the value of slave_net_timeout divided by 2. Setting @@global.slave_net_timeout to a value less than that of the current heartbeat interval results in a warning being issued. The effect of issuing RESET SLAVE on the heartbeat interval is to reset it to the default value. MASTER_LOG_FILE and MASTER_LOG_POS are the coordinates at which the slave I/O thread should begin reading from the master the next time the thread starts. RELAY_LOG_FILE and RELAY_LOG_POS are the coordinates at which the slave SQL thread should begin reading from the relay log the next time the thread starts. If you specify either of MASTER_LOG_FILE or MASTER_LOG_POS, you cannot specify RELAY_LOG_FILE or RELAY_LOG_POS. If neither of MASTER_LOG_FILE or MASTER_LOG_POS is specified, the slave uses the last coordinates of the slave SQL thread before CHANGE MASTER TO was issued. This ensures that there is no discontinuity in replication, even if the slave SQL thread was late compared to the slave I/O thread, when you merely want to change, say, the password to use. CHANGE MASTER TO deletes all relay log files and starts a new one, unless you specify RELAY_LOG_FILE or RELAY_LOG_POS. In that case, relay log files are kept; the relay_log_purge global variable is set silently to 0. Prior to MySQL 5.5, RELAY_LOG_FILE required an absolute path. In MySQL 5.5, the path can be relative, in which case the path is assumed to be relative to the slave''s data directory. (Bug #12190) IGNORE_SERVER_IDS was added in MySQL 5.5. This option takes a comma-separated list of 0 or more server IDs. Events originating from the corresponding servers are ignored, with the exception of log rotation and deletion events, which are still recorded in the relay log. In circular replication, the originating server normally acts as the terminator of its own events, so that they are not applied more than once. Thus, this option is useful in circular replication when one of the servers in the circle is removed. Suppose that you have a circular replication setup with 4 servers, having server IDs 1, 2, 3, and 4, and server 3 fails. When bridging the gap by starting replication from server 2 to server 4, you can include IGNORE_SERVER_IDS = (3) in the CHANGE MASTER TO statement that you issue on server 4 to tell it to use server 2 as its master instead of server 3. Doing so causes it to ignore and not to propagate any statements that originated with the server that is no longer in use. If a CHANGE MASTER TO statement is issued without any IGNORE_SERVER_IDS option, any existing list is preserved; RESET SLAVE also has no effect on the server ID list. To clear the list of ignored servers, it is necessary to use the option with an empty list: CHANGE MASTER TO IGNORE_SERVER_IDS = (); If IGNORE_SERVER_IDS contains the server''s own ID and the server was started with the --replicate-same-server-id option enabled, an error results. Also beginning with MySQL 5.5, the master.info file and the output of SHOW SLAVE STATUS are extended to provide the list of servers that are currently ignored. For more information, see https://mariadb.com/kb/en/show-slave-status/, and [HELP SHOW SLAVE STATUS]. Beginning with MySQL 5.5.5, invoking CHANGE MASTER TO causes the previous values for MASTER_HOST, MASTER_PORT, MASTER_LOG_FILE, and MASTER_LOG_POS to be written to the error log, along with other information about the slave''s state prior to execution. CHANGE MASTER TO is useful for setting up a slave when you have the snapshot of the master and have recorded the master binary log coordinates corresponding to the time of the snapshot. After loading the snapshot into the slave to synchronize it to the slave, you can run CHANGE MASTER TO MASTER_LOG_FILE=''log_name'', MASTER_LOG_POS=log_pos on the slave to specify the coordinates at which the slave should begin reading the master binary log. The following example changes the master server the slave uses and establishes the master binary log coordinates from which the slave begins reading. This is used when you want to set up the slave to replicate the master: CHANGE MASTER TO MASTER_HOST=''master2.mycompany.com'', MASTER_USER=''replication'', MASTER_PASSWORD=''bigs3cret'', MASTER_PORT=3306, MASTER_LOG_FILE=''master2-bin.001'', MASTER_LOG_POS=4, MASTER_CONNECT_RETRY=10; The next example shows an operation that is less frequently employed. It is used when the slave has relay log files that you want it to execute again for some reason. To do this, the master need not be reachable. You need only use CHANGE MASTER TO and start the SQL thread (START SLAVE SQL_THREAD): CHANGE MASTER TO RELAY_LOG_FILE=''slave-relay-bin.006'', RELAY_LOG_POS=4025; URL: https://mariadb.com/kb/en/change-master-to/ ', '', 'https://mariadb.com/kb/en/change-master-to/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (186, 'DROP DATABASE', 39, 'Syntax: DROP {DATABASE | SCHEMA} [IF EXISTS] db_name DROP DATABASE drops all tables in the database and deletes the database. Be very careful with this statement! To use DROP DATABASE, you need the DROP privilege on the database. DROP SCHEMA is a synonym for DROP DATABASE. *Important*: When a database is dropped, user privileges on the database are not automatically dropped. See [HELP GRANT]. IF EXISTS is used to prevent an error from occurring if the database does not exist. URL: https://mariadb.com/kb/en/drop-database/ ', '', 'https://mariadb.com/kb/en/drop-database/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (187, 'MBREQUAL', 6, 'MBREqual(g1,g2) Returns 1 or 0 to indicate whether the Minimum Bounding Rectangles of the two geometries g1 and g2 are the same. URL: https://mariadb.com/kb/en/mbrequal/ ', '', 'https://mariadb.com/kb/en/mbrequal/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (188, 'TIMESTAMP FUNCTION', 31, 'Syntax: TIMESTAMP(expr), TIMESTAMP(expr1,expr2) With a single argument, this function returns the date or datetime expression expr as a datetime value. With two arguments, it adds the time expression expr2 to the date or datetime expression expr1 and returns the result as a datetime value. URL: https://mariadb.com/kb/en/timestamp-function/ ', 'MariaDB> SELECT TIMESTAMP(''2003-12-31''); -> ''2003-12-31 00:00:00'' MariaDB> SELECT TIMESTAMP(''2003-12-31 12:00:00'',''12:00:00''); -> ''2004-01-01 00:00:00'' ', 'https://mariadb.com/kb/en/timestamp-function/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (189, 'PROCEDURE ANALYSE', 33, 'Syntax: ANALYSE([max_elements[,max_memory]]) ANALYSE() examines the result from a query and returns an analysis of the results that suggests optimal data types for each column that may help reduce table sizes. To obtain this analysis, append PROCEDURE ANALYSE to the end of a SELECT statement: SELECT ... FROM ... WHERE ... PROCEDURE ANALYSE([max_elements,[max_memory]]) For example: SELECT col1, col2 FROM table1 PROCEDURE ANALYSE(10, 2000); The results show some statistics for the values returned by the query, and propose an optimal data type for the columns. This can be helpful for checking your existing tables, or after importing new data. You may need to try different settings for the arguments so that PROCEDURE ANALYSE() does not suggest the ENUM data type when it is not appropriate. The arguments are optional and are used as follows: o max_elements (default 256) is the maximum number of distinct values that ANALYSE() notices per column. This is used by ANALYSE() to check whether the optimal data type should be of type ENUM; if there are more than max_elements distinct values, then ENUM is not a suggested type. o max_memory (default 8192) is the maximum amount of memory that ANALYSE() should allocate per column while trying to find all distinct values. URL: https://mariadb.com/kb/en/procedure-analyse/ ', '', 'https://mariadb.com/kb/en/procedure-analyse/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (190, 'HELP_VERSION', 9, 'This help information was generated from the MySQL 5.5 Reference Manual on: 2012-08-25 (revision: 31914) This information applies to MySQL 5.5 through 5.5.29. ', '', ''); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (191, 'CHARACTER_LENGTH', 37, 'Syntax: CHARACTER_LENGTH(str) CHARACTER_LENGTH() is a synonym for CHAR_LENGTH(). URL: https://mariadb.com/kb/en/character_length/ ', '', 'https://mariadb.com/kb/en/character_length/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (192, 'SHOW GRANTS', 26, 'Syntax: SHOW GRANTS [FOR user] This statement lists the GRANT statement or statements that must be issued to duplicate the privileges that are granted to a MySQL user account. The account is named using the same format as for the GRANT statement; for example, ''jeffrey''@''localhost''. If you specify only the user name part of the account name, a host name part of ''%'' is used. For additional information about specifying account names, see [HELP GRANT]. MariaDB> SHOW GRANTS FOR ''root''@''localhost''; +---------------------------------------------------------------------+ | Grants for root@localhost | +---------------------------------------------------------------------+ | GRANT ALL PRIVILEGES ON *.* TO ''root''@''localhost'' WITH GRANT OPTION | +---------------------------------------------------------------------+ To list the privileges granted to the account that you are using to connect to the server, you can use any of the following statements: SHOW GRANTS; SHOW GRANTS FOR CURRENT_USER; SHOW GRANTS FOR CURRENT_USER(); If SHOW GRANTS FOR CURRENT_USER (or any of the equivalent syntaxes) is used in DEFINER context, such as within a stored procedure that is defined with SQL SECURITY DEFINER), the grants displayed are those of the definer and not the invoker. URL: https://mariadb.com/kb/en/show-grants/ ', '', 'https://mariadb.com/kb/en/show-grants/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (193, 'SHOW PRIVILEGES', 26, 'Syntax: SHOW PRIVILEGES SHOW PRIVILEGES shows the list of system privileges that the MySQL server supports. The exact list of privileges depends on the version of your server. URL: https://mariadb.com/kb/en/show-privileges/ ', '', 'https://mariadb.com/kb/en/show-privileges/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (194, 'CREATE TABLESPACE', 39, 'Syntax: CREATE TABLESPACE tablespace_name ADD DATAFILE ''file_name'' USE LOGFILE GROUP logfile_group [EXTENT_SIZE [=] extent_size] [INITIAL_SIZE [=] initial_size] [AUTOEXTEND_SIZE [=] autoextend_size] [MAX_SIZE [=] max_size] [NODEGROUP [=] nodegroup_id] [WAIT] [COMMENT [=] comment_text] ENGINE [=] engine_name This statement is used with NDB cluster, which is not supported by MariaDB.', '', 'https://mariadb.com/kb/en/create-tablespace/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (195, 'INSERT FUNCTION', 37, 'Syntax: INSERT(str,pos,len,newstr) Returns the string str, with the substring beginning at position pos and len characters long replaced by the string newstr. Returns the original string if pos is not within the length of the string. Replaces the rest of the string from position pos if len is not within the length of the rest of the string. Returns NULL if any argument is NULL. URL: https://mariadb.com/kb/en/insert-function/ ', 'MariaDB> SELECT INSERT(''Quadratic'', 3, 4, ''What''); -> ''QuWhattic'' MariaDB> SELECT INSERT(''Quadratic'', -1, 4, ''What''); -> ''Quadratic'' MariaDB> SELECT INSERT(''Quadratic'', 3, 100, ''What''); -> ''QuWhat'' ', 'https://mariadb.com/kb/en/insert-function/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (196, 'CRC32', 4, 'Syntax: CRC32(expr) Computes a cyclic redundancy check value and returns a 32-bit unsigned value. The result is NULL if the argument is NULL. The argument is expected to be a string and (if possible) is treated as one if it is not. URL: https://mariadb.com/kb/en/crc32/ ', 'MariaDB> SELECT CRC32(''MySQL''); -> 3259397556 MariaDB> SELECT CRC32(''mysql''); -> 2501908538 ', 'https://mariadb.com/kb/en/crc32/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (197, 'XOR', 15, 'Syntax: XOR Logical XOR. Returns NULL if either operand is NULL. For non-NULL operands, evaluates to 1 if an odd number of operands is nonzero, otherwise 0 is returned. URL: https://mariadb.com/kb/en/xor/ ', 'MariaDB> SELECT 1 XOR 1; -> 0 MariaDB> SELECT 1 XOR 0; -> 1 MariaDB> SELECT 1 XOR NULL; -> NULL MariaDB> SELECT 1 XOR 1 XOR 1; -> 1 ', 'https://mariadb.com/kb/en/xor/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (198, 'STARTPOINT', 13, 'StartPoint(ls) Returns the Point that is the start point of the LineString value ls. URL: https://mariadb.com/kb/en/startpoint/ ', 'MariaDB> SET @ls = ''LineString(1 1,2 2,3 3)''; MariaDB> SELECT AsText(StartPoint(GeomFromText(@ls))); +---------------------------------------+ | AsText(StartPoint(GeomFromText(@ls))) | +---------------------------------------+ | POINT(1 1) | +---------------------------------------+ ', 'https://mariadb.com/kb/en/startpoint/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (201, 'MPOLYFROMTEXT', 3, 'MPolyFromText(wkt[,srid]), MultiPolygonFromText(wkt[,srid]) Constructs a MULTIPOLYGON value using its WKT representation and SRID. URL: https://mariadb.com/kb/en/mpolyfromtext/ ', '', 'https://mariadb.com/kb/en/mpolyfromtext/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (202, 'MBRINTERSECTS', 6, 'MBRIntersects(g1,g2) Returns 1 or 0 to indicate whether the Minimum Bounding Rectangles of the two geometries g1 and g2 intersect. URL: https://mariadb.com/kb/en/mbrintersects/ ', '', 'https://mariadb.com/kb/en/mbrintersects/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (203, 'BIT_OR', 16, 'Syntax: BIT_OR(expr) Returns the bitwise OR of all bits in expr. The calculation is performed with 64-bit (BIGINT) precision. URL: https://mariadb.com/kb/en/bit_or/ ', '', 'https://mariadb.com/kb/en/bit_or/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (199, 'GRANT', 10, 'Syntax: GRANT priv_type [(column_list)] [, priv_type [(column_list)]] ... ON [object_type] priv_level TO user_specification [, user_specification] ... [REQUIRE {NONE | ssl_option [[AND] ssl_option] ...}] [WITH with_option ...] GRANT PROXY ON user_specification TO user_specification [, user_specification] ... [WITH GRANT OPTION] object_type: TABLE | FUNCTION | PROCEDURE priv_level: * | *.* | db_name.* | db_name.tbl_name | tbl_name | db_name.routine_name user_specification: user [ IDENTIFIED BY [PASSWORD] ''password'' | IDENTIFIED WITH auth_plugin [AS ''auth_string''] ] ssl_option: SSL | X509 | CIPHER ''cipher'' | ISSUER ''issuer'' | SUBJECT ''subject'' with_option: GRANT OPTION | MAX_QUERIES_PER_HOUR count | MAX_UPDATES_PER_HOUR count | MAX_CONNECTIONS_PER_HOUR count | MAX_USER_CONNECTIONS count The GRANT statement grants privileges to MySQL user accounts. GRANT also serves to specify other account characteristics such as use of secure connections and limits on access to server resources. To use GRANT, you must have the GRANT OPTION privilege, and you must have the privileges that you are granting. Normally, a database administrator first uses CREATE USER to create an account, then GRANT to define its privileges and characteristics. For example: CREATE USER ''jeffrey''@''localhost'' IDENTIFIED BY ''mypass''; GRANT ALL ON db1.* TO ''jeffrey''@''localhost''; GRANT SELECT ON db2.invoice TO ''jeffrey''@''localhost''; GRANT USAGE ON *.* TO ''jeffrey''@''localhost'' WITH MAX_QUERIES_PER_HOUR 90; However, if an account named in a GRANT statement does not already exist, GRANT may create it under the conditions described later in the discussion of the NO_AUTO_CREATE_USER SQL mode. The REVOKE statement is related to GRANT and enables administrators to remove account privileges. See [HELP REVOKE]. When successfully executed from the mysql program, GRANT responds with Query OK, 0 rows affected. To determine what privileges result from the operation, use SHOW GRANTS. See [HELP SHOW GRANTS]. URL: https://mariadb.com/kb/en/grant/ ', '', 'https://mariadb.com/kb/en/grant/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (200, 'DECLARE VARIABLE', 23, 'Syntax: DECLARE var_name [, var_name] ... type [DEFAULT value] This statement declares local variables within stored programs. To provide a default value for a variable, include a DEFAULT clause. The value can be specified as an expression; it need not be a constant. If the DEFAULT clause is missing, the initial value is NULL. Local variables are treated like stored routine parameters with respect to data type and overflow checking. See [HELP CREATE PROCEDURE]. Variable declarations must appear before cursor or handler declarations. Local variable names are not case sensitive. Permissible characters and quoting rules are the same as for other identifiers, as described in https://mariadb.com/kb/en/identifier-names/. The scope of a local variable is the BEGIN ... END block within which it is declared. The variable can be referred to in blocks nested within the declaring block, except those blocks that declare a variable with the same name. URL: https://mariadb.com/kb/en/declare-variable/ ', '', 'https://mariadb.com/kb/en/declare-variable/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (204, 'YEARWEEK', 31, 'Syntax: YEARWEEK(date), YEARWEEK(date,mode) Returns year and week for a date. The mode argument works exactly like the mode argument to WEEK(). The year in the result may be different from the year in the date argument for the first and the last week of the year. URL: https://mariadb.com/kb/en/yearweek/ ', 'MariaDB> SELECT YEARWEEK(''1987-01-01''); -> 198653 ', 'https://mariadb.com/kb/en/yearweek/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (205, 'NOT BETWEEN', 18, 'Syntax: expr NOT BETWEEN min AND max This is the same as NOT (expr BETWEEN min AND max). URL: https://mariadb.com/kb/en/not-between/ ', '', 'https://mariadb.com/kb/en/not-between/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (206, 'IS NOT', 18, 'Syntax: IS NOT boolean_value Tests a value against a boolean value, where boolean_value can be TRUE, FALSE, or UNKNOWN. URL: https://mariadb.com/kb/en/is-not/ ', 'MariaDB> SELECT 1 IS NOT UNKNOWN, 0 IS NOT UNKNOWN, NULL IS NOT UNKNOWN; -> 1, 1, 0 ', 'https://mariadb.com/kb/en/is-not/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (207, 'LOG10', 4, 'Syntax: LOG10(X) Returns the base-10 logarithm of X. URL: https://mariadb.com/kb/en/log10/ ', 'MariaDB> SELECT LOG10(2); -> 0.30102999566398 MariaDB> SELECT LOG10(100); -> 2 MariaDB> SELECT LOG10(-100); -> NULL ', 'https://mariadb.com/kb/en/log10/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (208, 'SQRT', 4, 'Syntax: SQRT(X) Returns the square root of a nonnegative number X. URL: https://mariadb.com/kb/en/sqrt/ ', 'MariaDB> SELECT SQRT(4); -> 2 MariaDB> SELECT SQRT(20); -> 4.4721359549996 MariaDB> SELECT SQRT(-16); -> NULL ', 'https://mariadb.com/kb/en/sqrt/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (209, 'DECIMAL', 22, 'DECIMAL[(M[,D])] [UNSIGNED] [ZEROFILL] A packed "exact" fixed-point number. M is the total number of digits (the precision) and D is the number of digits after the decimal point (the scale). The decimal point and (for negative numbers) the "-" sign are not counted in M. If D is 0, values have no decimal point or fractional part. The maximum number of digits (M) for DECIMAL is 65. The maximum number of supported decimals (D) is 30. If D is omitted, the default is 0. If M is omitted, the default is 10. UNSIGNED, if specified, disallows negative values. All basic calculations (+, -, *, /) with DECIMAL columns are done with a precision of 65 digits. URL: https://mariadb.com/kb/en/decimal/ ', '', 'https://mariadb.com/kb/en/decimal/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (210, 'CREATE INDEX', 39, 'Syntax: CREATE [ONLINE|OFFLINE] [UNIQUE|FULLTEXT|SPATIAL] INDEX index_name [index_type] ON tbl_name (index_col_name,...) [index_option] ... index_col_name: col_name [(length)] [ASC | DESC] index_type: USING {BTREE | HASH} index_option: KEY_BLOCK_SIZE [=] value | index_type | WITH PARSER parser_name | COMMENT ''string'' CREATE INDEX is mapped to an ALTER TABLE statement to create indexes. See [HELP ALTER TABLE]. CREATE INDEX cannot be used to create a PRIMARY KEY; use ALTER TABLE instead. For more information about indexes, see https://mariadb.com/kb/en/optimization-and-indexes/. URL: https://mariadb.com/kb/en/create-index/ ', '', 'https://mariadb.com/kb/en/create-index/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (211, 'CREATE FUNCTION', 39, 'The CREATE FUNCTION statement is used to create stored functions and user-defined functions (UDFs): o For information about creating stored functions, see [HELP CREATE PROCEDURE]. o For information about creating user-defined functions, see [HELP CREATE FUNCTION UDF]. URL: https://mariadb.com/kb/en/create-function/ ', '', 'https://mariadb.com/kb/en/create-function/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (213, 'GEOMETRYN', 25, 'GeometryN(gc,N) Returns the N-th geometry in the GeometryCollection value gc. Geometries are numbered beginning with 1. URL: https://mariadb.com/kb/en/geometryn/ ', 'MariaDB> SET @gc = ''GeometryCollection(Point(1 1),LineString(2 2, 3 3))''; MariaDB> SELECT AsText(GeometryN(GeomFromText(@gc),1)); +----------------------------------------+ | AsText(GeometryN(GeomFromText(@gc),1)) | +----------------------------------------+ | POINT(1 1) | +----------------------------------------+ ', 'https://mariadb.com/kb/en/geometryn/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (214, '<<', 19, 'Syntax: << Shifts a longlong (BIGINT) number to the left. URL: https://mariadb.com/kb/en/shift-left/ ', 'MariaDB> SELECT 1 << 2; -> 4 ', 'https://mariadb.com/kb/en/shift-left/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (212, 'ALTER DATABASE', 39, 'Syntax: ALTER {DATABASE | SCHEMA} [db_name] alter_specification ... ALTER {DATABASE | SCHEMA} db_name UPGRADE DATA DIRECTORY NAME alter_specification: [DEFAULT] CHARACTER SET [=] charset_name | [DEFAULT] COLLATE [=] collation_name ALTER DATABASE enables you to change the overall characteristics of a database. These characteristics are stored in the db.opt file in the database directory. To use ALTER DATABASE, you need the ALTER privilege on the database. ALTER SCHEMA is a synonym for ALTER DATABASE. The database name can be omitted from the first syntax, in which case the statement applies to the default database. National Language Characteristics The CHARACTER SET clause changes the default database character set. The COLLATE clause changes the default database collation. https://mariadb.com/kb/en/data-types-character-sets-and-collations/, discusses character set and collation names. You can see what character sets and collations are available using, respectively, the SHOW CHARACTER SET and SHOW COLLATION statements. See [HELP SHOW CHARACTER SET], and [HELP SHOW COLLATION], for more information. If you change the default character set or collation for a database, stored routines that use the database defaults must be dropped and recreated so that they use the new defaults. (In a stored routine, variables with character data types use the database defaults if the character set or collation are not specified explicitly. See [HELP CREATE PROCEDURE].) Upgrading from Versions Older than MySQL 5.1 The syntax that includes the UPGRADE DATA DIRECTORY NAME clause updates the name of the directory associated with the database to use the encoding implemented in MySQL 5.1 for mapping database names to database directory names (see https://mariadb.com/kb/en/identifier-to-file-name-mapping/). This clause is for use under these conditions: o It is intended when upgrading MySQL to 5.1 or later from older versions. o It is intended to update a database directory name to the current encoding format if the name contains special characters that need encoding. o The statement is used by mysqlcheck (as invoked by mysql_upgrade). For example, if a database in MySQL 5.0 has the name a-b-c, the name contains instances of the - (dash) character. In MySQL 5.0, the database directory is also named a-b-c, which is not necessarily safe for all file systems. In MySQL 5.1 and later, the same database name is encoded as a@002db@002dc to produce a file system-neutral directory name. When a MySQL installation is upgraded to MySQL 5.1 or later from an older version,the server displays a name such as a-b-c (which is in the old format) as #mysql50#a-b-c, and you must refer to the name using the #mysql50# prefix. Use UPGRADE DATA DIRECTORY NAME in this case to explicitly tell the server to re-encode the database directory name to the current encoding format: ALTER DATABASE `#mysql50#a-b-c` UPGRADE DATA DIRECTORY NAME; After executing this statement, you can refer to the database as a-b-c without the special #mysql50# prefix. URL: https://mariadb.com/kb/en/alter-database/ ', '', 'https://mariadb.com/kb/en/alter-database/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (215, 'SHOW TABLE STATUS', 26, 'Syntax: SHOW TABLE STATUS [{FROM | IN} db_name] [LIKE ''pattern'' | WHERE expr] SHOW TABLE STATUS works likes SHOW TABLES, but provides a lot of information about each non-TEMPORARY table. You can also get this list using the mysqlshow --status db_name command. The LIKE clause, if present, indicates which table names to match. The WHERE clause can be given to select rows using more general conditions, as discussed in https://mariadb.com/kb/en/extended-show/. URL: https://mariadb.com/kb/en/show-table-status/ ', '', 'https://mariadb.com/kb/en/show-table-status/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (216, 'MD5', 12, 'Syntax: MD5(str) Calculates an MD5 128-bit checksum for the string. The value is returned as a string of 32 hex digits, or NULL if the argument was NULL. The return value can, for example, be used as a hash key. See the notes at the beginning of this section about storing hash values efficiently. As of MySQL 5.5.3, the return value is a nonbinary string in the connection character set. Before 5.5.3, the return value is a binary string; see the notes at the beginning of this section about using the value as a nonbinary string. URL: https://mariadb.com/kb/en/md5/ ', 'MariaDB> SELECT MD5(''testing''); -> ''ae2b1fca515949e5d54fb22b8ed95575'' ', 'https://mariadb.com/kb/en/md5/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (217, '<', 18, 'Syntax: < Less than: URL: https://mariadb.com/kb/en/less-than/ ', 'MariaDB> SELECT 2 < 2; -> 0 ', 'https://mariadb.com/kb/en/less-than/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (218, 'UNIX_TIMESTAMP', 31, 'Syntax: UNIX_TIMESTAMP(), UNIX_TIMESTAMP(date) If called with no argument, returns a Unix timestamp (seconds since ''1970-01-01 00:00:00'' UTC) as an unsigned integer. If UNIX_TIMESTAMP() is called with a date argument, it returns the value of the argument as seconds since ''1970-01-01 00:00:00'' UTC. date may be a DATE string, a DATETIME string, a TIMESTAMP, or a number in the format YYMMDD or YYYYMMDD. The server interprets date as a value in the current time zone and converts it to an internal value in UTC. Clients can set their time zone as described in https://mariadb.com/kb/en/time-zones/. URL: https://mariadb.com/kb/en/unix_timestamp/ ', 'MariaDB> SELECT UNIX_TIMESTAMP(); -> 1196440210 MariaDB> SELECT UNIX_TIMESTAMP(''2007-11-30 10:30:19''); -> 1196440219 ', 'https://mariadb.com/kb/en/unix_timestamp/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (219, 'DAYOFMONTH', 31, 'Syntax: DAYOFMONTH(date) Returns the day of the month for date, in the range 1 to 31, or 0 for dates such as ''0000-00-00'' or ''2008-00-00'' that have a zero day part. URL: https://mariadb.com/kb/en/dayofmonth/ ', 'MariaDB> SELECT DAYOFMONTH(''2007-02-03''); -> 3 ', 'https://mariadb.com/kb/en/dayofmonth/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (220, 'ASCII', 37, 'Syntax: ASCII(str) Returns the numeric value of the leftmost character of the string str. Returns 0 if str is the empty string. Returns NULL if str is NULL. ASCII() works for 8-bit characters. URL: https://mariadb.com/kb/en/ascii/ ', 'MariaDB> SELECT ASCII(''2''); -> 50 MariaDB> SELECT ASCII(2); -> 50 MariaDB> SELECT ASCII(''dx''); -> 100 ', 'https://mariadb.com/kb/en/ascii/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (221, 'DIV', 4, 'Syntax: DIV Integer division. Similar to FLOOR(), but is safe with BIGINT values. As of MySQL 5.5.3, if either operand has a noninteger type, the operands are converted to DECIMAL and divided using DECIMAL arithmetic before converting the result to BIGINT. If the result exceeds BIGINT range, an error occurs. Before MySQL 5.5.3, incorrect results may occur for noninteger operands that exceed BIGINT range. URL: https://mariadb.com/kb/en/div/ ', 'MariaDB> SELECT 5 DIV 2; -> 2 ', 'https://mariadb.com/kb/en/div/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (224, 'GEOMETRY', 34, 'MySQL provides a standard way of creating spatial columns for geometry types, for example, with CREATE TABLE or ALTER TABLE. Currently, spatial columns are supported for MyISAM, Aria, InnoDB and ARCHIVE tables. See also the annotations about spatial indexes under [HELP SPATIAL]. URL: https://mariadb.com/kb/en/gis-functionality/ ', 'CREATE TABLE geom (g GEOMETRY); ', 'https://mariadb.com/kb/en/gis-functionality/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (225, 'NUMPOINTS', 13, 'NumPoints(ls) Returns the number of Point objects in the LineString value ls. URL: https://mariadb.com/kb/en/numpoints/ ', 'MariaDB> SET @ls = ''LineString(1 1,2 2,3 3)''; MariaDB> SELECT NumPoints(GeomFromText(@ls)); +------------------------------+ | NumPoints(GeomFromText(@ls)) | +------------------------------+ | 3 | +------------------------------+ ', 'https://mariadb.com/kb/en/numpoints/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (222, 'RENAME USER', 10, 'Syntax: RENAME USER old_user TO new_user [, old_user TO new_user] ... The RENAME USER statement renames existing MySQL accounts. To use it, you must have the global CREATE USER privilege or the UPDATE privilege for the mysql database. An error occurs if any old account does not exist or any new account exists. Each account name uses the format described in https://mariadb.com/kb/en/create-user/#account-names. For example: RENAME USER ''jeffrey''@''localhost'' TO ''jeff''@''127.0.0.1''; If you specify only the user name part of the account name, a host name part of ''%'' is used. RENAME USER causes the privileges held by the old user to be those held by the new user. However, RENAME USER does not automatically drop or invalidate databases or objects within them that the old user created. This includes stored programs or views for which the DEFINER attribute names the old user. Attempts to access such objects may produce an error if they execute in definer security context. (For information about security context, see https://mariadb.com/kb/en/stored-routine-privileges/.) The privilege changes take effect as indicated in http://dev.mysql.com/doc/refman/5.5/en/privilege-changes.html. URL: https://mariadb.com/kb/en/rename-user/ ', '', 'https://mariadb.com/kb/en/rename-user/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (223, 'SHOW SLAVE STATUS', 26, 'Syntax: SHOW SLAVE STATUS This statement provides status information on essential parameters of the slave threads. It requires either the SUPER or REPLICATION CLIENT privilege. If you issue this statement using the mysql client, you can use a \\G statement terminator rather than a semicolon to obtain a more readable vertical layout: MariaDB> SHOW SLAVE STATUS\\G *************************** 1. row *************************** Slave_IO_State: Waiting for master to send event Master_Host: localhost Master_User: root Master_Port: 3306 Connect_Retry: 3 Master_Log_File: gbichot-bin.005 Read_Master_Log_Pos: 79 Relay_Log_File: gbichot-relay-bin.005 Relay_Log_Pos: 548 Relay_Master_Log_File: gbichot-bin.005 Slave_IO_Running: Yes Slave_SQL_Running: Yes Replicate_Do_DB: Replicate_Ignore_DB: Replicate_Do_Table: Replicate_Ignore_Table: Replicate_Wild_Do_Table: Replicate_Wild_Ignore_Table: Last_Errno: 0 Last_Error: Skip_Counter: 0 Exec_Master_Log_Pos: 79 Relay_Log_Space: 552 Until_Condition: None Until_Log_File: Until_Log_Pos: 0 Master_SSL_Allowed: No Master_SSL_CA_File: Master_SSL_CA_Path: Master_SSL_Cert: Master_SSL_Cipher: Master_SSL_Key: Seconds_Behind_Master: 8 Master_SSL_Verify_Server_Cert: No Last_IO_Errno: 0 Last_IO_Error: Last_SQL_Errno: 0 Last_SQL_Error: Replicate_Ignore_Server_Ids: 0 Master_Server_Id: 1 URL: https://mariadb.com/kb/en/show-slave-status/ ', '', 'https://mariadb.com/kb/en/show-slave-status/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (226, 'ALTER LOGFILE GROUP', 39, 'Syntax: ALTER LOGFILE GROUP logfile_group ADD UNDOFILE ''file_name'' [INITIAL_SIZE [=] size] [WAIT] ENGINE [=] engine_name This statement is used with NDB cluster, which is not supported by MariaDB. ', '', 'https://mariadb.com/kb/en/alter-logfile-group/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (227, '&', 19, 'Syntax: & Bitwise AND: URL: https://mariadb.com/kb/en/bitwise_and/ ', 'MariaDB> SELECT 29 & 15; -> 13 ', 'https://mariadb.com/kb/en/bitwise_and/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (228, 'LOCALTIMESTAMP', 31, 'Syntax: LOCALTIMESTAMP, LOCALTIMESTAMP() LOCALTIMESTAMP and LOCALTIMESTAMP() are synonyms for NOW(). URL: https://mariadb.com/kb/en/localtimestamp/ ', '', 'https://mariadb.com/kb/en/localtimestamp/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (229, 'ASSIGN-EQUAL', 15, 'Syntax: = This operator is used to perform value assignments in two cases, described in the next two paragraphs. Within a SET statement, = is treated as an assignment operator that causes the user variable on the left hand side of the operator to take on the value to its right. (In other words, when used in a SET statement, = is treated identically to :=.) The value on the right hand side may be a literal value, another variable storing a value, or any legal expression that yields a scalar value, including the result of a query (provided that this value is a scalar value). You can perform multiple assignments in the same SET statement. In the SET clause of an UPDATE statement, = also acts as an assignment operator; in this case, however, it causes the column named on the left hand side of the operator to assume the value given to the right, provided any WHERE conditions that are part of the UPDATE are met. You can make multiple assignments in the same SET clause of an UPDATE statement. In any other context, = is treated as a comparison operator. URL: https://mariadb.com/kb/en/assignment-operators-assignment-operator/ ', 'MariaDB> SELECT @var1, @var2; -> NULL, NULL MariaDB> SELECT @var1 := 1, @var2; -> 1, NULL MariaDB> SELECT @var1, @var2; -> 1, NULL MariaDB> SELECT @var1, @var2 := @var1; -> 1, 1 MariaDB> SELECT @var1, @var2; -> 1, 1 ', 'https://mariadb.com/kb/en/assignment-operators-assignment-operator/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (231, 'ADDDATE', 31, 'Syntax: ADDDATE(date,INTERVAL expr unit), ADDDATE(expr,days) When invoked with the INTERVAL form of the second argument, ADDDATE() is a synonym for DATE_ADD(). The related function SUBDATE() is a synonym for DATE_SUB(). For information on the INTERVAL unit argument, see the discussion for DATE_ADD(). MariaDB> SELECT DATE_ADD(''2008-01-02'', INTERVAL 31 DAY); -> ''2008-02-02'' MariaDB> SELECT ADDDATE(''2008-01-02'', INTERVAL 31 DAY); -> ''2008-02-02'' When invoked with the days form of the second argument, MySQL treats it as an integer number of days to be added to expr. URL: https://mariadb.com/kb/en/adddate/ ', 'MariaDB> SELECT ADDDATE(''2008-01-02'', 31); -> ''2008-02-02'' ', 'https://mariadb.com/kb/en/adddate/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (234, 'SMALLINT', 22, 'SMALLINT[(M)] [UNSIGNED] [ZEROFILL] A small integer. The signed range is -32768 to 32767. The unsigned range is 0 to 65535. URL: https://mariadb.com/kb/en/smallint/ ', '', 'https://mariadb.com/kb/en/smallint/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (235, 'DOUBLE PRECISION', 22, 'DOUBLE PRECISION[(M,D)] [UNSIGNED] [ZEROFILL], REAL[(M,D)] [UNSIGNED] [ZEROFILL] These types are synonyms for DOUBLE. Exception: If the REAL_AS_FLOAT SQL mode is enabled, REAL is a synonym for FLOAT rather than DOUBLE. URL: https://mariadb.com/kb/en/double-precision/ ', '', 'https://mariadb.com/kb/en/double-precision/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (236, 'ORD', 37, 'Syntax: ORD(str) If the leftmost character of the string str is a multi-byte character, returns the code for that character, calculated from the numeric values of its constituent bytes using this formula: (1st byte code) + (2nd byte code * 256) + (3rd byte code * 2562) ... If the leftmost character is not a multi-byte character, ORD() returns the same value as the ASCII() function. URL: https://mariadb.com/kb/en/ord/ ', 'MariaDB> SELECT ORD(''2''); -> 50 ', 'https://mariadb.com/kb/en/ord/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (237, 'DEALLOCATE PREPARE', 8, 'Syntax: {DEALLOCATE | DROP} PREPARE stmt_name To deallocate a prepared statement produced with PREPARE, use a DEALLOCATE PREPARE statement that refers to the prepared statement name. Attempting to execute a prepared statement after deallocating it results in an error. URL: https://mariadb.com/kb/en/deallocate-drop-prepared-statement/ ', '', 'https://mariadb.com/kb/en/deallocate-drop-prepared-statement/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (230, 'CONVERT', 37, 'Syntax: CONVERT(expr,type), CONVERT(expr USING transcoding_name) The CONVERT() and CAST() functions take an expression of any type and produce a result value of a specified type. The type for the result can be one of the following values: o BINARY[(N)] o CHAR[(N)] o DATE o DATETIME o DECIMAL[(M[,D])] o SIGNED [INTEGER] o TIME o UNSIGNED [INTEGER] BINARY produces a string with the BINARY data type. See https://mariadb.com/kb/en/binary/ for a description of how this affects comparisons. If the optional length N is given, BINARY(N) causes the cast to use no more than N bytes of the argument. Values shorter than N bytes are padded with 0x00 bytes to a length of N. CHAR(N) causes the cast to use no more than N characters of the argument. CAST() and CONVERT(... USING ...) are standard SQL syntax. The non-USING form of CONVERT() is ODBC syntax. CONVERT() with USING is used to convert data between different character sets. In MySQL, transcoding names are the same as the corresponding character set names. For example, this statement converts the string ''abc'' in the default character set to the corresponding string in the utf8 character set: SELECT CONVERT(''abc'' USING utf8); URL: https://mariadb.com/kb/en/convert/ ', 'SELECT enum_col FROM tbl_name ORDER BY CAST(enum_col AS CHAR); ', 'https://mariadb.com/kb/en/convert/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (232, 'REPEAT LOOP', 23, 'Syntax: [begin_label:] REPEAT statement_list UNTIL search_condition END REPEAT [end_label] The statement list within a REPEAT statement is repeated until the search_condition expression is true. Thus, a REPEAT always enters the loop at least once. statement_list consists of one or more statements, each terminated by a semicolon (;) statement delimiter. A REPEAT statement can be labeled. For the rules regarding label use, see [HELP labels]. URL: https://mariadb.com/kb/en/repeat-loop/ ', 'MariaDB> delimiter // MariaDB> CREATE PROCEDURE dorepeat(p1 INT) -> BEGIN -> SET @x = 0; -> REPEAT -> SET @x = @x + 1; -> UNTIL @x > p1 END REPEAT; -> END -> // Query OK, 0 rows affected (0.00 sec) MariaDB> CALL dorepeat(1000)// Query OK, 0 rows affected (0.00 sec) MariaDB> SELECT @x// +------+ | @x | +------+ | 1001 | +------+ 1 row in set (0.00 sec) ', 'https://mariadb.com/kb/en/repeat-loop/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (233, 'ALTER FUNCTION', 39, 'Syntax: ALTER FUNCTION func_name [characteristic ...] characteristic: COMMENT ''string'' | LANGUAGE SQL | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA } | SQL SECURITY { DEFINER | INVOKER } This statement can be used to change the characteristics of a stored function. More than one change may be specified in an ALTER FUNCTION statement. However, you cannot change the parameters or body of a stored function using this statement; to make such changes, you must drop and re-create the function using DROP FUNCTION and CREATE FUNCTION. You must have the ALTER ROUTINE privilege for the function. (That privilege is granted automatically to the function creator.) If binary logging is enabled, the ALTER FUNCTION statement might also require the SUPER privilege, as described in https://mariadb.com/kb/en/binary-logging-of-stored-routines/. URL: https://mariadb.com/kb/en/alter-function/ ', '', 'https://mariadb.com/kb/en/alter-function/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (238, 'ENVELOPE', 36, 'Envelope(g) Returns the Minimum Bounding Rectangle (MBR) for the geometry value g. The result is returned as a Polygon value. The polygon is defined by the corner points of the bounding box: POLYGON((MINX MINY, MAXX MINY, MAXX MAXY, MINX MAXY, MINX MINY)) URL: https://mariadb.com/kb/en/envelope/ ', 'MariaDB> SELECT AsText(Envelope(GeomFromText(''LineString(1 1,2 2)''))); +-------------------------------------------------------+ | AsText(Envelope(GeomFromText(''LineString(1 1,2 2)''))) | +-------------------------------------------------------+ | POLYGON((1 1,2 1,2 2,1 2,1 1)) | +-------------------------------------------------------+ ', 'https://mariadb.com/kb/en/envelope/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (239, 'IS_FREE_LOCK', 14, 'Syntax: IS_FREE_LOCK(str) Checks whether the lock named str is free to use (that is, not locked). Returns 1 if the lock is free (no one is using the lock), 0 if the lock is in use, and NULL if an error occurs (such as an incorrect argument). URL: https://mariadb.com/kb/en/is_free_lock/ ', '', 'https://mariadb.com/kb/en/is_free_lock/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (240, 'TOUCHES', 30, 'Touches(g1,g2) Returns 1 or 0 to indicate whether g1 spatially touches g2. Two geometries spatially touch if the interiors of the geometries do not intersect, but the boundary of one of the geometries intersects either the boundary or the interior of the other. URL: https://mariadb.com/kb/en/touches/ ', '', 'https://mariadb.com/kb/en/touches/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (241, 'INET_ATON', 14, 'Syntax: INET_ATON(expr) Given the dotted-quad representation of an IPv4 network address as a string, returns an integer that represents the numeric value of the address in network byte order (big endian). INET_ATON() returns NULL if it does not understand its argument. URL: https://mariadb.com/kb/en/inet_aton/ ', 'MariaDB> SELECT INET_ATON(''10.0.5.9''); -> 167773449 ', 'https://mariadb.com/kb/en/inet_aton/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (242, 'UNCOMPRESS', 12, 'Syntax: UNCOMPRESS(string_to_uncompress) Uncompresses a string compressed by the COMPRESS() function. If the argument is not a compressed value, the result is NULL. This function requires MySQL to have been compiled with a compression library such as zlib. Otherwise, the return value is always NULL. URL: https://mariadb.com/kb/en/uncompress/ ', 'MariaDB> SELECT UNCOMPRESS(COMPRESS(''any string'')); -> ''any string'' MariaDB> SELECT UNCOMPRESS(''any string''); -> NULL ', 'https://mariadb.com/kb/en/uncompress/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (243, 'AUTO_INCREMENT', 22, 'The AUTO_INCREMENT attribute can be used to generate a unique identity for new rows: URL: https://mariadb.com/kb/en/auto_increment/ ', 'CREATE TABLE animals ( id MEDIUMINT NOT NULL AUTO_INCREMENT, name CHAR(30) NOT NULL, PRIMARY KEY (id) ); INSERT INTO animals (name) VALUES (''dog''),(''cat''),(''penguin''), (''lax''),(''whale''),(''ostrich''); SELECT * FROM animals; ', 'https://mariadb.com/kb/en/auto_increment/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (244, 'ISSIMPLE', 36, 'IsSimple(g) Currently, this function is a placeholder and should not be used. If implemented, its behavior will be as described in the next paragraph. Returns 1 if the geometry value g has no anomalous geometric points, such as self-intersection or self-tangency. IsSimple() returns 0 if the argument is not simple, and -1 if it is NULL. The description of each instantiable geometric class given earlier in the chapter includes the specific conditions that cause an instance of that class to be classified as not simple. (See [HELP Geometry hierarchy].) URL: https://mariadb.com/kb/en/issimple/ ', '', 'https://mariadb.com/kb/en/issimple/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (245, '- BINARY', 4, 'Syntax: - Subtraction: URL: https://mariadb.com/kb/en/subtraction-operator-/ ', 'MariaDB> SELECT 3-5; -> -2 ', 'https://mariadb.com/kb/en/subtraction-operator-/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (246, 'GEOMCOLLFROMTEXT', 3, 'GeomCollFromText(wkt[,srid]), GeometryCollectionFromText(wkt[,srid]) Constructs a GEOMETRYCOLLECTION value using its WKT representation and SRID. URL: https://mariadb.com/kb/en/geomcollfromtext/ ', '', 'https://mariadb.com/kb/en/geomcollfromtext/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (247, 'WKT DEFINITION', 3, 'The Well-Known Text (WKT) representation of Geometry is designed to exchange geometry data in ASCII form. For a Backus-Naur grammar that specifies the formal production rules for writing WKT values, see the OpenGIS specification document referenced in https://mariadb.com/kb/en/gis-resources/. URL: https://mariadb.com/kb/en/wkt-definition/ ', '', 'https://mariadb.com/kb/en/wkt-definition/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (248, 'CURRENT_TIME', 31, 'Syntax: CURRENT_TIME, CURRENT_TIME() CURRENT_TIME and CURRENT_TIME() are synonyms for CURTIME(). URL: https://mariadb.com/kb/en/current_time/ ', '', 'https://mariadb.com/kb/en/current_time/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (249, 'REVOKE', 10, 'Syntax: REVOKE priv_type [(column_list)] [, priv_type [(column_list)]] ... ON [object_type] priv_level FROM user [, user] ... REVOKE ALL PRIVILEGES, GRANT OPTION FROM user [, user] ... REVOKE PROXY ON user FROM user [, user] ... The REVOKE statement enables system administrators to revoke privileges from MySQL accounts. Each account name uses the format described in https://mariadb.com/kb/en/create-user#account-names. For example: REVOKE INSERT ON *.* FROM ''jeffrey''@''localhost''; If you specify only the user name part of the account name, a host name part of ''%'' is used. For details on the levels at which privileges exist, the permissible priv_type and priv_level values, and the syntax for specifying users and passwords, see [HELP GRANT] To use the first REVOKE syntax, you must have the GRANT OPTION privilege, and you must have the privileges that you are revoking. To revoke all privileges, use the second syntax, which drops all global, database, table, column, and routine privileges for the named user or users: REVOKE ALL PRIVILEGES, GRANT OPTION FROM user [, user] ... To use this REVOKE syntax, you must have the global CREATE USER privilege or the UPDATE privilege for the mysql database. URL: https://mariadb.com/kb/en/revoke/ ', '', 'https://mariadb.com/kb/en/revoke/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (250, 'LAST_INSERT_ID', 17, 'Syntax: LAST_INSERT_ID(), LAST_INSERT_ID(expr) LAST_INSERT_ID() (with no argument) returns a BIGINT (64-bit) value representing the first automatically generated value successfully inserted for an AUTO_INCREMENT column as a result of the most recently executed INSERT statement. The value of LAST_INSERT_ID() remains unchanged if no rows are successfully inserted. For example, after inserting a row that generates an AUTO_INCREMENT value, you can get the value like this: MariaDB> SELECT LAST_INSERT_ID(); -> 195 The currently executing statement does not affect the value of LAST_INSERT_ID(). Suppose that you generate an AUTO_INCREMENT value with one statement, and then refer to LAST_INSERT_ID() in a multiple-row INSERT statement that inserts rows into a table with its own AUTO_INCREMENT column. The value of LAST_INSERT_ID() will remain stable in the second statement; its value for the second and later rows is not affected by the earlier row insertions. (However, if you mix references to LAST_INSERT_ID() and LAST_INSERT_ID(expr), the effect is undefined.) If the previous statement returned an error, the value of LAST_INSERT_ID() is undefined. For transactional tables, if the statement is rolled back due to an error, the value of LAST_INSERT_ID() is left undefined. For manual ROLLBACK, the value of LAST_INSERT_ID() is not restored to that before the transaction; it remains as it was at the point of the ROLLBACK. Within the body of a stored routine (procedure or function) or a trigger, the value of LAST_INSERT_ID() changes the same way as for statements executed outside the body of these kinds of objects. The effect of a stored routine or trigger upon the value of LAST_INSERT_ID() that is seen by following statements depends on the kind of routine: o If a stored procedure executes statements that change the value of LAST_INSERT_ID(), the changed value is seen by statements that follow the procedure call. o For stored functions and triggers that change the value, the value is restored when the function or trigger ends, so following statements will not see a changed value. URL: https://mariadb.com/kb/en/last_insert_id/ ', '', 'https://mariadb.com/kb/en/last_insert_id/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (251, 'LAST_DAY', 31, 'Syntax: LAST_DAY(date) Takes a date or datetime value and returns the corresponding value for the last day of the month. Returns NULL if the argument is invalid. URL: https://mariadb.com/kb/en/last_day/ ', 'MariaDB> SELECT LAST_DAY(''2003-02-05''); -> ''2003-02-28'' MariaDB> SELECT LAST_DAY(''2004-02-05''); -> ''2004-02-29'' MariaDB> SELECT LAST_DAY(''2004-01-01 01:01:01''); -> ''2004-01-31'' MariaDB> SELECT LAST_DAY(''2003-03-32''); -> NULL ', 'https://mariadb.com/kb/en/last_day/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (252, 'MEDIUMINT', 22, 'MEDIUMINT[(M)] [UNSIGNED] [ZEROFILL] A medium-sized integer. The signed range is -8388608 to 8388607. The unsigned range is 0 to 16777215. URL: https://mariadb.com/kb/en/mediumint/ ', '', 'https://mariadb.com/kb/en/mediumint/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (253, 'FLOOR', 4, 'Syntax: FLOOR(X) Returns the largest integer value not greater than X. URL: https://mariadb.com/kb/en/floor/ ', 'MariaDB> SELECT FLOOR(1.23); -> 1 MariaDB> SELECT FLOOR(-1.23); -> -2 ', 'https://mariadb.com/kb/en/floor/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (254, 'RTRIM', 37, 'Syntax: RTRIM(str) Returns the string str with trailing space characters removed. URL: https://mariadb.com/kb/en/rtrim/ ', 'MariaDB> SELECT RTRIM(''barbar ''); -> ''barbar'' ', 'https://mariadb.com/kb/en/rtrim/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (256, 'DEGREES', 4, 'Syntax: DEGREES(X) Returns the argument X, converted from radians to degrees. URL: https://mariadb.com/kb/en/degrees/ ', 'MariaDB> SELECT DEGREES(PI()); -> 180 MariaDB> SELECT DEGREES(PI() / 2); -> 90 ', 'https://mariadb.com/kb/en/degrees/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (258, 'UNHEX', 37, 'Syntax: UNHEX(str) For a string argument str, UNHEX(str) performs the inverse operation of HEX(str). That is, it interprets each pair of characters in the argument as a hexadecimal number and converts it to the character represented by the number. The return value is a binary string. URL: https://mariadb.com/kb/en/unhex/ ', 'MariaDB> SELECT UNHEX(''4D7953514C''); -> ''MySQL'' MariaDB> SELECT 0x4D7953514C; -> ''MySQL'' MariaDB> SELECT UNHEX(HEX(''string'')); -> ''string'' MariaDB> SELECT HEX(UNHEX(''1267'')); -> ''1267'' ', 'https://mariadb.com/kb/en/unhex/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (259, '- UNARY', 4, 'Syntax: - Unary minus. This operator changes the sign of the operand. URL: https://mariadb.com/kb/en/subtraction-operator-/ ', 'MariaDB> SELECT - 2; -> -2 ', 'https://mariadb.com/kb/en/subtraction-operator-/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (260, 'STD', 16, 'Syntax: STD(expr) Returns the population standard deviation of expr. This is an extension to standard SQL. The standard SQL function STDDEV_POP() can be used instead. This function returns NULL if there were no matching rows. URL: https://mariadb.com/kb/en/std/ ', '', 'https://mariadb.com/kb/en/std/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (261, 'COS', 4, 'Syntax: COS(X) Returns the cosine of X, where X is given in radians. URL: https://mariadb.com/kb/en/cos/ ', 'MariaDB> SELECT COS(PI()); -> -1 ', 'https://mariadb.com/kb/en/cos/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (262, 'DATE FUNCTION', 31, 'Syntax: DATE(expr) Extracts the date part of the date or datetime expression expr. URL: https://mariadb.com/kb/en/date-function/ ', 'MariaDB> SELECT DATE(''2003-12-31 01:02:03''); -> ''2003-12-31'' ', 'https://mariadb.com/kb/en/date-function/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (263, 'DROP TRIGGER', 39, 'Syntax: DROP TRIGGER [IF EXISTS] [schema_name.]trigger_name This statement drops a trigger. The schema (database) name is optional. If the schema is omitted, the trigger is dropped from the default schema. DROP TRIGGER requires the TRIGGER privilege for the table associated with the trigger. Use IF EXISTS to prevent an error from occurring for a trigger that does not exist. A NOTE is generated for a nonexistent trigger when using IF EXISTS. See [HELP SHOW WARNINGS]. Triggers for a table are also dropped if you drop the table. URL: https://mariadb.com/kb/en/drop-trigger/ ', '', 'https://mariadb.com/kb/en/drop-trigger/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (255, 'EXPLAIN', 28, 'Syntax: EXPLAIN [explain_type] SELECT select_options explain_type: EXTENDED | PARTITIONS Or: EXPLAIN tbl_name The EXPLAIN statement can be used either as a way to obtain information about how MySQL executes a statement, or as a synonym for DESCRIBE: o When you precede a SELECT statement with the keyword EXPLAIN, MySQL displays information from the optimizer about the query execution plan. That is, MySQL explains how it would process the statement, including information about how tables are joined and in which order. EXPLAIN EXTENDED can be used to obtain additional information. For information about using EXPLAIN and EXPLAIN EXTENDED to obtain query execution plan information, see https://mariadb.com/kb/en/explain/. o EXPLAIN PARTITIONS is useful only when examining queries involving partitioned tables. For details, see http://dev.mysql.com/doc/refman/5.5/en/partitioning-info.html. o EXPLAIN tbl_name is synonymous with DESCRIBE tbl_name or SHOW COLUMNS FROM tbl_name. For information about DESCRIBE and SHOW COLUMNS, see [HELP DESCRIBE], and [HELP SHOW COLUMNS]. URL: https://mariadb.com/kb/en/explain/ ', '', 'https://mariadb.com/kb/en/explain/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (257, 'VARCHAR', 22, '[NATIONAL] VARCHAR(M) [CHARACTER SET charset_name] [COLLATE collation_name] A variable-length string. M represents the maximum column length in characters. The range of M is 0 to 65,535. The effective maximum length of a VARCHAR is subject to the maximum row size (65,535 bytes, which is shared among all columns) and the character set used. For example, utf8 characters can require up to three bytes per character, so a VARCHAR column that uses the utf8 character set can be declared to be a maximum of 21,844 characters. See http://dev.mysql.com/doc/refman/5.5/en/column-count-limit.html. MySQL stores VARCHAR values as a 1-byte or 2-byte length prefix plus data. The length prefix indicates the number of bytes in the value. A VARCHAR column uses one length byte if values require no more than 255 bytes, two length bytes if values may require more than 255 bytes. *Note*: MySQL 5.5 follows the standard SQL specification, and does not remove trailing spaces from VARCHAR values. VARCHAR is shorthand for CHARACTER VARYING. NATIONAL VARCHAR is the standard SQL way to define that a VARCHAR column should use some predefined character set. MySQL 4.1 and up uses utf8 as this predefined character set. https://mariadb.com/kb/en/varchar/. NVARCHAR is shorthand for NATIONAL VARCHAR. URL: https://mariadb.com/kb/en/varchar/ ', '', 'https://mariadb.com/kb/en/varchar/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (264, 'RESET MASTER', 8, 'Syntax: RESET MASTER Deletes all binary log files listed in the index file, resets the binary log index file to be empty, and creates a new binary log file. This statement is intended to be used only when the master is started for the first time. URL: https://mariadb.com/kb/en/reset-master/ ', '', 'https://mariadb.com/kb/en/reset-master/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (265, 'TAN', 4, 'Syntax: TAN(X) Returns the tangent of X, where X is given in radians. URL: https://mariadb.com/kb/en/tan/ ', 'MariaDB> SELECT TAN(PI()); -> -1.2246063538224e-16 MariaDB> SELECT TAN(PI()+1); -> 1.5574077246549 ', 'https://mariadb.com/kb/en/tan/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (266, 'PI', 4, 'Syntax: PI() Returns the value of π (pi). The default number of decimal places displayed is seven, but MySQL uses the full double-precision value internally. URL: https://mariadb.com/kb/en/pi/ ', 'MariaDB> SELECT PI(); -> 3.141593 MariaDB> SELECT PI()+0.000000000000000000; -> 3.141592653589793116 ', 'https://mariadb.com/kb/en/pi/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (267, 'WEEKOFYEAR', 31, 'Syntax: WEEKOFYEAR(date) Returns the calendar week of the date as a number in the range from 1 to 53. WEEKOFYEAR() is a compatibility function that is equivalent to WEEK(date,3). URL: https://mariadb.com/kb/en/weekofyear/ ', 'MariaDB> SELECT WEEKOFYEAR(''2008-02-20''); -> 8 ', 'https://mariadb.com/kb/en/weekofyear/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (268, '/', 4, 'Syntax: / Division: URL: https://mariadb.com/kb/en/division-operator/ ', 'MariaDB> SELECT 3/5; -> 0.60 ', 'https://mariadb.com/kb/en/division-operator/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (269, 'PURGE BINARY LOGS', 8, 'Syntax: PURGE { BINARY | MASTER } LOGS { TO ''log_name'' | BEFORE datetime_expr } The binary log is a set of files that contain information about data modifications made by the MySQL server. The log consists of a set of binary log files, plus an index file (see https://mariadb.com/kb/en/overview-of-the-binary-log/). The PURGE BINARY LOGS statement deletes all the binary log files listed in the log index file prior to the specified log file name or date. BINARY and MASTER are synonyms. Deleted log files also are removed from the list recorded in the index file, so that the given log file becomes the first in the list. This statement has no effect if the server was not started with the --log-bin option to enable binary logging. URL: https://mariadb.com/kb/en/sql-commands-purge-logs/ ', 'PURGE BINARY LOGS TO ''mysql-bin.010''; PURGE BINARY LOGS BEFORE ''2008-04-02 22:46:26''; ', 'https://mariadb.com/kb/en/sql-commands-purge-logs/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (270, 'STDDEV_SAMP', 16, 'Syntax: STDDEV_SAMP(expr) Returns the sample standard deviation of expr (the square root of VAR_SAMP(). STDDEV_SAMP() returns NULL if there were no matching rows. URL: https://mariadb.com/kb/en/stddev_samp/ ', '', 'https://mariadb.com/kb/en/stddev_samp/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (271, 'SCHEMA', 17, 'Syntax: SCHEMA() This function is a synonym for DATABASE(). URL: https://mariadb.com/kb/en/schema/ ', '', 'https://mariadb.com/kb/en/schema/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (272, 'MLINEFROMWKB', 32, 'MLineFromWKB(wkb[,srid]), MultiLineStringFromWKB(wkb[,srid]) Constructs a MULTILINESTRING value using its WKB representation and SRID. URL: https://mariadb.com/kb/en/mlinefromwkb/ ', '', 'https://mariadb.com/kb/en/mlinefromwkb/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (273, 'LOG2', 4, 'Syntax: LOG2(X) Returns the base-2 logarithm of X. URL: https://mariadb.com/kb/en/log2/ ', 'MariaDB> SELECT LOG2(65536); -> 16 MariaDB> SELECT LOG2(-100); -> NULL ', 'https://mariadb.com/kb/en/log2/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (274, 'SUBTIME', 31, 'Syntax: SUBTIME(expr1,expr2) SUBTIME() returns expr1 - expr2 expressed as a value in the same format as expr1. expr1 is a time or datetime expression, and expr2 is a time expression. URL: https://mariadb.com/kb/en/subtime/ ', 'MariaDB> SELECT SUBTIME(''2007-12-31 23:59:59.999999'',''1 1:1:1.000002''); -> ''2007-12-30 22:58:58.999997'' MariaDB> SELECT SUBTIME(''01:00:00.999999'', ''02:00:00.999998''); -> ''-00:59:59.999999'' ', 'https://mariadb.com/kb/en/subtime/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (275, 'UNCOMPRESSED_LENGTH', 12, 'Syntax: UNCOMPRESSED_LENGTH(compressed_string) Returns the length that the compressed string had before being compressed. URL: https://mariadb.com/kb/en/uncompressed_length/ ', 'MariaDB> SELECT UNCOMPRESSED_LENGTH(COMPRESS(REPEAT(''a'',30))); -> 30 ', 'https://mariadb.com/kb/en/uncompressed_length/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (277, 'POW', 4, 'Syntax: POW(X,Y) Returns the value of X raised to the power of Y. URL: https://mariadb.com/kb/en/pow/ ', 'MariaDB> SELECT POW(2,2); -> 4 MariaDB> SELECT POW(2,-2); -> 0.25 ', 'https://mariadb.com/kb/en/pow/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (278, 'SHOW CREATE TABLE', 26, 'Syntax: SHOW CREATE TABLE tbl_name Shows the CREATE TABLE statement that creates the given table. To use this statement, you must have some privilege for the table. This statement also works with views. SHOW CREATE TABLE quotes table and column names according to the value of the sql_quote_show_create option. See https://mariadb.com/kb/en/server-system-variables/. URL: https://mariadb.com/kb/en/show-create-table/ ', 'MariaDB> SHOW CREATE TABLE t\\G *************************** 1. row *************************** Table: t Create Table: CREATE TABLE t ( id INT(11) default NULL auto_increment, s char(60) default NULL, PRIMARY KEY (id) ) ENGINE=MyISAM ', 'https://mariadb.com/kb/en/show-create-table/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (276, 'DROP TABLE', 39, 'Syntax: DROP [TEMPORARY] TABLE [IF EXISTS] tbl_name [, tbl_name] ... [RESTRICT | CASCADE] DROP TABLE removes one or more tables. You must have the DROP privilege for each table. All table data and the table definition are removed, so be careful with this statement! If any of the tables named in the argument list do not exist, MySQL returns an error indicating by name which nonexisting tables it was unable to drop, but it also drops all of the tables in the list that do exist. *Important*: When a table is dropped, user privileges on the table are not automatically dropped. See [HELP GRANT]. Note that for a partitioned table, DROP TABLE permanently removes the table definition, all of its partitions, and all of the data which was stored in those partitions. It also removes the partitioning definition (.par) file associated with the dropped table. Use IF EXISTS to prevent an error from occurring for tables that do not exist. A NOTE is generated for each nonexistent table when using IF EXISTS. See [HELP SHOW WARNINGS]. RESTRICT and CASCADE are permitted to make porting easier. In MySQL 5.5, they do nothing. *Note*: DROP TABLE automatically commits the current active transaction, unless you use the TEMPORARY keyword. URL: https://mariadb.com/kb/en/drop-table/ ', '', 'https://mariadb.com/kb/en/drop-table/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (279, 'DUAL', 27, 'You are permitted to specify DUAL as a dummy table name in situations where no tables are referenced: MariaDB> SELECT 1 + 1 FROM DUAL; -> 2 DUAL is purely for the convenience of people who require that all SELECT statements should have FROM and possibly other clauses. MySQL may ignore the clauses. MySQL does not require FROM DUAL if no tables are referenced. URL: https://mariadb.com/kb/en/dual/ ', '', 'https://mariadb.com/kb/en/dual/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (280, 'INSTR', 37, 'Syntax: INSTR(str,substr) Returns the position of the first occurrence of substring substr in string str. This is the same as the two-argument form of LOCATE(), except that the order of the arguments is reversed. URL: https://mariadb.com/kb/en/instr/ ', 'MariaDB> SELECT INSTR(''foobarbar'', ''bar''); -> 4 MariaDB> SELECT INSTR(''xbar'', ''foobar''); -> 0 ', 'https://mariadb.com/kb/en/instr/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (281, 'NOW', 31, 'Syntax: NOW() Returns the current date and time as a value in ''YYYY-MM-DD HH:MM:SS'' or YYYYMMDDHHMMSS.uuuuuu format, depending on whether the function is used in a string or numeric context. The value is expressed in the current time zone. URL: https://mariadb.com/kb/en/now/ ', 'MariaDB> SELECT NOW(); -> ''2007-12-15 23:50:26'' MariaDB> SELECT NOW() + 0; -> 20071215235026.000000 ', 'https://mariadb.com/kb/en/now/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (282, 'SHOW ENGINES', 26, 'Syntax: SHOW [STORAGE] ENGINES SHOW ENGINES displays status information about the server''s storage engines. This is particularly useful for checking whether a storage engine is supported, or to see what the default engine is. URL: https://mariadb.com/kb/en/show-engines/ ', '', 'https://mariadb.com/kb/en/show-engines/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (283, '>=', 18, 'Syntax: >= Greater than or equal: URL: https://mariadb.com/kb/en/greater-than-or-equal/ ', 'MariaDB> SELECT 2 >= 2; -> 1 ', 'https://mariadb.com/kb/en/greater-than-or-equal/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (284, 'EXP', 4, 'Syntax: EXP(X) Returns the value of e (the base of natural logarithms) raised to the power of X. The inverse of this function is LOG() (using a single argument only) or LN(). URL: https://mariadb.com/kb/en/exp/ ', 'MariaDB> SELECT EXP(2); -> 7.3890560989307 MariaDB> SELECT EXP(-2); -> 0.13533528323661 MariaDB> SELECT EXP(0); -> 1 ', 'https://mariadb.com/kb/en/exp/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (285, 'LONGBLOB', 22, 'LONGBLOB A BLOB column with a maximum length of 4,294,967,295 or 4GB (232 - 1) bytes. The effective maximum length of LONGBLOB columns depends on the configured maximum packet size in the client/server protocol and available memory. Each LONGBLOB value is stored using a 4-byte length prefix that indicates the number of bytes in the value. URL: https://mariadb.com/kb/en/longblob/ ', '', 'https://mariadb.com/kb/en/longblob/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (286, 'POINTN', 13, 'PointN(ls,N) Returns the N-th Point in the Linestring value ls. Points are numbered beginning with 1. URL: https://mariadb.com/kb/en/pointn/ ', 'MariaDB> SET @ls = ''LineString(1 1,2 2,3 3)''; MariaDB> SELECT AsText(PointN(GeomFromText(@ls),2)); +-------------------------------------+ | AsText(PointN(GeomFromText(@ls),2)) | +-------------------------------------+ | POINT(2 2) | +-------------------------------------+ ', 'https://mariadb.com/kb/en/pointn/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (287, 'YEAR DATA TYPE', 22, 'YEAR[(2|4)] A year in two-digit or four-digit format. The default is four-digit format. YEAR(2) or YEAR(4) differ in display format, but have the same range of values. In four-digit format, values display as 1901 to 2155, and 0000. In two-digit format, values display as 70 to 69, representing years from 1970 to 2069. MySQL displays YEAR values in YYYY or YYformat, but permits assignment of values to YEAR columns using either strings or numbers. *Note*: The YEAR(2) data type has certain issues that you should consider before choosing to use it. As of MySQL 5.5.27, YEAR(2) is deprecated. For more information, see http://dev.mysql.com/doc/refman/5.5/en/migrating-to-year4.html. For additional information about YEAR display format and inerpretation of input values, see https://mariadb.com/kb/en/year-data-type/. URL: https://mariadb.com/kb/en/year-data-type/ ', '', 'https://mariadb.com/kb/en/year-data-type/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (288, 'SUM', 16, 'Syntax: SUM([DISTINCT] expr) Returns the sum of expr. If the return set has no rows, SUM() returns NULL. The DISTINCT keyword can be used to sum only the distinct values of expr. SUM() returns NULL if there were no matching rows. URL: https://mariadb.com/kb/en/sum/ ', '', 'https://mariadb.com/kb/en/sum/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (289, 'OCT', 37, 'Syntax: OCT(N) Returns a string representation of the octal value of N, where N is a longlong (BIGINT) number. This is equivalent to CONV(N,10,8). Returns NULL if N is NULL. URL: https://mariadb.com/kb/en/oct/ ', 'MariaDB> SELECT OCT(12); -> ''14'' ', 'https://mariadb.com/kb/en/oct/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (291, 'UNINSTALL PLUGIN', 5, 'Syntax: UNINSTALL PLUGIN plugin_name This statement removes an installed server plugin. It requires the DELETE privilege for the mysql.plugin table. plugin_name must be the name of some plugin that is listed in the mysql.plugin table. The server executes the plugin''s deinitialization function and removes the row for the plugin from the mysql.plugin table, so that subsequent server restarts will not load and initialize the plugin. UNINSTALL PLUGIN does not remove the plugin''s shared library file. URL: https://mariadb.com/kb/en/uninstall-plugin/ ', '', 'https://mariadb.com/kb/en/uninstall-plugin/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (292, 'ASBINARY', 32, 'AsBinary(g), AsWKB(g) Converts a value in internal geometry format to its WKB representation and returns the binary result. URL: https://mariadb.com/kb/en/asbinary/ ', 'SELECT AsBinary(g) FROM geom; ', 'https://mariadb.com/kb/en/asbinary/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (293, 'REPEAT FUNCTION', 37, 'Syntax: REPEAT(str,count) Returns a string consisting of the string str repeated count times. If count is less than 1, returns an empty string. Returns NULL if str or count are NULL. URL: https://mariadb.com/kb/en/repeat-function/ ', 'MariaDB> SELECT REPEAT(''MySQL'', 3); -> ''MySQLMySQLMySQL'' ', 'https://mariadb.com/kb/en/repeat-function/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (290, 'SYSDATE', 31, 'Syntax: SYSDATE() Returns the current date and time as a value in ''YYYY-MM-DD HH:MM:SS'' or YYYYMMDDHHMMSS.uuuuuu format, depending on whether the function is used in a string or numeric context. SYSDATE() returns the time at which it executes. This differs from the behavior for NOW(), which returns a constant time that indicates the time at which the statement began to execute. (Within a stored function or trigger, NOW() returns the time at which the function or triggering statement began to execute.) MariaDB> SELECT NOW(), SLEEP(2), NOW(); +---------------------+----------+---------------------+ | NOW() | SLEEP(2) | NOW() | +---------------------+----------+---------------------+ | 2006-04-12 13:47:36 | 0 | 2006-04-12 13:47:36 | +---------------------+----------+---------------------+ MariaDB> SELECT SYSDATE(), SLEEP(2), SYSDATE(); +---------------------+----------+---------------------+ | SYSDATE() | SLEEP(2) | SYSDATE() | +---------------------+----------+---------------------+ | 2006-04-12 13:47:44 | 0 | 2006-04-12 13:47:46 | +---------------------+----------+---------------------+ In addition, the SET TIMESTAMP statement affects the value returned by NOW() but not by SYSDATE(). This means that timestamp settings in the binary log have no effect on invocations of SYSDATE(). Because SYSDATE() can return different values even within the same statement, and is not affected by SET TIMESTAMP, it is nondeterministic and therefore unsafe for replication if statement-based binary logging is used. If that is a problem, you can use row-based logging. Alternatively, you can use the --sysdate-is-now option to cause SYSDATE() to be an alias for NOW(). This works if the option is used on both the master and the slave. The nondeterministic nature of SYSDATE() also means that indexes cannot be used for evaluating expressions that refer to it. URL: https://mariadb.com/kb/en/sysdate/ ', '', 'https://mariadb.com/kb/en/sysdate/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (294, 'SHOW TABLES', 26, 'Syntax: SHOW [FULL] TABLES [{FROM | IN} db_name] [LIKE ''pattern'' | WHERE expr] SHOW TABLES lists the non-TEMPORARY tables in a given database. You can also get this list using the mysqlshow db_name command. The LIKE clause, if present, indicates which table names to match. The WHERE clause can be given to select rows using more general conditions, as discussed in https://mariadb.com/kb/en/extended-show/. This statement also lists any views in the database. The FULL modifier is supported such that SHOW FULL TABLES displays a second output column. Values for the second column are BASE TABLE for a table and VIEW for a view. If you have no privileges for a base table or view, it does not show up in the output from SHOW TABLES or mysqlshow db_name. URL: https://mariadb.com/kb/en/show-tables/ ', '', 'https://mariadb.com/kb/en/show-tables/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (295, 'MAKEDATE', 31, 'Syntax: MAKEDATE(year,dayofyear) Returns a date, given year and day-of-year values. dayofyear must be greater than 0 or the result is NULL. URL: https://mariadb.com/kb/en/makedate/ ', 'MariaDB> SELECT MAKEDATE(2011,31), MAKEDATE(2011,32); -> ''2011-01-31'', ''2011-02-01'' MariaDB> SELECT MAKEDATE(2011,365), MAKEDATE(2014,365); -> ''2011-12-31'', ''2014-12-31'' MariaDB> SELECT MAKEDATE(2011,0); -> NULL ', 'https://mariadb.com/kb/en/makedate/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (296, 'BINARY OPERATOR', 37, 'Syntax: BINARY The BINARY operator casts the string following it to a binary string. This is an easy way to force a column comparison to be done byte by byte rather than character by character. This causes the comparison to be case sensitive even if the column is not defined as BINARY or BLOB. BINARY also causes trailing spaces to be significant. URL: https://mariadb.com/kb/en/binary-operator/ ', 'MariaDB> SELECT ''a'' = ''A''; -> 1 MariaDB> SELECT BINARY ''a'' = ''A''; -> 0 MariaDB> SELECT ''a'' = ''a ''; -> 1 MariaDB> SELECT BINARY ''a'' = ''a ''; -> 0 ', 'https://mariadb.com/kb/en/binary-operator/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (297, 'MBROVERLAPS', 6, 'MBROverlaps(g1,g2) Returns 1 or 0 to indicate whether the Minimum Bounding Rectangles of the two geometries g1 and g2 overlap. The term spatially overlaps is used if two geometries intersect and their intersection results in a geometry of the same dimension but not equal to either of the given geometries. URL: https://mariadb.com/kb/en/mbroverlaps/ ', '', 'https://mariadb.com/kb/en/mbroverlaps/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (298, 'SOUNDEX', 37, 'Syntax: SOUNDEX(str) Returns a soundex string from str. Two strings that sound almost the same should have identical soundex strings. A standard soundex string is four characters long, but the SOUNDEX() function returns an arbitrarily long string. You can use SUBSTRING() on the result to get a standard soundex string. All nonalphabetic characters in str are ignored. All international alphabetic characters outside the A-Z range are treated as vowels. *Important*: When using SOUNDEX(), you should be aware of the following limitations: o This function, as currently implemented, is intended to work well with strings that are in the English language only. Strings in other languages may not produce reliable results. o This function is not guaranteed to provide consistent results with strings that use multi-byte character sets, including utf-8. We hope to remove these limitations in a future release. See Bug #22638 for more information. URL: https://mariadb.com/kb/en/soundex/ ', 'MariaDB> SELECT SOUNDEX(''Hello''); -> ''H400'' MariaDB> SELECT SOUNDEX(''Quadratically''); -> ''Q36324'' ', 'https://mariadb.com/kb/en/soundex/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (299, 'MBRTOUCHES', 6, 'MBRTouches(g1,g2) Returns 1 or 0 to indicate whether the Minimum Bounding Rectangles of the two geometries g1 and g2 touch. Two geometries spatially touch if the interiors of the geometries do not intersect, but the boundary of one of the geometries intersects either the boundary or the interior of the other. URL: https://mariadb.com/kb/en/mbrtouches/ ', '', 'https://mariadb.com/kb/en/mbrtouches/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (300, 'DROP EVENT', 39, 'Syntax: DROP EVENT [IF EXISTS] event_name This statement drops the event named event_name. The event immediately ceases being active, and is deleted completely from the server. If the event does not exist, the error ERROR 1517 (HY000): Unknown event ''event_name'' results. You can override this and cause the statement to generate a warning for nonexistent events instead using IF EXISTS. This statement requires the EVENT privilege for the schema to which the event to be dropped belongs. URL: https://mariadb.com/kb/en/drop-event/ ', '', 'https://mariadb.com/kb/en/drop-event/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (301, 'INSERT SELECT', 27, 'Syntax: INSERT [LOW_PRIORITY | HIGH_PRIORITY] [IGNORE] [INTO] tbl_name [(col_name,...)] SELECT ... [ ON DUPLICATE KEY UPDATE col_name=expr, ... ] With INSERT ... SELECT, you can quickly insert many rows into a table from one or many tables. For example: INSERT INTO tbl_temp2 (fld_id) SELECT tbl_temp1.fld_order_id FROM tbl_temp1 WHERE tbl_temp1.fld_order_id > 100; URL: https://mariadb.com/kb/en/insert-select/ ', '', 'https://mariadb.com/kb/en/insert-select/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (302, 'CREATE PROCEDURE', 39, 'Syntax: CREATE [DEFINER = { user | CURRENT_USER }] PROCEDURE sp_name ([proc_parameter[,...]]) [characteristic ...] routine_body CREATE [DEFINER = { user | CURRENT_USER }] FUNCTION sp_name ([func_parameter[,...]]) RETURNS type [characteristic ...] routine_body proc_parameter: [ IN | OUT | INOUT ] param_name type func_parameter: param_name type type: Any valid MySQL data type characteristic: COMMENT ''string'' | LANGUAGE SQL | [NOT] DETERMINISTIC | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA } | SQL SECURITY { DEFINER | INVOKER } routine_body: Valid SQL routine statement These statements create stored routines. By default, a routine is associated with the default database. To associate the routine explicitly with a given database, specify the name as db_name.sp_name when you create it. The CREATE FUNCTION statement is also used in MySQL to support UDFs (user-defined functions). See https://mariadb.com/kb/en/create-function-udf/. A UDF can be regarded as an external stored function. Stored functions share their namespace with UDFs. See http://dev.mysql.com/doc/refman/5.5/en/function-resolution.html, for the rules describing how the server interprets references to different kinds of functions. To invoke a stored procedure, use the CALL statement (see [HELP CALL]). To invoke a stored function, refer to it in an expression. The function returns a value during expression evaluation. CREATE PROCEDURE and CREATE FUNCTION require the CREATE ROUTINE privilege. They might also require the SUPER privilege, depending on the DEFINER value, as described later in this section. If binary logging is enabled, CREATE FUNCTION might require the SUPER privilege, as described in https://mariadb.com/kb/en/binary-logging-of-stored-routines/. By default, MySQL automatically grants the ALTER ROUTINE and EXECUTE privileges to the routine creator. This behavior can be changed by disabling the automatic_sp_privileges system variable. See https://mariadb.com/kb/en/stored-routine-privileges/. The DEFINER and SQL SECURITY clauses specify the security context to be used when checking access privileges at routine execution time, as described later in this section. If the routine name is the same as the name of a built-in SQL function, a syntax error occurs unless you use a space between the name and the following parenthesis when defining the routine or invoking it later. For this reason, avoid using the names of existing SQL functions for your own stored routines. The IGNORE_SPACE SQL mode applies to built-in functions, not to stored routines. It is always permissible to have spaces after a stored routine name, regardless of whether IGNORE_SPACE is enabled. The parameter list enclosed within parentheses must always be present. If there are no parameters, an empty parameter list of () should be used. Parameter names are not case sensitive. Each parameter is an IN parameter by default. To specify otherwise for a parameter, use the keyword OUT or INOUT before the parameter name. *Note*: Specifying a parameter as IN, OUT, or INOUT is valid only for a PROCEDURE. For a FUNCTION, parameters are always regarded as IN parameters. An IN parameter passes a value into a procedure. The procedure might modify the value, but the modification is not visible to the caller when the procedure returns. An OUT parameter passes a value from the procedure back to the caller. Its initial value is NULL within the procedure, and its value is visible to the caller when the procedure returns. An INOUT parameter is initialized by the caller, can be modified by the procedure, and any change made by the procedure is visible to the caller when the procedure returns. For each OUT or INOUT parameter, pass a user-defined variable in the CALL statement that invokes the procedure so that you can obtain its value when the procedure returns. If you are calling the procedure from within another stored procedure or function, you can also pass a routine parameter or local routine variable as an IN or INOUT parameter. The following example shows a simple stored procedure that uses an OUT parameter: MariaDB> delimiter // MariaDB> CREATE PROCEDURE simpleproc (OUT param1 INT) -> BEGIN -> SELECT COUNT(*) INTO param1 FROM t; -> END// Query OK, 0 rows affected (0.00 sec) MariaDB> delimiter ; MariaDB> CALL simpleproc(@a); Query OK, 0 rows affected (0.00 sec) MariaDB> SELECT @a; +------+ | @a | +------+ | 3 | +------+ 1 row in set (0.00 sec) The example uses the mysql client delimiter command to change the statement delimiter from ; to // while the procedure is being defined. This enables the ; delimiter used in the procedure body to be passed through to the server rather than being interpreted by mysql itself. See https://mariadb.com/kb/en/stored-procedure-overview/. The RETURNS clause may be specified only for a FUNCTION, for which it is mandatory. It indicates the return type of the function, and the function body must contain a RETURN value statement. If the RETURN statement returns a value of a different type, the value is coerced to the proper type. For example, if a function specifies an ENUM or SET value in the RETURNS clause, but the RETURN statement returns an integer, the value returned from the function is the string for the corresponding ENUM member of set of SET members. The following example function takes a parameter, performs an operation using an SQL function, and returns the result. In this case, it is unnecessary to use delimiter because the function definition contains no internal ; statement delimiters: MariaDB> CREATE FUNCTION hello (s CHAR(20)) MariaDB> RETURNS CHAR(50) DETERMINISTIC -> RETURN CONCAT(''Hello, '',s,''!''); Query OK, 0 rows affected (0.00 sec) MariaDB> SELECT hello(''world''); +----------------+ | hello(''world'') | +----------------+ | Hello, world! | +----------------+ 1 row in set (0.00 sec) Parameter types and function return types can be declared to use any valid data type, except that the COLLATE attribute cannot be used prior to MySQL 5.5.3. As of 5.5.3, COLLATE can be used if preceded by the CHARACTER SET attribute. The routine_body consists of a valid SQL routine statement. This can be a simple statement such as SELECT or INSERT, or a compound statement written using BEGIN and END. Compound statements can contain declarations, loops, and other control structure statements. The syntax for these statements is described in https://mariadb.com/kb/programmatic-and-compound-statements. MySQL permits routines to contain DDL statements, such as CREATE and DROP. MySQL also permits stored procedures (but not stored functions) to contain SQL transaction statements such as COMMIT. Stored functions may not contain statements that perform explicit or implicit commit or rollback. Support for these statements is not required by the SQL standard, which states that each DBMS vendor may decide whether to permit them. Statements that return a result set can be used within a stored procedure but not within a stored function. This prohibition includes SELECT statements that do not have an INTO var_list clause and other statements such as SHOW, EXPLAIN, and CHECK TABLE. For statements that can be determined at function definition time to return a result set, a Not allowed to return a result set from a function error occurs (ER_SP_NO_RETSET). For statements that can be determined only at runtime to return a result set, a PROCEDURE %s can''t return a result set in the given context error occurs (ER_SP_BADSELECT). USE statements within stored routines are not permitted. When a routine is invoked, an implicit USE db_name is performed (and undone when the routine terminates). The causes the routine to have the given default database while it executes. References to objects in databases other than the routine default database should be qualified with the appropriate database name. For additional information about statements that are not permitted in stored routines, see https://mariadb.com/kb/en/stored-routine-privileges/ . For information about invoking stored procedures from within programs written in a language that has a MySQL interface, see [HELP CALL]. MySQL stores the sql_mode system variable setting that is in effect at the time a routine is created, and always executes the routine with this setting in force, regardless of the server SQL mode in effect when the routine is invoked. The switch from the SQL mode of the invoker to that of the routine occurs after evaluation of arguments and assignment of the resulting values to routine parameters. If you define a routine in strict SQL mode but invoke it in nonstrict mode, assignment of arguments to routine parameters does not take place in strict mode. If you require that expressions passed to a routine be assigned in strict SQL mode, you should invoke the routine with strict mode in effect. URL: https://mariadb.com/kb/en/create-procedure/ ', '', 'https://mariadb.com/kb/en/create-procedure/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (303, 'VARBINARY', 22, 'VARBINARY(M) The VARBINARY type is similar to the VARCHAR type, but stores binary byte strings rather than nonbinary character strings. M represents the maximum column length in bytes. URL: https://mariadb.com/kb/en/varbinary/ ', '', 'https://mariadb.com/kb/en/varbinary/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (304, 'LOAD INDEX', 26, 'Syntax: LOAD INDEX INTO CACHE tbl_index_list [, tbl_index_list] ... tbl_index_list: tbl_name [PARTITION (partition_list | ALL)] [[INDEX|KEY] (index_name[, index_name] ...)] [IGNORE LEAVES] partition_list: partition_name[, partition_name][, ...] The LOAD INDEX INTO CACHE statement preloads a table index into the key cache to which it has been assigned by an explicit CACHE INDEX statement, or into the default key cache otherwise. LOAD INDEX INTO CACHE is used only for MyISAM tables. In MySQL 5.5, it is also supported for partitioned MyISAM tables; in addition, indexes on partitioned tables can be preloaded for one, several, or all partitions. The IGNORE LEAVES modifier causes only blocks for the nonleaf nodes of the index to be preloaded. IGNORE LEAVES is also supported for partitioned MyISAM tables. URL: https://mariadb.com/kb/en/load-index/ ', '', 'https://mariadb.com/kb/en/load-index/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (305, 'UNION', 27, 'Syntax: SELECT ... UNION [ALL | DISTINCT] SELECT ... [UNION [ALL | DISTINCT] SELECT ...] UNION is used to combine the result from multiple SELECT statements into a single result set. The column names from the first SELECT statement are used as the column names for the results returned. Selected columns listed in corresponding positions of each SELECT statement should have the same data type. (For example, the first column selected by the first statement should have the same type as the first column selected by the other statements.) URL: https://mariadb.com/kb/en/union/ ', '', 'https://mariadb.com/kb/en/union/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (306, 'TO_DAYS', 31, 'Syntax: TO_DAYS(date) Given a date date, returns a day number (the number of days since year 0). URL: https://mariadb.com/kb/en/to_days/ ', 'MariaDB> SELECT TO_DAYS(950501); -> 728779 MariaDB> SELECT TO_DAYS(''2007-10-07''); -> 733321 ', 'https://mariadb.com/kb/en/to_days/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (307, 'NOT REGEXP', 37, 'Syntax: expr NOT REGEXP pat, expr NOT RLIKE pat This is the same as NOT (expr REGEXP pat). URL: https://mariadb.com/kb/en/not-regexp/ ', '', 'https://mariadb.com/kb/en/not-regexp/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (308, 'SHOW INDEX', 26, 'Syntax: SHOW {INDEX | INDEXES | KEYS} {FROM | IN} tbl_name [{FROM | IN} db_name] [WHERE expr] SHOW INDEX returns table index information. The format resembles that of the SQLStatistics call in ODBC. This statement requires some privilege for any column in the table. You can use db_name.tbl_name as an alternative to the tbl_name FROM db_name syntax. These two statements are equivalent: SHOW INDEX FROM mytable FROM mydb; SHOW INDEX FROM mydb.mytable; The WHERE clause can be given to select rows using more general conditions, as discussed in https://mariadb.com/kb/en/extended-show/. You can also list a table''s indexes with the mysqlshow -k db_name tbl_name command. URL: https://mariadb.com/kb/en/show-index/ ', '', 'https://mariadb.com/kb/en/show-index/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (309, 'SHOW CREATE DATABASE', 26, 'Syntax: SHOW CREATE {DATABASE | SCHEMA} [IF NOT EXISTS] db_name Shows the CREATE DATABASE statement that creates the given database. If the SHOW statement includes an IF NOT EXISTS clause, the output too includes such a clause. SHOW CREATE SCHEMA is a synonym for SHOW CREATE DATABASE. URL: https://mariadb.com/kb/en/show-create-database/ ', 'MariaDB> SHOW CREATE DATABASE test\\G *************************** 1. row *************************** Database: test Create Database: CREATE DATABASE `test` /*!40100 DEFAULT CHARACTER SET latin1 */ MariaDB> SHOW CREATE SCHEMA test\\G *************************** 1. row *************************** Database: test Create Database: CREATE DATABASE `test` /*!40100 DEFAULT CHARACTER SET latin1 */ ', 'https://mariadb.com/kb/en/show-create-database/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (310, 'LEAVE', 23, 'Syntax: LEAVE label This statement is used to exit the flow control construct that has the given label. If the label is for the outermost stored program block, LEAVE exits the program. LEAVE can be used within BEGIN ... END or loop constructs (LOOP, REPEAT, WHILE). URL: https://mariadb.com/kb/en/leave/ ', '', 'https://mariadb.com/kb/en/leave/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (311, 'NOT IN', 18, 'Syntax: expr NOT IN (value,...) This is the same as NOT (expr IN (value,...)). URL: https://mariadb.com/kb/en/not-in/ ', '', 'https://mariadb.com/kb/en/not-in/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (312, '!', 15, 'Syntax: NOT, ! Logical NOT. Evaluates to 1 if the operand is 0, to 0 if the operand is nonzero, and NOT NULL returns NULL. URL: https://mariadb.com/kb/en/not/ ', 'MariaDB> SELECT NOT 10; -> 0 MariaDB> SELECT NOT 0; -> 1 MariaDB> SELECT NOT NULL; -> NULL MariaDB> SELECT ! (1+1); -> 0 MariaDB> SELECT ! 1+1; -> 1 ', 'https://mariadb.com/kb/en/not/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (314, 'DOUBLE', 22, 'DOUBLE[(M,D)] [UNSIGNED] [ZEROFILL] A normal-size (double-precision) floating-point number. Permissible values are -1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and 2.2250738585072014E-308 to 1.7976931348623157E+308. These are the theoretical limits, based on the IEEE standard. The actual range might be slightly smaller depending on your hardware or operating system. M is the total number of digits and D is the number of digits following the decimal point. If M and D are omitted, values are stored to the limits permitted by the hardware. A double-precision floating-point number is accurate to approximately 15 decimal places. UNSIGNED, if specified, disallows negative values. URL: https://mariadb.com/kb/en/double/ ', '', 'https://mariadb.com/kb/en/double/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (315, 'TIME', 22, 'TIME A time. The range is ''-838:59:59'' to ''838:59:59''. MySQL displays TIME values in ''HH:MM:SS'' format, but permits assignment of values to TIME columns using either strings or numbers. URL: https://mariadb.com/kb/en/time/ ', '', 'https://mariadb.com/kb/en/time/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (316, '&&', 15, 'Syntax: AND, && Logical AND. Evaluates to 1 if all operands are nonzero and not NULL, to 0 if one or more operands are 0, otherwise NULL is returned. URL: https://mariadb.com/kb/en/and/ ', 'MariaDB> SELECT 1 && 1; -> 1 MariaDB> SELECT 1 && 0; -> 0 MariaDB> SELECT 1 && NULL; -> NULL MariaDB> SELECT 0 && NULL; -> 0 MariaDB> SELECT NULL && 0; -> 0 ', 'https://mariadb.com/kb/en/and/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (317, 'X', 11, 'X(p) Returns the X-coordinate value for the Point object p as a double-precision number. URL: https://mariadb.com/kb/en/x/ ', 'MariaDB> SELECT X(POINT(56.7, 53.34)); +-----------------------+ | X(POINT(56.7, 53.34)) | +-----------------------+ | 56.7 | +-----------------------+ ', 'https://mariadb.com/kb/en/x/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (318, 'SYSTEM_USER', 17, 'Syntax: SYSTEM_USER() SYSTEM_USER() is a synonym for USER(). URL: https://mariadb.com/kb/en/system_user/ ', '', 'https://mariadb.com/kb/en/system_user/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (319, 'FOUND_ROWS', 17, 'Syntax: FOUND_ROWS() A SELECT statement may include a LIMIT clause to restrict the number of rows the server returns to the client. In some cases, it is desirable to know how many rows the statement would have returned without the LIMIT, but without running the statement again. To obtain this row count, include a SQL_CALC_FOUND_ROWS option in the SELECT statement, and then invoke FOUND_ROWS() afterward: URL: https://mariadb.com/kb/en/found_rows/ ', 'MariaDB> SELECT SQL_CALC_FOUND_ROWS * FROM tbl_name -> WHERE id > 100 LIMIT 10; MariaDB> SELECT FOUND_ROWS(); ', 'https://mariadb.com/kb/en/found_rows/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (313, 'DECLARE HANDLER', 23, 'Syntax: DECLARE handler_action HANDLER FOR condition_value [, condition_value] ... statement handler_action: CONTINUE | EXIT | UNDO condition_value: mysql_error_code | SQLSTATE [VALUE] sqlstate_value | condition_name | SQLWARNING | NOT FOUND | SQLEXCEPTION The DECLARE ... HANDLER statement specifies a handler that deals with one or more conditions. If one of these conditions occurs, the specified statement executes. statement can be a simple statement such as SET var_name = value, or a compound statement written using BEGIN and END (see [HELP BEGIN END]). Handler declarations must appear after variable or condition declarations. The handler_action value indicates what action the handler takes after execution of the handler statement: o CONTINUE: Execution of the current program continues. o EXIT: Execution terminates for the BEGIN ... END compound statement in which the handler is declared. This is true even if the condition occurs in an inner block. o UNDO: Not supported. The condition_value for DECLARE ... HANDLER indicates the specific condition or class of conditions that activates the handler: o A MySQL error code (a number) or an SQLSTATE value (a 5-character string literal). You should not use MySQL error code 0 or SQLSTATE values that begin with ''00'', because those indicate success rather than an error condition. For a list of MySQL error codes and SQLSTATE values, see https://mariadb.com/kb/en/mariadb-error-codes/. o A condition name previously specified with DECLARE ... CONDITION. A condition name can be associated with a MySQL error code or SQLSTATE value. See [HELP DECLARE CONDITION]. o SQLWARNING is shorthand for the class of SQLSTATE values that begin with ''01''. o NOT FOUND is shorthand for the class of SQLSTATE values that begin with ''02''. This is relevant within the context of cursors and is used to control what happens when a cursor reaches the end of a data set. If no more rows are available, a No Data condition occurs with SQLSTATE value ''02000''. To detect this condition, you can set up a handler for it (or for a NOT FOUND condition). For an example, see https://mariadb.com/kb/en/cursor-overview/. This condition also occurs for SELECT ... INTO var_list statements that retrieve no rows. o SQLEXCEPTION is shorthand for the class of SQLSTATE values that do not begin with ''00'', ''01'', or ''02''. If a condition occurs for which no handler has been declared, the action taken depends on the condition class: o For SQLEXCEPTION conditions, the stored program terminates at the statement that raised the condition, as if there were an EXIT handler. If the program was called by another stored program, the calling program handles the condition using the handler selection rules applied to its own handlers. o For SQLWARNING conditions, the program continues executing, as if there were a CONTINUE handler. o For NOT FOUND conditions, if the condition was raised normally, the action is CONTINUE. If it was raised by SIGNAL or RESIGNAL, the action is EXIT. URL: https://mariadb.com/kb/en/declare-handler/ ', 'MariaDB> CREATE TABLE test.t (s1 INT, PRIMARY KEY (s1)); Query OK, 0 rows affected (0.00 sec) MariaDB> delimiter // MariaDB> CREATE PROCEDURE handlerdemo () -> BEGIN -> DECLARE CONTINUE HANDLER FOR SQLSTATE ''23000'' SET @x2 = 1; -> SET @x = 1; -> INSERT INTO test.t VALUES (1); -> SET @x = 2; -> INSERT INTO test.t VALUES (1); -> SET @x = 3; -> END; -> // Query OK, 0 rows affected (0.00 sec) MariaDB> CALL handlerdemo()// Query OK, 0 rows affected (0.00 sec) MariaDB> SELECT @x// +------+ | @x | +------+ | 3 | +------+ 1 row in set (0.00 sec) ', 'https://mariadb.com/kb/en/declare-handler/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (320, 'CROSSES', 30, 'Crosses(g1,g2) Returns 1 if g1 spatially crosses g2. Returns NULL if g1 is a Polygon or a MultiPolygon, or if g2 is a Point or a MultiPoint. Otherwise, returns 0. The term spatially crosses denotes a spatial relation between two given geometries that has the following properties: o The two geometries intersect o Their intersection results in a geometry that has a dimension that is one less than the maximum dimension of the two given geometries o Their intersection is not equal to either of the two given geometries URL: https://mariadb.com/kb/en/crosses/ ', '', 'https://mariadb.com/kb/en/crosses/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (321, 'TRUNCATE TABLE', 39, 'Syntax: TRUNCATE [TABLE] tbl_name TRUNCATE TABLE empties a table completely. It requires the DROP privilege. Logically, TRUNCATE TABLE is similar to a DELETE statement that deletes all rows, or a sequence of DROP TABLE and CREATE TABLE statements. To achieve high performance, it bypasses the DML method of deleting data. Thus, it cannot be rolled back, it does not cause ON DELETE triggers to fire, and it cannot be performed for InnoDB tables with parent-child foreign key relationships. Although TRUNCATE TABLE is similar to DELETE, it is classified as a DDL statement rather than a DML statement. It differs from DELETE in the following ways in MySQL 5.5: o Truncate operations drop and re-create the table, which is much faster than deleting rows one by one, particularly for large tables. o Truncate operations cause an implicit commit, and so cannot be rolled back. o Truncation operations cannot be performed if the session holds an active table lock. o TRUNCATE TABLE fails for an InnoDB table if there are any FOREIGN KEY constraints from other tables that reference the table. Foreign key constraints between columns of the same table are permitted. o Truncation operations do not return a meaningful value for the number of deleted rows. The usual result is "0 rows affected," which should be interpreted as "no information." o As long as the table format file tbl_name.frm is valid, the table can be re-created as an empty table with TRUNCATE TABLE, even if the data or index files have become corrupted. o Any AUTO_INCREMENT value is reset to its start value. This is true even for MyISAM and InnoDB, which normally do not reuse sequence values. o When used with partitioned tables, TRUNCATE TABLE preserves the partitioning; that is, the data and index files are dropped and re-created, while the partition definitions (.par) file is unaffected. o The TRUNCATE TABLE statement does not invoke ON DELETE triggers. URL: https://mariadb.com/kb/en/truncate-table/ ', '', 'https://mariadb.com/kb/en/truncate-table/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (322, 'BIT_XOR', 16, 'Syntax: BIT_XOR(expr) Returns the bitwise XOR of all bits in expr. The calculation is performed with 64-bit (BIGINT) precision. URL: https://mariadb.com/kb/en/bit_xor/ ', '', 'https://mariadb.com/kb/en/bit_xor/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (323, 'CURRENT_DATE', 31, 'Syntax: CURRENT_DATE, CURRENT_DATE() CURRENT_DATE and CURRENT_DATE() are synonyms for CURDATE(). URL: https://mariadb.com/kb/en/current_date/ ', '', 'https://mariadb.com/kb/en/current_date/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (325, 'AREA', 2, 'Area(poly) Returns as a double-precision number the area of the Polygon value poly, as measured in its spatial reference system. URL: https://mariadb.com/kb/en/area/ ', 'MariaDB> SET @poly = ''Polygon((0 0,0 3,3 0,0 0),(1 1,1 2,2 1,1 1))''; MariaDB> SELECT Area(GeomFromText(@poly)); +---------------------------+ | Area(GeomFromText(@poly)) | +---------------------------+ | 4 | +---------------------------+ ', 'https://mariadb.com/kb/en/area/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (324, 'START SLAVE', 8, 'Syntax: START SLAVE [thread_types] START SLAVE [SQL_THREAD] UNTIL MASTER_LOG_FILE = ''log_name'', MASTER_LOG_POS = log_pos START SLAVE [SQL_THREAD] UNTIL RELAY_LOG_FILE = ''log_name'', RELAY_LOG_POS = log_pos thread_types: [thread_type [, thread_type] ... ] thread_type: IO_THREAD | SQL_THREAD START SLAVE with no thread_type options starts both of the slave threads. The I/O thread reads events from the master server and stores them in the relay log. The SQL thread reads events from the relay log and executes them. START SLAVE requires the SUPER privilege. If START SLAVE succeeds in starting the slave threads, it returns without any error. However, even in that case, it might be that the slave threads start and then later stop (for example, because they do not manage to connect to the master or read its binary log, or some other problem). START SLAVE does not warn you about this. You must check the slave''s error log for error messages generated by the slave threads, or check that they are running satisfactorily with SHOW SLAVE STATUS. URL: https://mariadb.com/kb/en/start-slave/ ', '', 'https://mariadb.com/kb/en/start-slave/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (326, 'FLUSH', 26, 'Syntax: FLUSH [NO_WRITE_TO_BINLOG | LOCAL] flush_option [, flush_option] ... The FLUSH statement has several variant forms that clear or reload various internal caches, flush tables, or acquire locks. To execute FLUSH, you must have the RELOAD privilege. Specific flush options might require additional privileges, as described later. By default, the server writes FLUSH statements to the binary log so that they replicate to replication slaves. To suppress logging, use the optional NO_WRITE_TO_BINLOG keyword or its alias LOCAL. *Note*: FLUSH LOGS, FLUSH MASTER, FLUSH SLAVE, and FLUSH TABLES WITH READ LOCK (with or without a table list) are not written to the binary log in any case because they would cause problems if replicated to a slave. The FLUSH statement causes an implicit commit. See http://dev.mysql.com/doc/refman/5.5/en/implicit-commit.html. The RESET statement is similar to FLUSH. See [HELP RESET], for information about using the RESET statement with replication. URL: https://mariadb.com/kb/en/flush/ ', '', 'https://mariadb.com/kb/en/flush/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (327, 'BEGIN END', 23, 'Syntax: [begin_label:] BEGIN [statement_list] END [end_label] BEGIN ... END syntax is used for writing compound statements, which can appear within stored programs (stored procedures and functions, triggers, and events). A compound statement can contain multiple statements, enclosed by the BEGIN and END keywords. statement_list represents a list of one or more statements, each terminated by a semicolon (;) statement delimiter. The statement_list itself is optional, so the empty compound statement (BEGIN END) is legal. BEGIN ... END blocks can be nested. Use of multiple statements requires that a client is able to send statement strings containing the ; statement delimiter. In the mysql command-line client, this is handled with the delimiter command. Changing the ; end-of-statement delimiter (for example, to //) permit ; to be used in a program body. For an example, see https://mariadb.com/kb/en/stored-procedure-overview/. A BEGIN ... END block can be labeled. See [HELP labels]. URL: https://mariadb.com/kb/en/begin-end/ ', '', 'https://mariadb.com/kb/en/begin-end/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (328, 'SHOW PROCEDURE STATUS', 26, 'Syntax: SHOW PROCEDURE STATUS [LIKE ''pattern'' | WHERE expr] This statement is a MySQL extension. It returns characteristics of a stored procedure, such as the database, name, type, creator, creation and modification dates, and character set information. A similar statement, SHOW FUNCTION STATUS, displays information about stored functions (see [HELP SHOW FUNCTION STATUS]). The LIKE clause, if present, indicates which procedure or function names to match. The WHERE clause can be given to select rows using more general conditions, as discussed in https://mariadb.com/kb/en/extended-show/. URL: https://mariadb.com/kb/en/show-procedure-status/ ', 'MariaDB> SHOW PROCEDURE STATUS LIKE ''sp1''\\G *************************** 1. row *************************** Db: test Name: sp1 Type: PROCEDURE Definer: testuser@localhost Modified: 2004-08-03 15:29:37 Created: 2004-08-03 15:29:37 Security_type: DEFINER Comment: character_set_client: latin1 collation_connection: latin1_swedish_ci Database Collation: latin1_swedish_ci ', 'https://mariadb.com/kb/en/show-procedure-status/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (329, 'DESCRIBE', 28, 'Syntax: {DESCRIBE | DESC} tbl_name [col_name | wild] DESCRIBE provides information about the columns in a table. It is a shortcut for SHOW COLUMNS FROM. These statements also display information for views. (See [HELP SHOW COLUMNS].) col_name can be a column name, or a string containing the SQL "%" and "_" wildcard characters to obtain output only for the columns with names matching the string. There is no need to enclose the string within quotation marks unless it contains spaces or other special characters. MariaDB> DESCRIBE City; +------------+----------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +------------+----------+------+-----+---------+----------------+ | Id | int(11) | NO | PRI | NULL | auto_increment | | Name | char(35) | NO | | | | | Country | char(3) | NO | UNI | | | | District | char(20) | YES | MUL | | | | Population | int(11) | NO | | 0 | | +------------+----------+------+-----+---------+----------------+ 5 rows in set (0.00 sec) The description for SHOW COLUMNS provides more information about the output columns (see [HELP SHOW COLUMNS]). URL: https://mariadb.com/kb/en/describe/ ', '', 'https://mariadb.com/kb/en/describe/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (331, 'DROP USER', 10, 'Syntax: DROP USER user [, user] ... The DROP USER statement removes one or more MySQL accounts and their privileges. It removes privilege rows for the account from all grant tables. To use this statement, you must have the global CREATE USER privilege or the DELETE privilege for the mysql database. Each account name uses the format described in https://mariadb.com/kb/en/create-user#account-names. For example: DROP USER ''jeffrey''@''localhost''; If you specify only the user name part of the account name, a host name part of ''%'' is used. URL: https://mariadb.com/kb/en/drop-user/ ', '', 'https://mariadb.com/kb/en/drop-user/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (332, 'STDDEV_POP', 16, 'Syntax: STDDEV_POP(expr) Returns the population standard deviation of expr (the square root of VAR_POP()). You can also use STD() or STDDEV(), which are equivalent but not standard SQL. STDDEV_POP() returns NULL if there were no matching rows. URL: https://mariadb.com/kb/en/stddev_pop/ ', '', 'https://mariadb.com/kb/en/stddev_pop/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (335, 'ISEMPTY', 36, 'IsEmpty(g) Returns 1 if the geometry value g is the empty geometry, 0 if it is not empty, and -1 if the argument is NULL. If the geometry is empty, it represents the empty point set. URL: https://mariadb.com/kb/en/isempty/ ', '', 'https://mariadb.com/kb/en/isempty/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (336, 'SHOW FUNCTION STATUS', 26, 'Syntax: SHOW FUNCTION STATUS [LIKE ''pattern'' | WHERE expr] This statement is similar to SHOW PROCEDURE STATUS but for stored functions. See [HELP SHOW PROCEDURE STATUS]. URL: https://mariadb.com/kb/en/show-function-status/ ', '', 'https://mariadb.com/kb/en/show-function-status/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (330, 'SHOW WARNINGS', 26, 'Syntax: SHOW WARNINGS [LIMIT [offset,] row_count] SHOW COUNT(*) WARNINGS SHOW WARNINGS shows information about the conditions (errors, warnings, and notes) that resulted from the last statement in the current session that generated messages. It shows nothing if the last statement used a table and generated no messages. (That is, a statement that uses a table but generates no messages clears the message list.) Statements that do not use tables and do not generate messages have no effect on the message list. Warnings are generated for DML statements such as INSERT, UPDATE, and LOAD DATA INFILE as well as DDL statements such as CREATE TABLE and ALTER TABLE. SHOW WARNINGS is also used following EXPLAIN EXTENDED, to display the extra information generated by EXPLAIN when the EXTENDED keyword is used. See https://mariadb.com/kb/en/explain#explain-extended. The LIMIT clause has the same syntax as for the SELECT statement. See https://mariadb.com/kb/en/select/. A related statement, SHOW ERRORS, shows only the error conditions (it excludes warnings and notes). See [HELP SHOW ERRORS]. The SHOW COUNT(*) WARNINGS statement displays the total number of errors, warnings, and notes. You can also retrieve this number from the warning_count system variable: SHOW COUNT(*) WARNINGS; SELECT @@warning_count; URL: https://mariadb.com/kb/en/show-warnings/ ', '', 'https://mariadb.com/kb/en/show-warnings/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (333, 'SHOW CHARACTER SET', 26, 'Syntax: SHOW CHARACTER SET [LIKE ''pattern'' | WHERE expr] The SHOW CHARACTER SET statement shows all available character sets. The LIKE clause, if present, indicates which character set names to match. The WHERE clause can be given to select rows using more general conditions, as discussed in https://mariadb.com/kb/en/extended-show/. For example: MariaDB> SHOW CHARACTER SET LIKE ''latin%''; +---------+-----------------------------+-------------------+--------+ | Charset | Description | Default collation | Maxlen | +---------+-----------------------------+-------------------+--------+ | latin1 | cp1252 West European | latin1_swedish_ci | 1 | | latin2 | ISO 8859-2 Central European | latin2_general_ci | 1 | | latin5 | ISO 8859-9 Turkish | latin5_turkish_ci | 1 | | latin7 | ISO 8859-13 Baltic | latin7_general_ci | 1 | +---------+-----------------------------+-------------------+--------+ URL: https://mariadb.com/kb/en/show-character-set/ ', '', 'https://mariadb.com/kb/en/show-character-set/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (334, 'SUBSTRING', 37, 'Syntax: SUBSTRING(str,pos), SUBSTRING(str FROM pos), SUBSTRING(str,pos,len), SUBSTRING(str FROM pos FOR len) The forms without a len argument return a substring from string str starting at position pos. The forms with a len argument return a substring len characters long from string str, starting at position pos. The forms that use FROM are standard SQL syntax. It is also possible to use a negative value for pos. In this case, the beginning of the substring is pos characters from the end of the string, rather than the beginning. A negative value may be used for pos in any of the forms of this function. For all forms of SUBSTRING(), the position of the first character in the string from which the substring is to be extracted is reckoned as 1. URL: https://mariadb.com/kb/en/substring/ ', 'MariaDB> SELECT SUBSTRING(''Quadratically'',5); -> ''ratically'' MariaDB> SELECT SUBSTRING(''foobarbar'' FROM 4); -> ''barbar'' MariaDB> SELECT SUBSTRING(''Quadratically'',5,6); -> ''ratica'' MariaDB> SELECT SUBSTRING(''Sakila'', -3); -> ''ila'' MariaDB> SELECT SUBSTRING(''Sakila'', -5, 3); -> ''aki'' MariaDB> SELECT SUBSTRING(''Sakila'' FROM -4 FOR 2); -> ''ki'' ', 'https://mariadb.com/kb/en/substring/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (337, 'LTRIM', 37, 'Syntax: LTRIM(str) Returns the string str with leading space characters removed. URL: https://mariadb.com/kb/en/ltrim/ ', 'MariaDB> SELECT LTRIM('' barbar''); -> ''barbar'' ', 'https://mariadb.com/kb/en/ltrim/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (338, 'INTERSECTS', 30, 'Intersects(g1,g2) Returns 1 or 0 to indicate whether g1 spatially intersects g2. URL: https://mariadb.com/kb/en/intersects/ ', '', 'https://mariadb.com/kb/en/intersects/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (339, 'CALL', 27, 'Syntax: CALL sp_name([parameter[,...]]) CALL sp_name[()] The CALL statement invokes a stored procedure that was defined previously with CREATE PROCEDURE. Stored procedures that take no arguments can be invoked without parentheses. That is, CALL p() and CALL p are equivalent. CALL can pass back values to its caller using parameters that are declared as OUT or INOUT parameters. When the procedure returns, a client program can also obtain the number of rows affected for the final statement executed within the routine: At the SQL level, call the ROW_COUNT() function; from the C API, call the mysql_affected_rows() function. URL: https://mariadb.com/kb/en/call/ ', '', 'https://mariadb.com/kb/en/call/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (340, 'MBRDISJOINT', 6, 'MBRDisjoint(g1,g2) Returns 1 or 0 to indicate whether the Minimum Bounding Rectangles of the two geometries g1 and g2 are disjoint (do not intersect). URL: https://mariadb.com/kb/en/mbrdisjoint/ ', '', 'https://mariadb.com/kb/en/mbrdisjoint/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (342, 'SUBSTRING_INDEX', 37, 'Syntax: SUBSTRING_INDEX(str,delim,count) Returns the substring from string str before count occurrences of the delimiter delim. If count is positive, everything to the left of the final delimiter (counting from the left) is returned. If count is negative, everything to the right of the final delimiter (counting from the right) is returned. SUBSTRING_INDEX() performs a case-sensitive match when searching for delim. URL: https://mariadb.com/kb/en/substring_index/ ', 'MariaDB> SELECT SUBSTRING_INDEX(''www.mariadb.org'', ''.'', 2); -> ''www.mariadb'' MariaDB> SELECT SUBSTRING_INDEX(''www.mariadb.org'', ''.'', -2); -> ''mariadb.org'' ', 'https://mariadb.com/kb/en/substring_index/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (343, 'ENCODE', 12, 'Syntax: ENCODE(str,pass_str) Encrypt str using pass_str as the password. To decrypt the result, use DECODE(). The result is a binary string of the same length as str. The strength of the encryption is based on how good the random generator is. It should suffice for short strings. URL: https://mariadb.com/kb/en/encode/ ', '', 'https://mariadb.com/kb/en/encode/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (345, 'TRUNCATE', 4, 'Syntax: TRUNCATE(X,D) Returns the number X, truncated to D decimal places. If D is 0, the result has no decimal point or fractional part. D can be negative to cause D digits left of the decimal point of the value X to become zero. URL: https://mariadb.com/kb/en/truncate/ ', 'MariaDB> SELECT TRUNCATE(1.223,1); -> 1.2 MariaDB> SELECT TRUNCATE(1.999,1); -> 1.9 MariaDB> SELECT TRUNCATE(1.999,0); -> 1 MariaDB> SELECT TRUNCATE(-1.999,1); -> -1.9 MariaDB> SELECT TRUNCATE(122,-2); -> 100 MariaDB> SELECT TRUNCATE(10.28*100,0); -> 1028 ', 'https://mariadb.com/kb/en/truncate/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (348, 'GREATEST', 18, 'Syntax: GREATEST(value1,value2,...) With two or more arguments, returns the largest (maximum-valued) argument. The arguments are compared using the same rules as for LEAST(). URL: https://mariadb.com/kb/en/greatest/ ', 'MariaDB> SELECT GREATEST(2,0); -> 2 MariaDB> SELECT GREATEST(34.0,3.0,5.0,767.0); -> 767.0 MariaDB> SELECT GREATEST(''B'',''A'',''C''); -> ''C'' ', 'https://mariadb.com/kb/en/greatest/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (341, 'VALUES', 14, 'Syntax: VALUES(col_name) In an INSERT ... ON DUPLICATE KEY UPDATE statement, you can use the VALUES(col_name) function in the UPDATE clause to refer to column values from the INSERT portion of the statement. In other words, VALUES(col_name) in the UPDATE clause refers to the value of col_name that would be inserted, had no duplicate-key conflict occurred. This function is especially useful in multiple-row inserts. The VALUES() function is meaningful only in the ON DUPLICATE KEY UPDATE clause of INSERT statements and returns NULL otherwise. See https://mariadb.com/kb/en/insert-on-duplicate-key-update/. URL: https://mariadb.com/kb/en/values/ ', 'MariaDB> INSERT INTO table (a,b,c) VALUES (1,2,3),(4,5,6) -> ON DUPLICATE KEY UPDATE c=VALUES(a)+VALUES(b); ', 'https://mariadb.com/kb/en/values/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (344, 'LOOP', 23, 'Syntax: [begin_label:] LOOP statement_list END LOOP [end_label] LOOP implements a simple loop construct, enabling repeated execution of the statement list, which consists of one or more statements, each terminated by a semicolon (;) statement delimiter. The statements within the loop are repeated until the loop is terminated. Usually, this is accomplished with a LEAVE statement. Within a stored function, RETURN can also be used, which exits the function entirely. Neglecting to include a loop-termination statement results in an infinite loop. A LOOP statement can be labeled. For the rules regarding label use, see [HELP labels]. URL: https://mariadb.com/kb/en/loop/ ', 'CREATE PROCEDURE doiterate(p1 INT) BEGIN label1: LOOP SET p1 = p1 + 1; IF p1 < 10 THEN ITERATE label1; END IF; LEAVE label1; END LOOP label1; SET @x = p1; END; ', 'https://mariadb.com/kb/en/loop/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (346, 'TIMESTAMPADD', 31, 'Syntax: TIMESTAMPADD(unit,interval,datetime_expr) Adds the integer expression interval to the date or datetime expression datetime_expr. The unit for interval is given by the unit argument, which should be one of the following values: MICROSECOND (microseconds), SECOND, MINUTE, HOUR, DAY, WEEK, MONTH, QUARTER, or YEAR. It is possible to use FRAC_SECOND in place of MICROSECOND, but FRAC_SECOND is deprecated. FRAC_SECOND was removed in MySQL 5.5.3. The unit value may be specified using one of keywords as shown, or with a prefix of SQL_TSI_. For example, DAY and SQL_TSI_DAY both are legal. URL: https://mariadb.com/kb/en/timestampadd/ ', 'MariaDB> SELECT TIMESTAMPADD(MINUTE,1,''2003-01-02''); -> ''2003-01-02 00:01:00'' MariaDB> SELECT TIMESTAMPADD(WEEK,1,''2003-01-02''); -> ''2003-01-09'' ', 'https://mariadb.com/kb/en/timestampadd/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (347, 'SHOW', 26, 'SHOW has many forms that provide information about databases, tables, columns, or status information about the server. This section describes those following: SHOW AUTHORS SHOW {BINARY | MASTER} LOGS SHOW BINLOG EVENTS [IN ''log_name''] [FROM pos] [LIMIT [offset,] row_count] SHOW CHARACTER SET [like_or_where] SHOW COLLATION [like_or_where] SHOW [FULL] COLUMNS FROM tbl_name [FROM db_name] [like_or_where] SHOW CONTRIBUTORS SHOW CREATE DATABASE db_name SHOW CREATE EVENT event_name SHOW CREATE FUNCTION func_name SHOW CREATE PROCEDURE proc_name SHOW CREATE TABLE tbl_name SHOW CREATE TRIGGER trigger_name SHOW CREATE VIEW view_name SHOW DATABASES [like_or_where] SHOW ENGINE engine_name {STATUS | MUTEX} SHOW [STORAGE] ENGINES SHOW ERRORS [LIMIT [offset,] row_count] SHOW EVENTS SHOW FUNCTION CODE func_name SHOW FUNCTION STATUS [like_or_where] SHOW GRANTS FOR user SHOW INDEX FROM tbl_name [FROM db_name] SHOW MASTER STATUS SHOW OPEN TABLES [FROM db_name] [like_or_where] SHOW PLUGINS SHOW PROCEDURE CODE proc_name SHOW PROCEDURE STATUS [like_or_where] SHOW PRIVILEGES SHOW [FULL] PROCESSLIST SHOW PROFILE [types] [FOR QUERY n] [OFFSET n] [LIMIT n] SHOW PROFILES SHOW SLAVE HOSTS SHOW SLAVE STATUS SHOW [GLOBAL | SESSION] STATUS [like_or_where] SHOW TABLE STATUS [FROM db_name] [like_or_where] SHOW [FULL] TABLES [FROM db_name] [like_or_where] SHOW TRIGGERS [FROM db_name] [like_or_where] SHOW [GLOBAL | SESSION] VARIABLES [like_or_where] SHOW WARNINGS [LIMIT [offset,] row_count] like_or_where: LIKE ''pattern'' | WHERE expr If the syntax for a given SHOW statement includes a LIKE ''pattern'' part, ''pattern'' is a string that can contain the SQL "%" and "_" wildcard characters. The pattern is useful for restricting statement output to matching values. Several SHOW statements also accept a WHERE clause that provides more flexibility in specifying which rows to display. See https://mariadb.com/kb/en/extended-show/. URL: https://mariadb.com/kb/en/show/ ', '', 'https://mariadb.com/kb/en/show/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (349, 'SHOW VARIABLES', 26, 'Syntax: SHOW [GLOBAL | SESSION] VARIABLES [LIKE ''pattern'' | WHERE expr] SHOW VARIABLES shows the values of MySQL system variables. This information also can be obtained using the mysqladmin variables command. The LIKE clause, if present, indicates which variable names to match. The WHERE clause can be given to select rows using more general conditions, as discussed in https://mariadb.com/kb/en/extended-show/. This statement does not require any privilege. It requires only the ability to connect to the server. With the GLOBAL modifier, SHOW VARIABLES displays the values that are used for new connections to MySQL. As of MySQL 5.5.3, if a variable has no global value, no value is displayed. Before 5.5.3, the session value is displayed. With SESSION, SHOW VARIABLES displays the values that are in effect for the current connection. If no modifier is present, the default is SESSION. LOCAL is a synonym for SESSION. With a LIKE clause, the statement displays only rows for those variables with names that match the pattern. To obtain the row for a specific variable, use a LIKE clause as shown: SHOW VARIABLES LIKE ''max_join_size''; SHOW SESSION VARIABLES LIKE ''max_join_size''; To get a list of variables whose name match a pattern, use the "%" wildcard character in a LIKE clause: SHOW VARIABLES LIKE ''%size%''; SHOW GLOBAL VARIABLES LIKE ''%size%''; Wildcard characters can be used in any position within the pattern to be matched. Strictly speaking, because "_" is a wildcard that matches any single character, you should escape it as "\\_" to match it literally. In practice, this is rarely necessary. URL: https://mariadb.com/kb/en/show-variables/ ', '', 'https://mariadb.com/kb/en/show-variables/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (350, 'BINLOG', 26, 'Syntax: BINLOG ''str'' BINLOG is an internal-use statement. It is generated by the mysqlbinlog program as the printable representation of certain events in binary log files. (See https://mariadb.com/kb/en/mysqlbinlog/.) The ''str'' value is a base 64-encoded string the that server decodes to determine the data change indicated by the corresponding event. This statement requires the SUPER privilege. URL: https://mariadb.com/kb/en/binlog/ ', '', 'https://mariadb.com/kb/en/binlog/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (351, 'BIT_AND', 16, 'Syntax: BIT_AND(expr) Returns the bitwise AND of all bits in expr. The calculation is performed with 64-bit (BIGINT) precision. URL: https://mariadb.com/kb/en/bit_and/ ', '', 'https://mariadb.com/kb/en/bit_and/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (352, 'SECOND', 31, 'Syntax: SECOND(time) Returns the second for time, in the range 0 to 59. URL: https://mariadb.com/kb/en/second/ ', 'MariaDB> SELECT SECOND(''10:05:03''); -> 3 ', 'https://mariadb.com/kb/en/second/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (353, 'ATAN2', 4, 'Syntax: ATAN(Y,X), ATAN2(Y,X) Returns the arc tangent of the two variables X and Y. It is similar to calculating the arc tangent of Y / X, except that the signs of both arguments are used to determine the quadrant of the result. URL: https://mariadb.com/kb/en/atan2/ ', 'MariaDB> SELECT ATAN(-2,2); -> -0.78539816339745 MariaDB> SELECT ATAN2(PI(),0); -> 1.5707963267949 ', 'https://mariadb.com/kb/en/atan2/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (354, 'MBRCONTAINS', 6, 'MBRContains(g1,g2) Returns 1 or 0 to indicate whether the Minimum Bounding Rectangle of g1 contains the Minimum Bounding Rectangle of g2. This tests the opposite relationship as MBRWithin(). URL: https://mariadb.com/kb/en/mbrcontains/ ', 'MariaDB> SET @g1 = GeomFromText(''Polygon((0 0,0 3,3 3,3 0,0 0))''); MariaDB> SET @g2 = GeomFromText(''Point(1 1)''); MariaDB> SELECT MBRContains(@g1,@g2), MBRContains(@g2,@g1); ----------------------+----------------------+ | MBRContains(@g1,@g2) | MBRContains(@g2,@g1) | +----------------------+----------------------+ | 1 | 0 | +----------------------+----------------------+ ', 'https://mariadb.com/kb/en/mbrcontains/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (355, 'HOUR', 31, 'Syntax: HOUR(time) Returns the hour for time. The range of the return value is 0 to 23 for time-of-day values. However, the range of TIME values actually is much larger, so HOUR can return values greater than 23. URL: https://mariadb.com/kb/en/hour/ ', 'MariaDB> SELECT HOUR(''10:05:03''); -> 10 MariaDB> SELECT HOUR(''272:59:59''); -> 272 ', 'https://mariadb.com/kb/en/hour/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (356, 'SELECT', 27, 'Syntax: SELECT [ALL | DISTINCT | DISTINCTROW ] [HIGH_PRIORITY] [STRAIGHT_JOIN] [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT] [SQL_CACHE | SQL_NO_CACHE] [SQL_CALC_FOUND_ROWS] select_expr [, select_expr ...] [FROM table_references [WHERE where_condition] [GROUP BY {col_name | expr | position} [ASC | DESC], ... [WITH ROLLUP]] [HAVING where_condition] [ORDER BY {col_name | expr | position} [ASC | DESC], ...] [LIMIT {[offset,] row_count | row_count OFFSET offset}] [PROCEDURE procedure_name(argument_list)] [INTO OUTFILE ''file_name'' [CHARACTER SET charset_name] export_options | INTO DUMPFILE ''file_name'' | INTO var_name [, var_name]] [FOR UPDATE | LOCK IN SHARE MODE]] SELECT is used to retrieve rows selected from one or more tables, and can include UNION statements and subqueries. See [HELP UNION], and https://mariadb.com/kb/en/subqueries/. The most commonly used clauses of SELECT statements are these: o Each select_expr indicates a column that you want to retrieve. There must be at least one select_expr. o table_references indicates the table or tables from which to retrieve rows. Its syntax is described in [HELP JOIN]. o The WHERE clause, if given, indicates the condition or conditions that rows must satisfy to be selected. where_condition is an expression that evaluates to true for each row to be selected. The statement selects all rows if there is no WHERE clause. In the WHERE expression, you can use any of the functions and operators that MySQL supports, except for aggregate (summary) functions. See https://mariadb.com/kb/en/select#select-expressions, and https://mariadb.com/kb/en/functions-and-operators/. SELECT can also be used to retrieve rows computed without reference to any table. URL: https://mariadb.com/kb/en/select/ ', '', 'https://mariadb.com/kb/en/select/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (357, 'COT', 4, 'Syntax: COT(X) Returns the cotangent of X. URL: https://mariadb.com/kb/en/cot/ ', 'MariaDB> SELECT COT(12); -> -1.5726734063977 MariaDB> SELECT COT(0); -> NULL ', 'https://mariadb.com/kb/en/cot/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (358, 'SHOW CREATE EVENT', 26, 'Syntax: SHOW CREATE EVENT event_name This statement displays the CREATE EVENT statement needed to re-create a given event. It requires the EVENT privilege for the database from which the event is to be shown. For example (using the same event e_daily defined and then altered in [HELP SHOW EVENTS]): URL: https://mariadb.com/kb/en/show-create-event/ ', 'MariaDB> SHOW CREATE EVENT test.e_daily\\G *************************** 1. row *************************** Event: e_daily sql_mode: time_zone: SYSTEM Create Event: CREATE EVENT `e_daily` ON SCHEDULE EVERY 1 DAY STARTS CURRENT_TIMESTAMP + INTERVAL 6 HOUR ON COMPLETION NOT PRESERVE ENABLE COMMENT ''Saves total number of sessions then clears the table each day'' DO BEGIN INSERT INTO site_activity.totals (time, total) SELECT CURRENT_TIMESTAMP, COUNT(*) FROM site_activity.sessions; DELETE FROM site_activity.sessions; END character_set_client: latin1 collation_connection: latin1_swedish_ci Database Collation: latin1_swedish_ci ', 'https://mariadb.com/kb/en/show-create-event/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (359, 'LOAD_FILE', 37, 'Syntax: LOAD_FILE(file_name) Reads the file and returns the file contents as a string. To use this function, the file must be located on the server host, you must specify the full path name to the file, and you must have the FILE privilege. The file must be readable by all and its size less than max_allowed_packet bytes. If the secure_file_priv system variable is set to a nonempty directory name, the file to be loaded must be located in that directory. If the file does not exist or cannot be read because one of the preceding conditions is not satisfied, the function returns NULL. The character_set_filesystem system variable controls interpretation of file names that are given as literal strings. URL: https://mariadb.com/kb/en/load_file/ ', 'MariaDB> UPDATE t SET blob_col=LOAD_FILE(''/tmp/picture'') WHERE id=1; ', 'https://mariadb.com/kb/en/load_file/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (360, 'POINTFROMTEXT', 3, 'PointFromText(wkt[,srid]) Constructs a POINT value using its WKT representation and SRID. URL: https://mariadb.com/kb/en/pointfromtext/ ', '', 'https://mariadb.com/kb/en/pointfromtext/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (361, 'GROUP_CONCAT', 16, 'Syntax: GROUP_CONCAT(expr) This function returns a string result with the concatenated non-NULL values from a group. It returns NULL if there are no non-NULL values. The full syntax is as follows: GROUP_CONCAT([DISTINCT] expr [,expr ...] [ORDER BY {unsigned_integer | col_name | expr} [ASC | DESC] [,col_name ...]] [SEPARATOR str_val]) URL: https://mariadb.com/kb/en/group_concat/ ', 'MariaDB> SELECT student_name, -> GROUP_CONCAT(test_score) -> FROM student -> GROUP BY student_name; ', 'https://mariadb.com/kb/en/group_concat/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (362, 'DATE_FORMAT', 31, 'Syntax: DATE_FORMAT(date,format) Formats the date value according to the format string. URL: https://mariadb.com/kb/en/date_format/ ', 'MariaDB> SELECT DATE_FORMAT(''2009-10-04 22:23:00'', ''%W %M %Y''); -> ''Sunday October 2009'' MariaDB> SELECT DATE_FORMAT(''2007-10-04 22:23:00'', ''%H:%i:%s''); -> ''22:23:00'' MariaDB> SELECT DATE_FORMAT(''1900-10-04 22:23:00'', -> ''%D %y %a %d %m %b %j''); -> ''4th 00 Thu 04 10 Oct 277'' MariaDB> SELECT DATE_FORMAT(''1997-10-04 22:23:00'', -> ''%H %k %I %r %T %S %w''); -> ''22 22 10 10:23:00 PM 22:23:00 00 6'' MariaDB> SELECT DATE_FORMAT(''1999-01-01'', ''%X %V''); -> ''1998 52'' MariaDB> SELECT DATE_FORMAT(''2006-06-00'', ''%d''); -> ''00'' ', 'https://mariadb.com/kb/en/date_format/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (363, 'BENCHMARK', 17, 'Syntax: BENCHMARK(count,expr) The BENCHMARK() function executes the expression expr repeatedly count times. It may be used to time how quickly MySQL processes the expression. The result value is always 0. The intended use is from within the mysql client, which reports query execution times: URL: https://mariadb.com/kb/en/benchmark/ ', 'MariaDB> SELECT BENCHMARK(1000000,ENCODE(''hello'',''goodbye'')); +----------------------------------------------+ | BENCHMARK(1000000,ENCODE(''hello'',''goodbye'')) | +----------------------------------------------+ | 0 | +----------------------------------------------+ 1 row in set (4.74 sec) ', 'https://mariadb.com/kb/en/benchmark/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (364, 'YEAR', 31, 'Syntax: YEAR(date) Returns the year for date, in the range 1000 to 9999, or 0 for the "zero" date. URL: https://mariadb.com/kb/en/year/ ', 'MariaDB> SELECT YEAR(''1987-01-01''); -> 1987 ', 'https://mariadb.com/kb/en/year/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (365, 'SHOW ENGINE', 26, 'Syntax: SHOW ENGINE engine_name {STATUS | MUTEX} SHOW ENGINE displays operational information about a storage engine. The following statements currently are supported: SHOW ENGINE INNODB STATUS SHOW ENGINE INNODB MUTEX SHOW ENGINE PERFORMANCE_SCHEMA STATUS SHOW ENGINE INNODB STATUS displays extensive information from the standard InnoDB Monitor about the state of the InnoDB storage engine. For information about the standard monitor and other InnoDB Monitors that provide information about InnoDB processing, see http://dev.mysql.com/doc/refman/5.5/en/innodb-monitors.html. SHOW ENGINE INNODB MUTEX displays InnoDB mutex statistics. The statement displays the following fields: o Type Always InnoDB. o Name The source file where the mutex is implemented, and the line number in the file where the mutex is created. The line number may change depending on your version of MySQL. o Status The mutex status. This field displays several values if UNIV_DEBUG was defined at MySQL compilation time (for example, in include/univ.i in the InnoDB part of the MySQL source tree). If UNIV_DEBUG was not defined, the statement displays only the os_waits value. In the latter case (without UNIV_DEBUG), the information on which the output is based is insufficient to distinguish regular mutexes and mutexes that protect rw-locks (which permit multiple readers or a single writer). Consequently, the output may appear to contain multiple rows for the same mutex. o count indicates how many times the mutex was requested. o spin_waits indicates how many times the spinlock had to run. o spin_rounds indicates the number of spinlock rounds. (spin_rounds divided by spin_waits provides the average round count.) o os_waits indicates the number of operating system waits. This occurs when the spinlock did not work (the mutex was not locked during the spinlock and it was necessary to yield to the operating system and wait). o os_yields indicates the number of times a the thread trying to lock a mutex gave up its timeslice and yielded to the operating system (on the presumption that permitting other threads to run will free the mutex so that it can be locked). o os_wait_times indicates the amount of time (in ms) spent in operating system waits, if the timed_mutexes system variable is 1 (ON). If timed_mutexes is 0 (OFF), timing is disabled, so os_wait_times is 0. timed_mutexes is off by default. Information from this statement can be used to diagnose system problems. For example, large values of spin_waits and spin_rounds may indicate scalability problems. Use SHOW ENGINE PERFORMANCE_SCHEMA STATUS to inspect the internal operation of the Performance Schema code: MariaDB> SHOW ENGINE PERFORMANCE_SCHEMA STATUS\\G ... *************************** 3. row *************************** Type: performance_schema Name: events_waits_history.row_size Status: 76 *************************** 4. row *************************** Type: performance_schema Name: events_waits_history.row_count Status: 10000 *************************** 5. row *************************** Type: performance_schema Name: events_waits_history.memory Status: 760000 ... *************************** 57. row *************************** Type: performance_schema Name: performance_schema.memory Status: 26459600 ... The intent of this statement is to help the DBA to understand the effects that different options have on memory requirements. Name values consist of two parts, which name an internal buffer and an attribute of the buffer, respectively: o Internal buffers that are exposed as a table in the performance_schema database are named after the table. Examples: events_waits_history.row_size, mutex_instances.row_count. o Internal buffers that are not exposed as a table are named within parentheses. Examples: (pfs_cond_class).row_size, (pfs_mutex_class).memory. o Values that apply to the Performance Schema as a whole begin with performance_schema. Example: performance_schema.memory. Attributes have these meanings: o row_size cannot be changed. It is the size of the internal record used by the implementation. o row_count can be changed depending on the configuration options. o For a table, tbl_name.memory is the product of row_size multiplied by row_count. For the Performance Schema as a whole, performance_schema.memory is the sum of all the memory used (the sum of all other memory values). In some cases, there is a direct relationship between a configuration parameter and a SHOW ENGINE value. For example, events_waits_history_long.row_count corresponds to performance_schema_events_waits_history_long_size. In other cases, the relationship is more complex. For example, events_waits_history.row_count corresponds to performance_schema_events_waits_history_size (the number of rows per thread) multiplied by performance_schema_max_thread_instances ( the number of threads). URL: https://mariadb.com/kb/en/show-engine/ ', '', 'https://mariadb.com/kb/en/show-engine/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (366, 'NAME_CONST', 14, 'Syntax: NAME_CONST(name,value) Returns the given value. When used to produce a result set column, NAME_CONST() causes the column to have the given name. The arguments should be constants. MariaDB> SELECT NAME_CONST(''myname'', 14); +--------+ | myname | +--------+ | 14 | +--------+ URL: https://mariadb.com/kb/en/name_const/ ', '', 'https://mariadb.com/kb/en/name_const/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (367, 'RELEASE_LOCK', 14, 'Syntax: RELEASE_LOCK(str) Releases the lock named by the string str that was obtained with GET_LOCK(). Returns 1 if the lock was released, 0 if the lock was not established by this thread (in which case the lock is not released), and NULL if the named lock did not exist. The lock does not exist if it was never obtained by a call to GET_LOCK() or if it has previously been released. The DO statement is convenient to use with RELEASE_LOCK(). See [HELP DO]. URL: https://mariadb.com/kb/en/release_lock/ ', '', 'https://mariadb.com/kb/en/release_lock/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (368, 'IS NULL', 18, 'Syntax: IS NULL Tests whether a value is NULL. URL: https://mariadb.com/kb/en/is-null/ ', 'MariaDB> SELECT 1 IS NULL, 0 IS NULL, NULL IS NULL; -> 0, 0, 1 ', 'https://mariadb.com/kb/en/is-null/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (369, 'CONVERT_TZ', 31, 'Syntax: CONVERT_TZ(dt,from_tz,to_tz) CONVERT_TZ() converts a datetime value dt from the time zone given by from_tz to the time zone given by to_tz and returns the resulting value. Time zones are specified as described in https://mariadb.com/kb/en/time-zones/. This function returns NULL if the arguments are invalid. URL: https://mariadb.com/kb/en/convert_tz/ ', 'MariaDB> SELECT CONVERT_TZ(''2004-01-01 12:00:00'',''GMT'',''MET''); -> ''2004-01-01 13:00:00'' MariaDB> SELECT CONVERT_TZ(''2004-01-01 12:00:00'',''+00:00'',''+10:00''); -> ''2004-01-01 22:00:00'' ', 'https://mariadb.com/kb/en/convert_tz/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (370, 'TIME_TO_SEC', 31, 'Syntax: TIME_TO_SEC(time) Returns the time argument, converted to seconds. URL: https://mariadb.com/kb/en/time_to_sec/ ', 'MariaDB> SELECT TIME_TO_SEC(''22:23:00''); -> 80580 MariaDB> SELECT TIME_TO_SEC(''00:39:38''); -> 2378 ', 'https://mariadb.com/kb/en/time_to_sec/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (371, 'WEEKDAY', 31, 'Syntax: WEEKDAY(date) Returns the weekday index for date (0 = Monday, 1 = Tuesday, ... 6 = Sunday). URL: https://mariadb.com/kb/en/weekday/ ', 'MariaDB> SELECT WEEKDAY(''2008-02-03 22:23:00''); -> 6 MariaDB> SELECT WEEKDAY(''2007-11-06''); -> 1 ', 'https://mariadb.com/kb/en/weekday/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (372, 'EXPORT_SET', 37, 'Syntax: EXPORT_SET(bits,on,off[,separator[,number_of_bits]]) Returns a string such that for every bit set in the value bits, you get an on string and for every bit not set in the value, you get an off string. Bits in bits are examined from right to left (from low-order to high-order bits). Strings are added to the result from left to right, separated by the separator string (the default being the comma character ","). The number of bits examined is given by number_of_bits, which has a default of 64 if not specified. number_of_bits is silently clipped to 64 if larger than 64. It is treated as an unsigned integer, so a value of -1 is effectively the same as 64. URL: https://mariadb.com/kb/en/export_set/ ', 'MariaDB> SELECT EXPORT_SET(5,''Y'',''N'','','',4); -> ''Y,N,Y,N'' MariaDB> SELECT EXPORT_SET(6,''1'',''0'','','',10); -> ''0,1,1,0,0,0,0,0,0,0'' ', 'https://mariadb.com/kb/en/export_set/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (373, 'ALTER SERVER', 39, 'Syntax: ALTER SERVER server_name OPTIONS (option [, option] ...) Alters the server information for server_name, adjusting any of the options permitted in the CREATE SERVER statement. See [HELP CREATE SERVER]. The corresponding fields in the mysql.servers table are updated accordingly. This statement requires the SUPER privilege. URL: https://mariadb.com/kb/en/alter-server/ ', 'ALTER SERVER s OPTIONS (USER ''sally''); ', 'https://mariadb.com/kb/en/alter-server/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (374, 'RESIGNAL', 23, 'Syntax: RESIGNAL [condition_value] [SET signal_information_item [, signal_information_item] ...] condition_value: SQLSTATE [VALUE] sqlstate_value | condition_name signal_information_item: condition_information_item_name = simple_value_specification condition_information_item_name: CLASS_ORIGIN | SUBCLASS_ORIGIN | MESSAGE_TEXT | MYSQL_ERRNO | CONSTRAINT_CATALOG | CONSTRAINT_SCHEMA | CONSTRAINT_NAME | CATALOG_NAME | SCHEMA_NAME | TABLE_NAME | COLUMN_NAME | CURSOR_NAME condition_name, simple_value_specification: (see following discussion) RESIGNAL passes on the error condition information that is available during execution of a condition handler within a compound statement inside a stored procedure or function, trigger, or event. RESIGNAL may change some or all information before passing it on. RESIGNAL is related to SIGNAL, but instead of originating a condition as SIGNAL does, RESIGNAL relays existing condition information, possibly after modifying it. RESIGNAL makes it possible to both handle an error and return the error information. Otherwise, by executing an SQL statement within the handler, information that caused the handler''s activation is destroyed. RESIGNAL also can make some procedures shorter if a given handler can handle part of a situation, then pass the condition "up the line" to another handler. No special privileges are required to execute the RESIGNAL statement. For condition_value and signal_information_item, the definitions and rules are the same for RESIGNAL as for SIGNAL (see [HELP SIGNAL]). The RESIGNAL statement takes condition_value and SET clauses, both of which are optional. This leads to several possible uses: o RESIGNAL alone: RESIGNAL; o RESIGNAL with new signal information: RESIGNAL SET signal_information_item [, signal_information_item] ...; o RESIGNAL with a condition value and possibly new signal information: RESIGNAL condition_value [SET signal_information_item [, signal_information_item] ...]; URL: https://mariadb.com/kb/en/resignal/ ', '', 'https://mariadb.com/kb/en/resignal/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (375, 'TIME FUNCTION', 31, 'Syntax: TIME(expr) Extracts the time part of the time or datetime expression expr and returns it as a string. URL: https://mariadb.com/kb/en/time-function/ ', 'MariaDB> SELECT TIME(''2003-12-31 01:02:03''); -> ''01:02:03'' MariaDB> SELECT TIME(''2003-12-31 01:02:03.000123''); -> ''01:02:03.000123'' ', 'https://mariadb.com/kb/en/time-function/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (376, 'DATE_ADD', 31, 'Syntax: DATE_ADD(date,INTERVAL expr unit), DATE_SUB(date,INTERVAL expr unit) These functions perform date arithmetic. The date argument specifies the starting date or datetime value. expr is an expression specifying the interval value to be added or subtracted from the starting date. expr is a string; it may start with a "-" for negative intervals. unit is a keyword indicating the units in which the expression should be interpreted. URL: https://mariadb.com/kb/en/date_add/ ', 'MariaDB> SELECT ''2008-12-31 23:59:59'' + INTERVAL 1 SECOND; -> ''2009-01-01 00:00:00'' MariaDB> SELECT INTERVAL 1 DAY + ''2008-12-31''; -> ''2009-01-01'' MariaDB> SELECT ''2005-01-01'' - INTERVAL 1 SECOND; -> ''2004-12-31 23:59:59'' MariaDB> SELECT DATE_ADD(''2000-12-31 23:59:59'', -> INTERVAL 1 SECOND); -> ''2001-01-01 00:00:00'' MariaDB> SELECT DATE_ADD(''2010-12-31 23:59:59'', -> INTERVAL 1 DAY); -> ''2011-01-01 23:59:59'' MariaDB> SELECT DATE_ADD(''2100-12-31 23:59:59'', -> INTERVAL ''1:1'' MINUTE_SECOND); -> ''2101-01-01 00:01:00'' MariaDB> SELECT DATE_SUB(''2005-01-01 00:00:00'', -> INTERVAL ''1 1:1:1'' DAY_SECOND); -> ''2004-12-30 22:58:59'' MariaDB> SELECT DATE_ADD(''1900-01-01 00:00:00'', -> INTERVAL ''-1 10'' DAY_HOUR); -> ''1899-12-30 14:00:00'' MariaDB> SELECT DATE_SUB(''1998-01-02'', INTERVAL 31 DAY); -> ''1997-12-02'' MariaDB> SELECT DATE_ADD(''1992-12-31 23:59:59.000002'', -> INTERVAL ''1.999999'' SECOND_MICROSECOND); -> ''1993-01-01 00:00:01.000001'' ', 'https://mariadb.com/kb/en/date_add/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (377, 'CAST', 37, 'Syntax: CAST(expr AS type) The CAST() function takes an expression of any type and produces a result value of a specified type, similar to CONVERT(). See the description of CONVERT() for more information. URL: https://mariadb.com/kb/en/cast/ ', '', 'https://mariadb.com/kb/en/cast/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (378, 'SOUNDS LIKE', 37, 'Syntax: expr1 SOUNDS LIKE expr2 This is the same as SOUNDEX(expr1) = SOUNDEX(expr2). URL: https://mariadb.com/kb/en/sounds-like/ ', '', 'https://mariadb.com/kb/en/sounds-like/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (379, 'PERIOD_DIFF', 31, 'Syntax: PERIOD_DIFF(P1,P2) Returns the number of months between periods P1 and P2. P1 and P2 should be in the format YYMM or YYYYMM. Note that the period arguments P1 and P2 are not date values. URL: https://mariadb.com/kb/en/period_diff/ ', 'MariaDB> SELECT PERIOD_DIFF(200802,200703); -> 11 ', 'https://mariadb.com/kb/en/period_diff/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (380, 'LIKE', 37, 'Syntax: expr LIKE pat [ESCAPE ''escape_char''] Pattern matching using SQL simple regular expression comparison. Returns 1 (TRUE) or 0 (FALSE). If either expr or pat is NULL, the result is NULL. The pattern need not be a literal string. For example, it can be specified as a string expression or table column. URL: https://mariadb.com/kb/en/like/ ', 'MariaDB> SELECT ''David!'' LIKE ''David_''; -> 1 MariaDB> SELECT ''David!'' LIKE ''%D%v%''; -> 1 ', 'https://mariadb.com/kb/en/like/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (381, 'MULTIPOINT', 24, 'MultiPoint(pt1,pt2,...) Constructs a MultiPoint value using Point or WKB Point arguments. URL: https://mariadb.com/kb/en/multipoint/ ', '', 'https://mariadb.com/kb/en/multipoint/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (382, '>>', 19, 'Syntax: >> Shifts a longlong (BIGINT) number to the right. URL: https://mariadb.com/kb/en/shift-right/ ', 'MariaDB> SELECT 4 >> 2; -> 1 ', 'https://mariadb.com/kb/en/shift-right/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (383, 'FETCH', 23, 'Syntax: FETCH [[NEXT] FROM] cursor_name INTO var_name [, var_name] ... This statement fetches the next row for the SELECT statement associated with the specified cursor (which must be open), and advances the cursor pointer. If a row exists, the fetched columns are stored in the named variables. The number of columns retrieved by the SELECT statement must match the number of output variables specified in the FETCH statement. If no more rows are available, a No Data condition occurs with SQLSTATE value ''02000''. To detect this condition, you can set up a handler for it (or for a NOT FOUND condition). For an example, see https://mariadb.com/kb/en/cursor-overview/. URL: https://mariadb.com/kb/en/fetch/ ', '', 'https://mariadb.com/kb/en/fetch/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (384, 'AVG', 16, 'Syntax: AVG([DISTINCT] expr) Returns the average value of expr. The DISTINCT option can be used to return the average of the distinct values of expr. AVG() returns NULL if there were no matching rows. URL: https://mariadb.com/kb/en/avg/ ', 'MariaDB> SELECT student_name, AVG(test_score) -> FROM student -> GROUP BY student_name; ', 'https://mariadb.com/kb/en/avg/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (385, 'TRUE FALSE', 29, 'The constants TRUE and FALSE evaluate to 1 and 0, respectively. The constant names can be written in any lettercase. MariaDB> SELECT TRUE, true, FALSE, false; -> 1, 1, 0, 0 URL: https://mariadb.com/kb/en/true-false/ ', '', 'https://mariadb.com/kb/en/true-false/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (386, 'MBRWITHIN', 6, 'MBRWithin(g1,g2) Returns 1 or 0 to indicate whether the Minimum Bounding Rectangle of g1 is within the Minimum Bounding Rectangle of g2. This tests the opposite relationship as MBRContains(). URL: https://mariadb.com/kb/en/mbrwithin/ ', 'MariaDB> SET @g1 = GeomFromText(''Polygon((0 0,0 3,3 3,3 0,0 0))''); MariaDB> SET @g2 = GeomFromText(''Polygon((0 0,0 5,5 5,5 0,0 0))''); MariaDB> SELECT MBRWithin(@g1,@g2), MBRWithin(@g2,@g1); +--------------------+--------------------+ | MBRWithin(@g1,@g2) | MBRWithin(@g2,@g1) | +--------------------+--------------------+ | 1 | 0 | +--------------------+--------------------+ ', 'https://mariadb.com/kb/en/mbrwithin/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (387, 'SESSION_USER', 17, 'Syntax: SESSION_USER() SESSION_USER() is a synonym for USER(). URL: https://mariadb.com/kb/en/session_user/ ', '', 'https://mariadb.com/kb/en/session_user/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (388, 'IN', 18, 'Syntax: expr IN (value,...) Returns 1 if expr is equal to any of the values in the IN list, else returns 0. If all values are constants, they are evaluated according to the type of expr and sorted. The search for the item then is done using a binary search. This means IN is very quick if the IN value list consists entirely of constants. Otherwise, type conversion takes place according to the rules described in https://mariadb.com/kb/en/type-conversion/, but applied to all the arguments. URL: https://mariadb.com/kb/en/in/ ', 'MariaDB> SELECT 2 IN (0,3,5,7); -> 0 MariaDB> SELECT ''wefwf'' IN (''wee'',''wefwf'',''weg''); -> 1 ', 'https://mariadb.com/kb/en/in/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (389, 'QUOTE', 37, 'Syntax: QUOTE(str) Quotes a string to produce a result that can be used as a properly escaped data value in an SQL statement. The string is returned enclosed by single quotation marks and with each instance of backslash ("\\"), single quote ("''"), ASCII NUL, and Control+Z preceded by a backslash. If the argument is NULL, the return value is the word "NULL" without enclosing single quotation marks. URL: https://mariadb.com/kb/en/quote/ ', 'MariaDB> SELECT QUOTE(''Don\\''t!''); -> ''Don\\''t!'' MariaDB> SELECT QUOTE(NULL); -> NULL ', 'https://mariadb.com/kb/en/quote/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (390, 'HELP COMMAND', 26, 'Syntax: MariaDB> help search_string If you provide an argument to the help command, mysql uses it as a search string to access server-side help from the contents of the MySQL Reference Manual. The proper operation of this command requires that the help tables in the mysql database be initialized with help topic information . If there is no match for the search string, the search fails: MariaDB> help me Nothing found Please try to run ''help contents'' for a list of all accessible topics Use help contents to see a list of the help categories: MariaDB> help contents You asked for help about help category: "Contents" For more information, type ''help <item>'', where <item> is one of the following categories: Account Management Administration Data Definition Data Manipulation Data Types Functions Functions and Modifiers for Use with GROUP BY Geographic Features Language Structure Plugins Storage Engines Stored Routines Table Maintenance Transactions Triggers If the search string matches multiple items, mysql shows a list of matching topics: MariaDB> help logs Many help items for your request exist. To make a more specific request, please type ''help <item>'', where <item> is one of the following topics: SHOW SHOW BINARY LOGS SHOW ENGINE SHOW LOGS Use a topic as the search string to see the help entry for that topic: MariaDB> help show binary logs Name: ''SHOW BINARY LOGS'' Description: Syntax: SHOW BINARY LOGS SHOW MASTER LOGS Lists the binary log files on the server. This statement is used as part of the procedure described in [purge-binary-logs], that shows how to determine which logs can be purged. MariaDB> SHOW BINARY LOGS; +---------------+-----------+ | Log_name | File_size | +---------------+-----------+ | binlog.000015 | 724935 | | binlog.000016 | 733481 | +---------------+-----------+ URL: https://mariadb.com/kb/en/help-command/ ', '', 'https://mariadb.com/kb/en/help-command/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (391, 'QUARTER', 31, 'Syntax: QUARTER(date) Returns the quarter of the year for date, in the range 1 to 4. URL: https://mariadb.com/kb/en/quarter/ ', 'MariaDB> SELECT QUARTER(''2008-04-01''); -> 2 ', 'https://mariadb.com/kb/en/quarter/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (392, 'POSITION', 37, 'Syntax: POSITION(substr IN str) POSITION(substr IN str) is a synonym for LOCATE(substr,str). URL: https://mariadb.com/kb/en/position/ ', '', 'https://mariadb.com/kb/en/position/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (393, 'SHOW CREATE FUNCTION', 26, 'Syntax: SHOW CREATE FUNCTION func_name This statement is similar to SHOW CREATE PROCEDURE but for stored functions. See [HELP SHOW CREATE PROCEDURE]. URL: https://mariadb.com/kb/en/show-create-function/ ', '', 'https://mariadb.com/kb/en/show-create-function/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (394, 'IS_USED_LOCK', 14, 'Syntax: IS_USED_LOCK(str) Checks whether the lock named str is in use (that is, locked). If so, it returns the connection identifier of the client that holds the lock. Otherwise, it returns NULL. URL: https://mariadb.com/kb/en/is_used_lock/ ', '', 'https://mariadb.com/kb/en/is_used_lock/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (395, 'POLYFROMTEXT', 3, 'PolyFromText(wkt[,srid]), PolygonFromText(wkt[,srid]) Constructs a POLYGON value using its WKT representation and SRID. URL: https://mariadb.com/kb/en/polyfromtext/ ', '', 'https://mariadb.com/kb/en/polyfromtext/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (397, 'CEIL', 4, 'Syntax: CEIL(X) CEIL() is a synonym for CEILING(). URL: https://mariadb.com/kb/en/ceil/ ', '', 'https://mariadb.com/kb/en/ceil/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (398, 'LENGTH', 37, 'Syntax: LENGTH(str) Returns the length of the string str, measured in bytes. A multi-byte character counts as multiple bytes. This means that for a string containing five 2-byte characters, LENGTH() returns 10, whereas CHAR_LENGTH() returns 5. URL: https://mariadb.com/kb/en/length/ ', 'MariaDB> SELECT LENGTH(''text''); -> 4 ', 'https://mariadb.com/kb/en/length/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (396, 'DES_ENCRYPT', 12, 'Syntax: DES_ENCRYPT(str[,{key_num|key_str}]) Encrypts the string with the given key using the Triple-DES algorithm. This function works only if MySQL has been configured with SSL support. See https://mariadb.com/kb/en/ssl-connections/. The encryption key to use is chosen based on the second argument to DES_ENCRYPT(), if one was given. With no argument, the first key from the DES key file is used. With a key_num argument, the given key number (0 to 9) from the DES key file is used. With a key_str argument, the given key string is used to encrypt str. The key file can be specified with the --des-key-file server option. The return string is a binary string where the first character is CHAR(128 | key_num). If an error occurs, DES_ENCRYPT() returns NULL. The 128 is added to make it easier to recognize an encrypted key. If you use a string key, key_num is 127. The string length for the result is given by this formula: new_len = orig_len + (8 - (orig_len % 8)) + 1 Each line in the DES key file has the following format: key_num des_key_str Each key_num value must be a number in the range from 0 to 9. Lines in the file may be in any order. des_key_str is the string that is used to encrypt the message. There should be at least one space between the number and the key. The first key is the default key that is used if you do not specify any key argument to DES_ENCRYPT(). You can tell MySQL to read new key values from the key file with the FLUSH DES_KEY_FILE statement. This requires the RELOAD privilege. One benefit of having a set of default keys is that it gives applications a way to check for the existence of encrypted column values, without giving the end user the right to decrypt those values. URL: https://mariadb.com/kb/en/des_encrypt/ ', 'MariaDB> SELECT customer_address FROM customer_table > WHERE crypted_credit_card = DES_ENCRYPT(''credit_card_number''); ', 'https://mariadb.com/kb/en/des_encrypt/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (399, 'STR_TO_DATE', 31, 'Syntax: STR_TO_DATE(str,format) This is the inverse of the DATE_FORMAT() function. It takes a string str and a format string format. STR_TO_DATE() returns a DATETIME value if the format string contains both date and time parts, or a DATE or TIME value if the string contains only date or time parts. If the date, time, or datetime value extracted from str is illegal, STR_TO_DATE() returns NULL and produces a warning. The server scans str attempting to match format to it. The format string can contain literal characters and format specifiers beginning with %. Literal characters in format must match literally in str. Format specifiers in format must match a date or time part in str. For the specifiers that can be used in format, see the DATE_FORMAT() function description. MariaDB> SELECT STR_TO_DATE(''01,5,2013'',''%d,%m,%Y''); -> ''2013-05-01'' MariaDB> SELECT STR_TO_DATE(''May 1, 2013'',''%M %d,%Y''); -> ''2013-05-01'' Scanning starts at the beginning of str and fails if format is found not to match. Extra characters at the end of str are ignored. MariaDB> SELECT STR_TO_DATE(''a09:30:17'',''a%h:%i:%s''); -> ''09:30:17'' MariaDB> SELECT STR_TO_DATE(''a09:30:17'',''%h:%i:%s''); -> NULL MariaDB> SELECT STR_TO_DATE(''09:30:17a'',''%h:%i:%s''); -> ''09:30:17'' Unspecified date or time parts have a value of 0, so incompletely specified values in str produce a result with some or all parts set to 0: MariaDB> SELECT STR_TO_DATE(''abc'',''abc''); -> ''0000-00-00'' MariaDB> SELECT STR_TO_DATE(''9'',''%m''); -> ''0000-09-00'' MariaDB> SELECT STR_TO_DATE(''9'',''%s''); -> ''00:00:09'' URL: https://mariadb.com/kb/en/str_to_date/ ', '', 'https://mariadb.com/kb/en/str_to_date/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (400, 'Y', 11, 'Y(p) Returns the Y-coordinate value for the Point object p as a double-precision number. URL: https://mariadb.com/kb/en/y/ ', 'MariaDB> SELECT Y(POINT(56.7, 53.34)); +-----------------------+ | Y(POINT(56.7, 53.34)) | +-----------------------+ | 53.34 | +-----------------------+ ', 'https://mariadb.com/kb/en/y/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (401, 'CHECKSUM TABLE', 20, 'Syntax: CHECKSUM TABLE tbl_name [, tbl_name] ... [ QUICK | EXTENDED ] CHECKSUM TABLE reports a table checksum. This statement requires the SELECT privilege for the table. With QUICK, the live table checksum is reported if it is available, or NULL otherwise. This is very fast. A live checksum is enabled by specifying the CHECKSUM=1 table option when you create the table; currently, this is supported only for MyISAM tables. See [HELP CREATE TABLE]. With EXTENDED, the entire table is read row by row and the checksum is calculated. This can be very slow for large tables. If neither QUICK nor EXTENDED is specified, MySQL returns a live checksum if the table storage engine supports it and scans the table otherwise. For a nonexistent table, CHECKSUM TABLE returns NULL and generates a warning. In MySQL 5.5, CHECKSUM TABLE returns 0 for partitioned tables unless you include the EXTENDED option. This issue is resolved in MySQL 5.6. (Bug #11933226, Bug #60681) The checksum value depends on the table row format. If the row format changes, the checksum also changes. For example, the storage format for VARCHAR changed between MySQL 4.1 and 5.0, so if a 4.1 table is upgraded to MySQL 5.0, the checksum value may change. URL: https://mariadb.com/kb/en/checksum-table/ ', '', 'https://mariadb.com/kb/en/checksum-table/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (402, 'NUMINTERIORRINGS', 2, 'NumInteriorRings(poly) Returns the number of interior rings in the Polygon value poly. URL: https://mariadb.com/kb/en/numinteriorrings/ ', 'MariaDB> SET @poly = -> ''Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))''; MariaDB> SELECT NumInteriorRings(GeomFromText(@poly)); +---------------------------------------+ | NumInteriorRings(GeomFromText(@poly)) | +---------------------------------------+ | 1 | +---------------------------------------+ ', 'https://mariadb.com/kb/en/numinteriorrings/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (403, 'INTERIORRINGN', 2, 'InteriorRingN(poly,N) Returns the N-th interior ring for the Polygon value poly as a LineString. Rings are numbered beginning with 1. URL: https://mariadb.com/kb/en/interiorringn/ ', 'MariaDB> SET @poly = -> ''Polygon((0 0,0 3,3 3,3 0,0 0),(1 1,1 2,2 2,2 1,1 1))''; MariaDB> SELECT AsText(InteriorRingN(GeomFromText(@poly),1)); +----------------------------------------------+ | AsText(InteriorRingN(GeomFromText(@poly),1)) | +----------------------------------------------+ | LINESTRING(1 1,1 2,2 2,2 1,1 1) | +----------------------------------------------+ ', 'https://mariadb.com/kb/en/interiorringn/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (404, 'UTC_TIME', 31, 'Syntax: UTC_TIME, UTC_TIME() Returns the current UTC time as a value in ''HH:MM:SS'' or HHMMSS.uuuuuu format, depending on whether the function is used in a string or numeric context. URL: https://mariadb.com/kb/en/utc_time/ ', 'MariaDB> SELECT UTC_TIME(), UTC_TIME() + 0; -> ''18:07:53'', 180753.000000 ', 'https://mariadb.com/kb/en/utc_time/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (405, 'DROP FUNCTION', 39, 'The DROP FUNCTION statement is used to drop stored functions and user-defined functions (UDFs): o For information about dropping stored functions, see [HELP DROP PROCEDURE]. o For information about dropping user-defined functions, see [HELP DROP FUNCTION UDF]. URL: https://mariadb.com/kb/en/drop-function/ ', '', 'https://mariadb.com/kb/en/drop-function/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (406, 'ALTER EVENT', 39, 'Syntax: ALTER [DEFINER = { user | CURRENT_USER }] EVENT event_name [ON SCHEDULE schedule] [ON COMPLETION [NOT] PRESERVE] [RENAME TO new_event_name] [ENABLE | DISABLE | DISABLE ON SLAVE] [COMMENT ''comment''] [DO event_body] The ALTER EVENT statement changes one or more of the characteristics of an existing event without the need to drop and recreate it. The syntax for each of the DEFINER, ON SCHEDULE, ON COMPLETION, COMMENT, ENABLE / DISABLE, and DO clauses is exactly the same as when used with CREATE EVENT. (See [HELP CREATE EVENT].) Any user can alter an event defined on a database for which that user has the EVENT privilege. When a user executes a successful ALTER EVENT statement, that user becomes the definer for the affected event. ALTER EVENT works only with an existing event: MariaDB> ALTER EVENT no_such_event > ON SCHEDULE > EVERY ''2:3'' DAY_HOUR; ERROR 1517 (HY000): Unknown event ''no_such_event'' URL: https://mariadb.com/kb/en/alter-event/ ', '', 'https://mariadb.com/kb/en/alter-event/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (407, 'STDDEV', 16, 'Syntax: STDDEV(expr) Returns the population standard deviation of expr. This function is provided for compatibility with Oracle. The standard SQL function STDDEV_POP() can be used instead. This function returns NULL if there were no matching rows. URL: https://mariadb.com/kb/en/stddev/ ', '', 'https://mariadb.com/kb/en/stddev/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (408, 'DATE_SUB', 31, 'Syntax: DATE_SUB(date,INTERVAL expr unit) See the description for DATE_ADD(). URL: https://mariadb.com/kb/en/date_sub/ ', '', 'https://mariadb.com/kb/en/date_sub/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (409, 'PERIOD_ADD', 31, 'Syntax: PERIOD_ADD(P,N) Adds N months to period P (in the format YYMM or YYYYMM). Returns a value in the format YYYYMM. Note that the period argument P is not a date value. URL: https://mariadb.com/kb/en/period_add/ ', 'MariaDB> SELECT PERIOD_ADD(200801,2); -> 200803 ', 'https://mariadb.com/kb/en/period_add/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (410, '|', 19, 'Syntax: | Bitwise OR: URL: https://mariadb.com/kb/en/bitwise-or/ ', 'MariaDB> SELECT 29 | 15; -> 31 ', 'https://mariadb.com/kb/en/bitwise-or/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (411, 'GEOMFROMTEXT', 3, 'GeomFromText(wkt[,srid]), GeometryFromText(wkt[,srid]) Constructs a geometry value of any type using its WKT representation and SRID. URL: https://mariadb.com/kb/en/geomfromtext/ ', '', 'https://mariadb.com/kb/en/geomfromtext/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (412, 'UUID_SHORT', 14, 'Syntax: UUID_SHORT() Returns a "short" universal identifier as a 64-bit unsigned integer (rather than a string-form 128-bit identifier as returned by the UUID() function). The value of UUID_SHORT() is guaranteed to be unique if the following conditions hold: o The server_id of the current host is unique among your set of master and slave servers o server_id is between 0 and 255 o You do not set back your system time for your server between mysqld restarts o You do not invoke UUID_SHORT() on average more than 16 million times per second between mysqld restarts The UUID_SHORT() return value is constructed this way: (server_id & 255) << 56 + (server_startup_time_in_seconds << 24) + incremented_variable++; URL: https://mariadb.com/kb/en/uuid_short/ ', 'MariaDB> SELECT UUID_SHORT(); -> 92395783831158784 ', 'https://mariadb.com/kb/en/uuid_short/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (413, 'RIGHT', 37, 'Syntax: RIGHT(str,len) Returns the rightmost len characters from the string str, or NULL if any argument is NULL. URL: https://mariadb.com/kb/en/right/ ', 'MariaDB> SELECT RIGHT(''foobarbar'', 4); -> ''rbar'' ', 'https://mariadb.com/kb/en/right/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (414, 'DATEDIFF', 31, 'Syntax: DATEDIFF(expr1,expr2) DATEDIFF() returns expr1 - expr2 expressed as a value in days from one date to the other. expr1 and expr2 are date or date-and-time expressions. Only the date parts of the values are used in the calculation. URL: https://mariadb.com/kb/en/datediff/ ', 'MariaDB> SELECT DATEDIFF(''2007-12-31 23:59:59'',''2007-12-30''); -> 1 MariaDB> SELECT DATEDIFF(''2010-11-30 23:59:59'',''2010-12-31''); -> -31 ', 'https://mariadb.com/kb/en/datediff/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (415, 'DROP TABLESPACE', 39, 'Syntax: DROP TABLESPACE tablespace_name ENGINE [=] engine_name This statement is used with NDB cluster, which is not supported by MariaDB. URL: https://mariadb.com/kb/en/drop-tablespace/ ', '', 'https://mariadb.com/kb/en/drop-tablespace/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (416, 'DROP PROCEDURE', 39, 'Syntax: DROP {PROCEDURE | FUNCTION} [IF EXISTS] sp_name This statement is used to drop a stored procedure or function. That is, the specified routine is removed from the server. You must have the ALTER ROUTINE privilege for the routine. (If the automatic_sp_privileges system variable is enabled, that privilege and EXECUTE are granted automatically to the routine creator when the routine is created and dropped from the creator when the routine is dropped. See https://mariadb.com/kb/en/stored-routine-privileges/. ) The IF EXISTS clause is a MySQL extension. It prevents an error from occurring if the procedure or function does not exist. A warning is produced that can be viewed with SHOW WARNINGS. URL: https://mariadb.com/kb/en/drop-procedure/ ', '', 'https://mariadb.com/kb/en/drop-procedure/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (417, 'CHECK TABLE', 20, 'Syntax: CHECK TABLE tbl_name [, tbl_name] ... [option] ... option = {FOR UPGRADE | QUICK | FAST | MEDIUM | EXTENDED | CHANGED} CHECK TABLE checks a table or tables for errors. CHECK TABLE works for InnoDB, MyISAM, ARCHIVE, and CSV tables. For MyISAM tables, the key statistics are updated as well. To check a table, you must have some privilege for it. CHECK TABLE can also check views for problems, such as tables that are referenced in the view definition that no longer exist. CHECK TABLE is supported for partitioned tables, and you can use ALTER TABLE ... CHECK PARTITION to check one or more partitions; for more information, see [HELP ALTER TABLE]. URL: https://mariadb.com/kb/en/sql-commands-check-table/ ', '', 'https://mariadb.com/kb/en/sql-commands-check-table/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (418, 'BIN', 37, 'Syntax: BIN(N) Returns a string representation of the binary value of N, where N is a longlong (BIGINT) number. This is equivalent to CONV(N,10,2). Returns NULL if N is NULL. URL: https://mariadb.com/kb/en/bin/ ', 'MariaDB> SELECT BIN(12); -> ''1100'' ', 'https://mariadb.com/kb/en/bin/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (422, 'MULTILINESTRING', 24, 'MultiLineString(ls1,ls2,...) Constructs a MultiLineString value using LineString or WKB LineString arguments. URL: https://mariadb.com/kb/en/multilinestring/ ', '', 'https://mariadb.com/kb/en/multilinestring/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (423, 'LOCALTIME', 31, 'Syntax: LOCALTIME, LOCALTIME() LOCALTIME and LOCALTIME() are synonyms for NOW(). URL: https://mariadb.com/kb/en/localtime/ ', '', 'https://mariadb.com/kb/en/localtime/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (424, 'SHOW RELAYLOG EVENTS', 26, 'Syntax: SHOW RELAYLOG EVENTS [IN ''log_name''] [FROM pos] [LIMIT [offset,] row_count] Shows the events in the relay log of a replication slave. If you do not specify ''log_name'', the first relay log is displayed. This statement has no effect on the master. URL: https://mariadb.com/kb/en/show-relaylog-events/ ', '', 'https://mariadb.com/kb/en/show-relaylog-events/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (425, 'MPOINTFROMTEXT', 3, 'MPointFromText(wkt[,srid]), MultiPointFromText(wkt[,srid]) Constructs a MULTIPOINT value using its WKT representation and SRID. URL: https://mariadb.com/kb/en/mpointfromtext/ ', '', 'https://mariadb.com/kb/en/mpointfromtext/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (426, 'BLOB', 22, 'BLOB[(M)] A BLOB column with a maximum length of 65,535 (216 - 1) bytes. Each BLOB value is stored using a 2-byte length prefix that indicates the number of bytes in the value. An optional length M can be given for this type. If this is done, MySQL creates the column as the smallest BLOB type large enough to hold values M bytes long. URL: https://mariadb.com/kb/en/blob/ ', '', 'https://mariadb.com/kb/en/blob/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (419, 'INSTALL PLUGIN', 5, 'Syntax: INSTALL PLUGIN plugin_name SONAME ''shared_library_name'' This statement installs a server plugin. It requires the INSERT privilege for the mysql.plugin table. plugin_name is the name of the plugin as defined in the plugin descriptor structure contained in the library file (see http://dev.mysql.com/doc/refman/5.5/en/plugin-data-structures.html). Plugin names are not case sensitive. For maximal compatibility, plugin names should be limited to ASCII letters, digits, and underscore because they are used in C source files, shell command lines, M4 and Bourne shell scripts, and SQL environments. shared_library_name is the name of the shared library that contains the plugin code. The name includes the file name extension (for example, libmyplugin.so, libmyplugin.dll, or libmyplugin.dylib). The shared library must be located in the plugin directory (the directory named by the plugin_dir system variable). The library must be in the plugin directory itself, not in a subdirectory. By default, plugin_dir is the plugin directory under the directory named by the pkglibdir configuration variable, but it can be changed by setting the value of plugin_dir at server startup. For example, set its value in a my.cnf file: [mysqld] plugin_dir=/path/to/plugin/directory If the value of plugin_dir is a relative path name, it is taken to be relative to the MySQL base directory (the value of the basedir system variable). INSTALL PLUGIN loads and initializes the plugin code to make the plugin available for use. A plugin is initialized by executing its initialization function, which handles any setup that the plugin must perform before it can be used. When the server shuts down, it executes the deinitialization function for each plugin that is loaded so that the plugin has a change to perform any final cleanup. INSTALL PLUGIN also registers the plugin by adding a line that indicates the plugin name and library file name to the mysql.plugin table. At server startup, the server loads and initializes any plugin that is listed in the mysql.plugin table. This means that a plugin is installed with INSTALL PLUGIN only once, not every time the server starts. Plugin loading at startup does not occur if the server is started with the --skip-grant-tables option. A plugin library can contain multiple plugins. For each of them to be installed, use a separate INSTALL PLUGIN statement. Each statement names a different plugin, but all of them specify the same library name. URL: https://mariadb.com/kb/en/install-plugin/ ', '', 'https://mariadb.com/kb/en/install-plugin/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (420, 'DECLARE CURSOR', 23, 'Syntax: DECLARE cursor_name CURSOR FOR select_statement This statement declares a cursor and associates it with a SELECT statement that retrieves the rows to be traversed by the cursor. To fetch the rows later, use a FETCH statement. The number of columns retrieved by the SELECT statement must match the number of output variables specified in the FETCH statement. The SELECT statement cannot have an INTO clause. Cursor declarations must appear before handler declarations and after variable and condition declarations. A stored program may contain multiple cursor declarations, but each cursor declared in a given block must have a unique name. For an example, see https://mariadb.com/kb/en/programmatic-and-compound-statements-cursors/. For information available through SHOW statements, it is possible in many cases to obtain equivalent information by using a cursor with an INFORMATION_SCHEMA table. URL: https://mariadb.com/kb/en/declare-cursor/ ', '', 'https://mariadb.com/kb/en/declare-cursor/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (427, 'SHA1', 12, 'Syntax: SHA1(str), SHA(str) Calculates an SHA-1 160-bit checksum for the string, as described in RFC 3174 (Secure Hash Algorithm). The value is returned as a string of 40 hex digits, or NULL if the argument was NULL. One of the possible uses for this function is as a hash key. See the notes at the beginning of this section about storing hash values efficiently. You can also use SHA1() as a cryptographic function for storing passwords. SHA() is synonymous with SHA1(). As of MySQL 5.5.3, the return value is a nonbinary string in the connection character set. Before 5.5.3, the return value is a binary string; see the notes at the beginning of this section about using the value as a nonbinary string. URL: https://mariadb.com/kb/en/sha1/ ', 'MariaDB> SELECT SHA1(''abc''); -> ''a9993e364706816aba3e25717850c26c9cd0d89d'' ', 'https://mariadb.com/kb/en/sha1/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (428, 'SUBSTR', 37, 'Syntax: SUBSTR(str,pos), SUBSTR(str FROM pos), SUBSTR(str,pos,len), SUBSTR(str FROM pos FOR len) SUBSTR() is a synonym for SUBSTRING(). URL: https://mariadb.com/kb/en/substr/ ', '', 'https://mariadb.com/kb/en/substr/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (429, 'PASSWORD', 12, 'Syntax: PASSWORD(str) Calculates and returns a hashed password string from the plaintext password str and returns a nonbinary string in the connection character set (a binary string before MySQL 5.5.3), or NULL if the argument is NULL. This function is the SQL interface to the algorithm used by the server to encrypt MySQL passwords for storage in the mysql.user grant table. The password hashing method used by PASSWORD() depends on the value of the old_passwords system variable: URL: https://mariadb.com/kb/en/password/ ', 'MariaDB> SET old_passwords = 0; MariaDB> SELECT PASSWORD(''mypass''); +-------------------------------------------+ | PASSWORD(''mypass'') | +-------------------------------------------+ | *6C8989366EAF75BB670AD8EA7A7FC1176A95CEF4 | +-------------------------------------------+ MariaDB> SET old_passwords = 1; MariaDB> SELECT PASSWORD(''mypass''); +--------------------+ | PASSWORD(''mypass'') | +--------------------+ | 6f8c114b58f2ce9e | +--------------------+ ', 'https://mariadb.com/kb/en/password/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (430, 'CHAR', 22, '[NATIONAL] CHAR[(M)] [CHARACTER SET charset_name] [COLLATE collation_name] A fixed-length string that is always right-padded with spaces to the specified length when stored. M represents the column length in characters. The range of M is 0 to 255. If M is omitted, the length is 1. *Note*: Trailing spaces are removed when CHAR values are retrieved unless the PAD_CHAR_TO_FULL_LENGTH SQL mode is enabled. URL: https://mariadb.com/kb/en/char/ ', '', 'https://mariadb.com/kb/en/char/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (431, 'UTC_DATE', 31, 'Syntax: UTC_DATE, UTC_DATE() Returns the current UTC date as a value in ''YYYY-MM-DD'' or YYYYMMDD format, depending on whether the function is used in a string or numeric context. URL: https://mariadb.com/kb/en/utc_date/ ', 'MariaDB> SELECT UTC_DATE(), UTC_DATE() + 0; -> ''2003-08-14'', 20030814 ', 'https://mariadb.com/kb/en/utc_date/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (432, 'DIMENSION', 36, 'Dimension(g) Returns the inherent dimension of the geometry value g. The result can be -1, 0, 1, or 2. The meaning of these values is given in https://mariadb.com/kb/en/dimension/. URL: https://mariadb.com/kb/en/dimension/ ', 'MariaDB> SELECT Dimension(GeomFromText(''LineString(1 1,2 2)'')); +------------------------------------------------+ | Dimension(GeomFromText(''LineString(1 1,2 2)'')) | +------------------------------------------------+ | 1 | +------------------------------------------------+ ', 'https://mariadb.com/kb/en/dimension/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (433, 'COUNT DISTINCT', 16, 'Syntax: COUNT(DISTINCT expr,[expr...]) Returns a count of the number of rows with different non-NULL expr values. COUNT(DISTINCT) returns 0 if there were no matching rows. URL: https://mariadb.com/kb/en/count-distinct/ ', 'MariaDB> SELECT COUNT(DISTINCT results) FROM student; ', 'https://mariadb.com/kb/en/count-distinct/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (421, 'LOAD DATA', 27, 'Syntax: LOAD DATA [LOW_PRIORITY | CONCURRENT] [LOCAL] INFILE ''file_name'' [REPLACE | IGNORE] INTO TABLE tbl_name [CHARACTER SET charset_name] [{FIELDS | COLUMNS} [TERMINATED BY ''string''] [[OPTIONALLY] ENCLOSED BY ''char''] [ESCAPED BY ''char''] ] [LINES [STARTING BY ''string''] [TERMINATED BY ''string''] ] [IGNORE number {LINES | ROWS}] [(col_name_or_user_var,...)] [SET col_name = expr,...] The LOAD DATA INFILE statement reads rows from a text file into a table at a very high speed. The file name must be given as a literal string. LOAD DATA INFILE is the complement of SELECT ... INTO OUTFILE. (See https://mariadb.com/kb/en/select-into/.) To write data from a table to a file, use SELECT ... INTO OUTFILE. To read the file back into a table, use LOAD DATA INFILE. The syntax of the FIELDS and LINES clauses is the same for both statements. Both clauses are optional, but FIELDS must precede LINES if both are specified. For more information about the efficiency of INSERT versus LOAD DATA INFILE and speeding up LOAD DATA INFILE, see http://dev.mysql.com/doc/refman/5.5/en/insert-speed.html. The character set indicated by the character_set_database system variable is used to interpret the information in the file. SET NAMES and the setting of character_set_client do not affect interpretation of input. If the contents of the input file use a character set that differs from the default, it is usually preferable to specify the character set of the file by using the CHARACTER SET clause. A character set of binary specifies "no conversion." LOAD DATA INFILE interprets all fields in the file as having the same character set, regardless of the data types of the columns into which field values are loaded. For proper interpretation of file contents, you must ensure that it was written with the correct character set. For example, if you write a data file with mysqldump -T or by issuing a SELECT ... INTO OUTFILE statement in mysql, be sure to use a --default-character-set option with mysqldump or mysql so that output is written in the character set to be used when the file is loaded with LOAD DATA INFILE. *Note*: It is not possible to load data files that use the ucs2, utf16, or utf32 character set. The character_set_filesystem system variable controls the interpretation of the file name. You can also load data files by using the mysqlimport utility; it operates by sending a LOAD DATA INFILE statement to the server. The --local option causes mysqlimport to read data files from the client host. You can specify the --compress option to get better performance over slow networks if the client and server support the compressed protocol. See https://mariadb.com/kb/en/mysqlimport/. If you use LOW_PRIORITY, execution of the LOAD DATA statement is delayed until no other clients are reading from the table. This affects only storage engines that use only table-level locking (such as MyISAM, MEMORY, and MERGE). If you specify CONCURRENT with a MyISAM table that satisfies the condition for concurrent inserts (that is, it contains no free blocks in the middle), other threads can retrieve data from the table while LOAD DATA is executing. Using this option affects the performance of LOAD DATA a bit, even if no other thread is using the table at the same time. Prior to MySQL 5.5.1, CONCURRENT was not replicated when using statement-based replication (see Bug #34628). However, it is replicated when using row-based replication, regardless of the version. See http://dev.mysql.com/doc/refman/5.5/en/replication-features-load-data.h tml, for more information. The LOCAL keyword, if specified, is interpreted with respect to the client end of the connection: o If LOCAL is specified, the file is read by the client program on the client host and sent to the server. The file can be given as a full path name to specify its exact location. If given as a relative path name, the name is interpreted relative to the directory in which the client program was started. When using LOCAL with LOAD DATA, a copy of the file is created in the server''s temporary directory. This is not the directory determined by the value of tmpdir or slave_load_tmpdir, but rather the operating system''s temporary directory, and is not configurable in the MySQL Server. (Typically the system temporary directory is /tmp on Linux systems and C:\\WINDOWS\\TEMP on Windows.) Lack of sufficient space for the copy in this directory can cause the LOAD DATA LOCAL statement to fail. o If LOCAL is not specified, the file must be located on the server host and is read directly by the server. The server uses the following rules to locate the file: o If the file name is an absolute path name, the server uses it as given. o If the file name is a relative path name with one or more leading components, the server searches for the file relative to the server''s data directory. o If a file name with no leading components is given, the server looks for the file in the database directory of the default database. Note that, in the non-LOCAL case, these rules mean that a file named as ./myfile.txt is read from the server''s data directory, whereas the file named as myfile.txt is read from the database directory of the default database. For example, if db1 is the default database, the following LOAD DATA statement reads the file data.txt from the database directory for db1, even though the statement explicitly loads the file into a table in the db2 database: LOAD DATA INFILE ''data.txt'' INTO TABLE db2.my_table; Windows path names are specified using forward slashes rather than backslashes. If you do use backslashes, you must double them. For security reasons, when reading text files located on the server, the files must either reside in the database directory or be readable by all. Also, to use LOAD DATA INFILE on server files, you must have the FILE privilege. See https://mariadb.com/kb/en/grant/. For non-LOCAL load operations, if the secure_file_priv system variable is set to a nonempty directory name, the file to be loaded must be located in that directory. URL: https://mariadb.com/kb/en/load-data-infile/ ', '', 'https://mariadb.com/kb/en/load-data-infile/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (434, 'BIT', 22, 'BIT[(M)] A bit-field type. M indicates the number of bits per value, from 1 to 64. The default is 1 if M is omitted. URL: https://mariadb.com/kb/en/bit/ ', '', 'https://mariadb.com/kb/en/bit/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (435, 'EQUALS', 30, 'Equals(g1,g2) Returns 1 or 0 to indicate whether g1 is spatially equal to g2. URL: https://mariadb.com/kb/en/equals/ ', '', 'https://mariadb.com/kb/en/equals/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (436, 'SHOW CREATE VIEW', 26, 'Syntax: SHOW CREATE VIEW view_name This statement shows a CREATE VIEW statement that creates the given view. URL: https://mariadb.com/kb/en/show-create-view/ ', '', 'https://mariadb.com/kb/en/show-create-view/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (437, 'INTERVAL', 18, 'Syntax: INTERVAL(N,N1,N2,N3,...) Returns 0 if N < N1, 1 if N < N2 and so on or -1 if N is NULL. All arguments are treated as integers. It is required that N1 < N2 < N3 < ... < Nn for this function to work correctly. This is because a binary search is used (very fast). URL: https://mariadb.com/kb/en/interval/ ', 'MariaDB> SELECT INTERVAL(23, 1, 15, 17, 30, 44, 200); -> 3 MariaDB> SELECT INTERVAL(10, 1, 10, 100, 1000); -> 2 MariaDB> SELECT INTERVAL(22, 23, 30, 44, 200); -> 0 ', 'https://mariadb.com/kb/en/interval/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (438, 'FROM_DAYS', 31, 'Syntax: FROM_DAYS(N) Given a day number N, returns a DATE value. URL: https://mariadb.com/kb/en/from_days/ ', 'MariaDB> SELECT FROM_DAYS(730669); -> ''2007-07-03'' ', 'https://mariadb.com/kb/en/from_days/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (439, 'ALTER PROCEDURE', 39, 'Syntax: ALTER PROCEDURE proc_name [characteristic ...] characteristic: COMMENT ''string'' | LANGUAGE SQL | { CONTAINS SQL | NO SQL | READS SQL DATA | MODIFIES SQL DATA } | SQL SECURITY { DEFINER | INVOKER } This statement can be used to change the characteristics of a stored procedure. More than one change may be specified in an ALTER PROCEDURE statement. However, you cannot change the parameters or body of a stored procedure using this statement; to make such changes, you must drop and re-create the procedure using DROP PROCEDURE and CREATE PROCEDURE. You must have the ALTER ROUTINE privilege for the procedure. By default, that privilege is granted automatically to the procedure creator. This behavior can be changed by disabling the automatic_sp_privileges system variable. See https://mariadb.com/kb/en/stored-routine-privileges/. URL: https://mariadb.com/kb/en/alter-procedure/ ', '', 'https://mariadb.com/kb/en/alter-procedure/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (440, 'BIT_COUNT', 19, 'Syntax: BIT_COUNT(N) Returns the number of bits that are set in the argument N. URL: https://mariadb.com/kb/en/bit_count/ ', 'MariaDB> SELECT BIT_COUNT(29), BIT_COUNT(b''101010''); -> 4, 3 ', 'https://mariadb.com/kb/en/bit_count/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (441, 'OCTET_LENGTH', 37, 'Syntax: OCTET_LENGTH(str) OCTET_LENGTH() is a synonym for LENGTH(). URL: https://mariadb.com/kb/en/octet_length/ ', '', 'https://mariadb.com/kb/en/octet_length/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (442, 'UTC_TIMESTAMP', 31, 'Syntax: UTC_TIMESTAMP, UTC_TIMESTAMP() Returns the current UTC date and time as a value in ''YYYY-MM-DD HH:MM:SS'' or YYYYMMDDHHMMSS.uuuuuu format, depending on whether the function is used in a string or numeric context. URL: https://mariadb.com/kb/en/utc_timestamp/ ', 'MariaDB> SELECT UTC_TIMESTAMP(), UTC_TIMESTAMP() + 0; -> ''2003-08-14 18:08:04'', 20030814180804.000000 ', 'https://mariadb.com/kb/en/utc_timestamp/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (443, 'AES_ENCRYPT', 12, 'Syntax: AES_ENCRYPT(str,key_str) AES_ENCRYPT() and AES_DECRYPT() enable encryption and decryption of data using the official AES (Advanced Encryption Standard) algorithm, previously known as "Rijndael." Encoding with a 128-bit key length is used, but you can extend it up to 256 bits by modifying the source. We chose 128 bits because it is much faster and it is secure enough for most purposes. AES_ENCRYPT() encrypts a string and returns a binary string. AES_DECRYPT() decrypts the encrypted string and returns the original string. The input arguments may be any length. If either argument is NULL, the result of this function is also NULL. Because AES is a block-level algorithm, padding is used to encode uneven length strings and so the result string length may be calculated using this formula: 16 * (trunc(string_length / 16) + 1) If AES_DECRYPT() detects invalid data or incorrect padding, it returns NULL. However, it is possible for AES_DECRYPT() to return a non-NULL value (possibly garbage) if the input data or the key is invalid. You can use the AES functions to store data in an encrypted form by modifying your queries: URL: https://mariadb.com/kb/en/aes_encrypt/ ', 'INSERT INTO t VALUES (1,AES_ENCRYPT(''text'',''password'')); ', 'https://mariadb.com/kb/en/aes_encrypt/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (444, '+', 4, 'Syntax: + Addition: URL: https://mariadb.com/kb/en/addition-operator/ ', 'MariaDB> SELECT 3+5; -> 8 ', 'https://mariadb.com/kb/en/addition-operator/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (445, 'INET_NTOA', 14, 'Syntax: INET_NTOA(expr) Given a numeric IPv4 network address in network byte order, returns the dotted-quad representation of the address as a string. INET_NTOA() returns NULL if it does not understand its argument. As of MySQL 5.5.3, the return value is a nonbinary string in the connection character set. Before 5.5.3, the return value is a binary string. URL: https://mariadb.com/kb/en/inet_ntoa/ ', 'MariaDB> SELECT INET_NTOA(167773449); -> ''10.0.5.9'' ', 'https://mariadb.com/kb/en/inet_ntoa/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (446, 'ACOS', 4, 'Syntax: ACOS(X) Returns the arc cosine of X, that is, the value whose cosine is X. Returns NULL if X is not in the range -1 to 1. URL: https://mariadb.com/kb/en/acos/ ', 'MariaDB> SELECT ACOS(1); -> 0 MariaDB> SELECT ACOS(1.0001); -> NULL MariaDB> SELECT ACOS(0); -> 1.5707963267949 ', 'https://mariadb.com/kb/en/acos/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (448, 'CEILING', 4, 'Syntax: CEILING(X) Returns the smallest integer value not less than X. URL: https://mariadb.com/kb/en/ceiling/ ', 'MariaDB> SELECT CEILING(1.23); -> 2 MariaDB> SELECT CEILING(-1.23); -> -1 ', 'https://mariadb.com/kb/en/ceiling/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (449, 'SIN', 4, 'Syntax: SIN(X) Returns the sine of X, where X is given in radians. URL: https://mariadb.com/kb/en/sin/ ', 'MariaDB> SELECT SIN(PI()); -> 1.2246063538224e-16 MariaDB> SELECT ROUND(SIN(PI())); -> 0 ', 'https://mariadb.com/kb/en/sin/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (450, 'DAYOFWEEK', 31, 'Syntax: DAYOFWEEK(date) Returns the weekday index for date (1 = Sunday, 2 = Monday, ..., 7 = Saturday). These index values correspond to the ODBC standard. URL: https://mariadb.com/kb/en/dayofweek/ ', 'MariaDB> SELECT DAYOFWEEK(''2007-02-03''); -> 7 ', 'https://mariadb.com/kb/en/dayofweek/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (451, 'SHOW PROCESSLIST', 26, 'Syntax: SHOW [FULL] PROCESSLIST SHOW PROCESSLIST shows you which threads are running. You can also get this information from the INFORMATION_SCHEMA PROCESSLIST table or the mysqladmin processlist command. If you have the PROCESS privilege, you can see all threads. Otherwise, you can see only your own threads (that is, threads associated with the MySQL account that you are using). If you do not use the FULL keyword, only the first 100 characters of each statement are shown in the Info field. URL: https://mariadb.com/kb/en/show-processlist/ ', '', 'https://mariadb.com/kb/en/show-processlist/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (452, 'LINEFROMWKB', 32, 'LineFromWKB(wkb[,srid]), LineStringFromWKB(wkb[,srid]) Constructs a LINESTRING value using its WKB representation and SRID. URL: https://mariadb.com/kb/en/linefromwkb/ ', '', 'https://mariadb.com/kb/en/linefromwkb/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (453, 'GEOMETRYTYPE', 36, 'GeometryType(g) Returns as a binary string the name of the geometry type of which the geometry instance g is a member. The name corresponds to one of the instantiable Geometry subclasses. URL: https://mariadb.com/kb/en/geometrytype/ ', 'MariaDB> SELECT GeometryType(GeomFromText(''POINT(1 1)'')); +------------------------------------------+ | GeometryType(GeomFromText(''POINT(1 1)'')) | +------------------------------------------+ | POINT | +------------------------------------------+ ', 'https://mariadb.com/kb/en/geometrytype/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (454, 'CREATE VIEW', 39, 'Syntax: CREATE [OR REPLACE] [ALGORITHM = {UNDEFINED | MERGE | TEMPTABLE}] [DEFINER = { user | CURRENT_USER }] [SQL SECURITY { DEFINER | INVOKER }] VIEW view_name [(column_list)] AS select_statement [WITH [CASCADED | LOCAL] CHECK OPTION] The CREATE VIEW statement creates a new view, or replaces an existing one if the OR REPLACE clause is given. If the view does not exist, CREATE OR REPLACE VIEW is the same as CREATE VIEW. If the view does exist, CREATE OR REPLACE VIEW is the same as ALTER VIEW. The select_statement is a SELECT statement that provides the definition of the view. (When you select from the view, you select in effect using the SELECT statement.) select_statement can select from base tables or other views. The view definition is "frozen" at creation time, so changes to the underlying tables afterward do not affect the view definition. For example, if a view is defined as SELECT * on a table, new columns added to the table later do not become part of the view. The ALGORITHM clause affects how MySQL processes the view. The DEFINER and SQL SECURITY clauses specify the security context to be used when checking access privileges at view invocation time. The WITH CHECK OPTION clause can be given to constrain inserts or updates to rows in tables referenced by the view. These clauses are described later in this section. The CREATE VIEW statement requires the CREATE VIEW privilege for the view, and some privilege for each column selected by the SELECT statement. For columns used elsewhere in the SELECT statement you must have the SELECT privilege. If the OR REPLACE clause is present, you must also have the DROP privilege for the view. CREATE VIEW might also require the SUPER privilege, depending on the DEFINER value, as described later in this section. When a view is referenced, privilege checking occurs as described later in this section. A view belongs to a database. By default, a new view is created in the default database. To create the view explicitly in a given database, specify the name as db_name.view_name when you create it: MariaDB> CREATE VIEW test.v AS SELECT * FROM t; Within a database, base tables and views share the same namespace, so a base table and a view cannot have the same name. Columns retrieved by the SELECT statement can be simple references to table columns. They can also be expressions that use functions, constant values, operators, and so forth. Views must have unique column names with no duplicates, just like base tables. By default, the names of the columns retrieved by the SELECT statement are used for the view column names. To define explicit names for the view columns, the optional column_list clause can be given as a list of comma-separated identifiers. The number of names in column_list must be the same as the number of columns retrieved by the SELECT statement. Unqualified table or view names in the SELECT statement are interpreted with respect to the default database. A view can refer to tables or views in other databases by qualifying the table or view name with the proper database name. A view can be created from many kinds of SELECT statements. It can refer to base tables or other views. It can use joins, UNION, and subqueries. The SELECT need not even refer to any tables. The following example defines a view that selects two columns from another table, as well as an expression calculated from those columns: MariaDB> CREATE TABLE t (qty INT, price INT); MariaDB> INSERT INTO t VALUES(3, 50); MariaDB> CREATE VIEW v AS SELECT qty, price, qty*price AS value FROM t; MariaDB> SELECT * FROM v; +------+-------+-------+ | qty | price | value | +------+-------+-------+ | 3 | 50 | 150 | +------+-------+-------+ A view definition is subject to the following restrictions: o The SELECT statement cannot contain a subquery in the FROM clause. o The SELECT statement cannot refer to system or user variables. o Within a stored program, the definition cannot refer to program parameters or local variables. o The SELECT statement cannot refer to prepared statement parameters. o Any table or view referred to in the definition must exist. However, after a view has been created, it is possible to drop a table or view that the definition refers to. In this case, use of the view results in an error. To check a view definition for problems of this kind, use the CHECK TABLE statement. o The definition cannot refer to a TEMPORARY table, and you cannot create a TEMPORARY view. o Any tables named in the view definition must exist at definition time. o You cannot associate a trigger with a view. o Aliases for column names in the SELECT statement are checked against the maximum column length of 64 characters (not the maximum alias length of 256 characters). ORDER BY is permitted in a view definition, but it is ignored if you select from a view using a statement that has its own ORDER BY. For other options or clauses in the definition, they are added to the options or clauses of the statement that references the view, but the effect is undefined. For example, if a view definition includes a LIMIT clause, and you select from the view using a statement that has its own LIMIT clause, it is undefined which limit applies. This same principle applies to options such as ALL, DISTINCT, or SQL_SMALL_RESULT that follow the SELECT keyword, and to clauses such as INTO, FOR UPDATE, LOCK IN SHARE MODE, and PROCEDURE. If you create a view and then change the query processing environment by changing system variables, that may affect the results that you get from the view: MariaDB> CREATE VIEW v (mycol) AS SELECT ''abc''; Query OK, 0 rows affected (0.01 sec) MariaDB> SET sql_mode = ''''; Query OK, 0 rows affected (0.00 sec) MariaDB> SELECT "mycol" FROM v; +-------+ | mycol | +-------+ | mycol | +-------+ 1 row in set (0.01 sec) MariaDB> SET sql_mode = ''ANSI_QUOTES''; Query OK, 0 rows affected (0.00 sec) MariaDB> SELECT "mycol" FROM v; +-------+ | mycol | +-------+ | abc | +-------+ 1 row in set (0.00 sec) The DEFINER and SQL SECURITY clauses determine which MySQL account to use when checking access privileges for the view when a statement is executed that references the view. The valid SQL SECURITY characteristic values are DEFINER and INVOKER. These indicate that the required privileges must be held by the user who defined or invoked the view, respectively. The default SQL SECURITY value is DEFINER. If a user value is given for the DEFINER clause, it should be a MySQL account specified as ''user_name''@''host_name'' (the same format used in the GRANT statement), CURRENT_USER, or CURRENT_USER(). The default DEFINER value is the user who executes the CREATE VIEW statement. This is the same as specifying DEFINER = CURRENT_USER explicitly. If you specify the DEFINER clause, these rules determine the valid DEFINER user values: o If you do not have the SUPER privilege, the only valid user value is your own account, either specified literally or by using CURRENT_USER. You cannot set the definer to some other account. o If you have the SUPER privilege, you can specify any syntactically valid account name. If the account does not actually exist, a warning is generated. o Although it is possible to create a view with a nonexistent DEFINER account, an error occurs when the view is referenced if the SQL SECURITY value is DEFINER but the definer account does not exist. For more information about view security, see https://mariadb.com/kb/en/stored-routine-privileges/. Within a view definition, CURRENT_USER returns the view''s DEFINER value by default. For views defined with the SQL SECURITY INVOKER characteristic, CURRENT_USER returns the account for the view''s invoker. For information about user auditing within views, see http://dev.mysql.com/doc/refman/5.5/en/account-activity-auditing.html. Within a stored routine that is defined with the SQL SECURITY DEFINER characteristic, CURRENT_USER returns the routine''s DEFINER value. This also affects a view defined within such a routine, if the view definition contains a DEFINER value of CURRENT_USER. View privileges are checked like this: o At view definition time, the view creator must have the privileges needed to use the top-level objects accessed by the view. For example, if the view definition refers to table columns, the creator must have some privilege for each column in the select list of the definition, and the SELECT privilege for each column used elsewhere in the definition. If the definition refers to a stored function, only the privileges needed to invoke the function can be checked. The privileges required at function invocation time can be checked only as it executes: For different invocations, different execution paths within the function might be taken. o The user who references a view must have appropriate privileges to access it (SELECT to select from it, INSERT to insert into it, and so forth.) o When a view has been referenced, privileges for objects accessed by the view are checked against the privileges held by the view DEFINER account or invoker, depending on whether the SQL SECURITY characteristic is DEFINER or INVOKER, respectively. o If reference to a view causes execution of a stored function, privilege checking for statements executed within the function depend on whether the function SQL SECURITY characteristic is DEFINER or INVOKER. If the security characteristic is DEFINER, the function runs with the privileges of the DEFINER account. If the characteristic is INVOKER, the function runs with the privileges determined by the view''s SQL SECURITY characteristic. Example: A view might depend on a stored function, and that function might invoke other stored routines. For example, the following view invokes a stored function f(): CREATE VIEW v AS SELECT * FROM t WHERE t.id = f(t.name); Suppose that f() contains a statement such as this: IF name IS NULL then CALL p1(); ELSE CALL p2(); END IF; The privileges required for executing statements within f() need to be checked when f() executes. This might mean that privileges are needed for p1() or p2(), depending on the execution path within f(). Those privileges must be checked at runtime, and the user who must possess the privileges is determined by the SQL SECURITY values of the view v and the function f(). The DEFINER and SQL SECURITY clauses for views are extensions to standard SQL. In standard SQL, views are handled using the rules for SQL SECURITY DEFINER. The standard says that the definer of the view, which is the same as the owner of the view''s schema, gets applicable privileges on the view (for example, SELECT) and may grant them. MySQL has no concept of a schema "owner", so MySQL adds a clause to identify the definer. The DEFINER clause is an extension where the intent is to have what the standard has; that is, a permanent record of who defined the view. This is why the default DEFINER value is the account of the view creator. The optional ALGORITHM clause is a MySQL extension to standard SQL. It affects how MySQL processes the view. ALGORITHM takes three values: MERGE, TEMPTABLE, or UNDEFINED. The default algorithm is UNDEFINED if no ALGORITHM clause is present. For more information, see https://mariadb.com/kb/en/view-algorithms/. Some views are updatable. That is, you can use them in statements such as UPDATE, DELETE, or INSERT to update the contents of the underlying table. For a view to be updatable, there must be a one-to-one relationship between the rows in the view and the rows in the underlying table. There are also certain other constructs that make a view nonupdatable. The WITH CHECK OPTION clause can be given for an updatable view to prevent inserts or updates to rows except those for which the WHERE clause in the select_statement is true. In a WITH CHECK OPTION clause for an updatable view, the LOCAL and CASCADED keywords determine the scope of check testing when the view is defined in terms of another view. The LOCAL keyword restricts the CHECK OPTION only to the view being defined. CASCADED causes the checks for underlying views to be evaluated as well. When neither keyword is given, the default is CASCADED. For more information about updatable views and the WITH CHECK OPTION clause, see https://mariadb.com/kb/en/inserting-and-updating-with-views/. URL: https://mariadb.com/kb/en/create-view/ ', '', 'https://mariadb.com/kb/en/create-view/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (455, 'TRIM', 37, 'Syntax: TRIM([{BOTH | LEADING | TRAILING} [remstr] FROM] str), TRIM([remstr FROM] str) Returns the string str with all remstr prefixes or suffixes removed. If none of the specifiers BOTH, LEADING, or TRAILING is given, BOTH is assumed. remstr is optional and, if not specified, spaces are removed. URL: https://mariadb.com/kb/en/trim/ ', 'MariaDB> SELECT TRIM('' bar ''); -> ''bar'' MariaDB> SELECT TRIM(LEADING ''x'' FROM ''xxxbarxxx''); -> ''barxxx'' MariaDB> SELECT TRIM(BOTH ''x'' FROM ''xxxbarxxx''); -> ''bar'' MariaDB> SELECT TRIM(TRAILING ''xyz'' FROM ''barxxyz''); -> ''barx'' ', 'https://mariadb.com/kb/en/trim/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (447, 'ISOLATION', 8, 'Syntax: SET [GLOBAL | SESSION] TRANSACTION ISOLATION LEVEL { REPEATABLE READ | READ COMMITTED | READ UNCOMMITTED | SERIALIZABLE } This statement sets the transaction isolation level, used for operations on InnoDB tables. Scope of the Isolation Level You can set the isolation level globally, for the current session, or for the next transaction: o With the GLOBAL keyword, the statement sets the default transaction level globally for all subsequent sessions. Existing sessions are unaffected. o With the SESSION keyword, the statement sets the default transaction level for all subsequent transactions performed within the current session. o Without any SESSION or GLOBAL keyword, the statement sets the isolation level for the next (not started) transaction performed within the current session. A change to the global default isolation level requires the SUPER privilege. Any session is free to change its session isolation level (even in the middle of a transaction), or the isolation level for its next transaction. SET TRANSACTION ISOLATION LEVEL without GLOBAL or SESSION is not permitted while there is an active transaction: MariaDB> START TRANSACTION; Query OK, 0 rows affected (0.02 sec) MariaDB> SET TRANSACTION ISOLATION LEVEL SERIALIZABLE; ERROR 1568 (25001): Transaction isolation level can''t be changed while a transaction is in progress To set the global default isolation level at server startup, use the --transaction-isolation=level option to mysqld on the command line or in an option file. Values of level for this option use dashes rather than spaces, so the permissible values are READ-UNCOMMITTED, READ-COMMITTED, REPEATABLE-READ, or SERIALIZABLE. For example, to set the default isolation level to REPEATABLE READ, use these lines in the [mysqld] section of an option file: [mysqld] transaction-isolation = REPEATABLE-READ It is possible to check or set the global and session transaction isolation levels at runtime by using the tx_isolation system variable: SELECT @@GLOBAL.tx_isolation, @@tx_isolation; SET GLOBAL tx_isolation=''REPEATABLE-READ''; SET SESSION tx_isolation=''SERIALIZABLE''; Details and Usage of Isolation Levels InnoDB supports each of the transaction isolation levels described here using different locking strategies. You can enforce a high degree of consistency with the default REPEATABLE READ level, for operations on crucial data where ACID compliance is important. Or you can relax the consistency rules with READ COMMITTED or even READ UNCOMMITTED, in situations such as bulk reporting where precise consistency and repeatable results are less important than minimizing the amount of overhead for locking. SERIALIZABLE enforces even stricter rules than REPEATABLE READ, and is used mainly in specialized situations, such as with XA transactions and for troubleshooting issues with concurrency and deadlocks. For full information about how these isolation levels work with InnoDB transactions, see http://dev.mysql.com/doc/refman/5.1/en/innodb-transaction-model.html. In particular, for additional information about InnoDB record-level locks and how it uses them to execute various types of statements, see http://dev.mysql.com/doc/refman/5.5/en/innodb-record-level-locks.html and http://dev.mysql.com/doc/refman/5.5/en/innodb-locks-set.html. The following list describes how MySQL supports the different transaction levels. The list goes from the most commonly used level to the least used. o REPEATABLE READ This is the default isolation level for InnoDB. For consistent reads, there is an important difference from the READ COMMITTED isolation level: All consistent reads within the same transaction read the snapshot established by the first read. This convention means that if you issue several plain (nonlocking) SELECT statements within the same transaction, these SELECT statements are consistent also with respect to each other. See http://dev.mysql.com/doc/refman/5.5/en/innodb-consistent-read.html. For locking reads (SELECT with FOR UPDATE or LOCK IN SHARE MODE), UPDATE, and DELETE statements, locking depends on whether the statement uses a unique index with a unique search condition, or a range-type search condition. For a unique index with a unique search condition, InnoDB locks only the index record found, not the gap before it. For other search conditions, InnoDB locks the index range scanned, using gap locks or next-key (gap plus index-record) locks to block insertions by other sessions into the gaps covered by the range. o READ COMMITTED A somewhat Oracle-like isolation level with respect to consistent (nonlocking) reads: Each consistent read, even within the same transaction, sets and reads its own fresh snapshot. See http://dev.mysql.com/doc/refman/5.5/en/innodb-consistent-read.html. For locking reads (SELECT with FOR UPDATE or LOCK IN SHARE MODE), InnoDB locks only index records, not the gaps before them, and thus permits the free insertion of new records next to locked records. For UPDATE and DELETE statements, locking depends on whether the statement uses a unique index with a unique search condition (such as WHERE id = 100), or a range-type search condition (such as WHERE id > 100). For a unique index with a unique search condition, InnoDB locks only the index record found, not the gap before it. For range-type searches, InnoDB locks the index range scanned, using gap locks or next-key (gap plus index-record) locks to block insertions by other sessions into the gaps covered by the range. This is necessary because "phantom rows" must be blocked for MySQL replication and recovery to work. *Note*: In MySQL 5.5, if the READ COMMITTED isolation level is used or the innodb_locks_unsafe_for_binlog system variable is enabled, there is no InnoDB gap locking except for foreign-key constraint checking and duplicate-key checking. Also, record locks for nonmatching rows are released after MySQL has evaluated the WHERE condition. If you use READ COMMITTED or enable innodb_locks_unsafe_for_binlog, you must use row-based binary logging. o READ UNCOMMITTED SELECT statements are performed in a nonlocking fashion, but a possible earlier version of a row might be used. Thus, using this isolation level, such reads are not consistent. This is also called a "dirty read." Otherwise, this isolation level works like READ COMMITTED. o SERIALIZABLE This level is like REPEATABLE READ, but InnoDB implicitly converts all plain SELECT statements to SELECT ... LOCK IN SHARE MODE if autocommit is disabled. If autocommit is enabled, the SELECT is its own transaction. It therefore is known to be read only and can be serialized if performed as a consistent (nonlocking) read and need not block for other transactions. (To force a plain SELECT to block if other transactions have modified the selected rows, disable autocommit.) URL: https://mariadb.com/kb/en/set-transaction-isolation-level/ ', '', 'https://mariadb.com/kb/en/set-transaction-isolation-level/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (456, 'IS', 18, 'Syntax: IS boolean_value Tests a value against a boolean value, where boolean_value can be TRUE, FALSE, or UNKNOWN. URL: https://mariadb.com/kb/en/is/ ', 'MariaDB> SELECT 1 IS TRUE, 0 IS FALSE, NULL IS UNKNOWN; -> 1, 1, 1 ', 'https://mariadb.com/kb/en/is/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (457, 'GET_FORMAT', 31, 'Syntax: GET_FORMAT({DATE|TIME|DATETIME}, {''EUR''|''USA''|''JIS''|''ISO''|''INTERNAL''}) Returns a format string. This function is useful in combination with the DATE_FORMAT() and the STR_TO_DATE() functions. URL: https://mariadb.com/kb/en/get_format/ ', 'MariaDB> SELECT DATE_FORMAT(''2003-10-03'',GET_FORMAT(DATE,''EUR'')); -> ''03.10.2003'' MariaDB> SELECT STR_TO_DATE(''10.31.2003'',GET_FORMAT(DATE,''USA'')); -> ''2003-10-31'' ', 'https://mariadb.com/kb/en/get_format/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (458, 'TINYBLOB', 22, 'TINYBLOB A BLOB column with a maximum length of 255 (28 - 1) bytes. Each TINYBLOB value is stored using a 1-byte length prefix that indicates the number of bytes in the value. URL: https://mariadb.com/kb/en/tinyblob/ ', '', 'https://mariadb.com/kb/en/tinyblob/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (459, 'SIGNAL', 23, 'Syntax: SIGNAL condition_value [SET signal_information_item [, signal_information_item] ...] condition_value: SQLSTATE [VALUE] sqlstate_value | condition_name signal_information_item: condition_information_item_name = simple_value_specification condition_information_item_name: CLASS_ORIGIN | SUBCLASS_ORIGIN | MESSAGE_TEXT | MYSQL_ERRNO | CONSTRAINT_CATALOG | CONSTRAINT_SCHEMA | CONSTRAINT_NAME | CATALOG_NAME | SCHEMA_NAME | TABLE_NAME | COLUMN_NAME | CURSOR_NAME condition_name, simple_value_specification: (see following discussion) SIGNAL is the way to "return" an error. SIGNAL provides error information to a handler, to an outer portion of the application, or to the client. Also, it provides control over the error''s characteristics (error number, SQLSTATE value, message). Without SIGNAL, it is necessary to resort to workarounds such as deliberately referring to a nonexistent table to cause a routine to return an error. No special privileges are required to execute the SIGNAL statement. The condition_value in a SIGNAL statement indicates the error value to be returned. It can be an SQLSTATE value (a 5-character string literal) or a condition_name that refers to a named condition previously defined with DECLARE ... CONDITION (see [HELP DECLARE CONDITION]). An SQLSTATE value can indicate errors, warnings, or "not found." The first two characters of the value indicate its error class, as discussed in https://mariadb.com/kb/en/signal/#signal-condition-inf ormation-items. Some signal values cause statement termination; see https://mariadb.com/kb/en/signal/#signal-effects. The SQLSTATE value for a SIGNAL statement should not start with ''00'' because such values indicate success and are not valid for signaling an error. This is true whether the SQLSTATE value is specified directly in the SIGNAL statement or in a named condition referred to in the statement. If the value is invalid, a Bad SQLSTATE error occurs. To signal a generic SQLSTATE value, use ''45000'', which means "unhandled user-defined exception." The SIGNAL statement optionally includes a SET clause that contains multiple signal items, in a comma-separated list of condition_information_item_name = simple_value_specification assignments. Each condition_information_item_name may be specified only once in the SET clause. Otherwise, a Duplicate condition information item error occurs. Valid simple_value_specification designators can be specified using stored procedure or function parameters, stored program local variables declared with DECLARE, user-defined variables, system variables, or literals. A character literal may include a _charset introducer. For information about permissible condition_information_item_name values, see https://mariadb.com/kb/en/signal/#signal-condition-inf ormation-items. URL: https://mariadb.com/kb/en/signal/ ', 'CREATE PROCEDURE p (pval INT) BEGIN DECLARE specialty CONDITION FOR SQLSTATE ''45000''; IF pval = 0 THEN SIGNAL SQLSTATE ''01000''; ELSEIF pval = 1 THEN SIGNAL SQLSTATE ''45000'' SET MESSAGE_TEXT = ''An error occurred''; ELSEIF pval = 2 THEN SIGNAL specialty SET MESSAGE_TEXT = ''An error occurred''; ELSE SIGNAL SQLSTATE ''01000'' SET MESSAGE_TEXT = ''A warning occurred'', MYSQL_ERRNO = 1000; SIGNAL SQLSTATE ''45000'' SET MESSAGE_TEXT = ''An error occurred'', MYSQL_ERRNO = 1001; END IF; END; ', 'https://mariadb.com/kb/en/signal/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (460, 'SAVEPOINT', 8, 'Syntax: SAVEPOINT identifier ROLLBACK [WORK] TO [SAVEPOINT] identifier RELEASE SAVEPOINT identifier InnoDB supports the SQL statements SAVEPOINT, ROLLBACK TO SAVEPOINT, RELEASE SAVEPOINT and the optional WORK keyword for ROLLBACK. URL: https://mariadb.com/kb/en/savepoint/ ', '', 'https://mariadb.com/kb/en/savepoint/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (461, 'USER', 17, 'Syntax: USER() Returns the current MySQL user name and host name as a string in the utf8 character set. URL: https://mariadb.com/kb/en/user/ ', 'MariaDB> SELECT USER(); -> ''davida@localhost'' ', 'https://mariadb.com/kb/en/user/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (462, 'LABELS', 23, 'Syntax: [begin_label:] BEGIN [statement_list] END [end_label] [begin_label:] LOOP statement_list END LOOP [end_label] [begin_label:] REPEAT statement_list UNTIL search_condition END REPEAT [end_label] [begin_label:] WHILE search_condition DO statement_list END WHILE [end_label] Labels are permitted for BEGIN ... END blocks and for the LOOP, REPEAT, and WHILE statements. Label use for those statements follows these rules: o begin_label must be followed by a colon. o begin_label can be given without end_label. If end_label is present, it must be the same as begin_label. o end_label cannot be given without begin_label. o Labels at the same nesting level must be distinct. o Labels can be up to 16 characters long. To refer to a label within the labeled construct, use an ITERATE or LEAVE statement. The following example uses those statements to continue iterating or terminate the loop: CREATE PROCEDURE doiterate(p1 INT) BEGIN label1: LOOP SET p1 = p1 + 1; IF p1 < 10 THEN ITERATE label1; END IF; LEAVE label1; END LOOP label1; END; The scope of a block label does not include the code for handlers declared within the block. For details, see [HELP DECLARE HANDLER]. URL: https://mariadb.com/kb/en/labels/ ', '', 'https://mariadb.com/kb/en/labels/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (464, 'MPOINTFROMWKB', 32, 'MPointFromWKB(wkb[,srid]), MultiPointFromWKB(wkb[,srid]) Constructs a MULTIPOINT value using its WKB representation and SRID. URL: https://mariadb.com/kb/en/mpointfromwkb/ ', '', 'https://mariadb.com/kb/en/mpointfromwkb/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (465, 'CHAR BYTE', 22, 'The CHAR BYTE data type is an alias for the BINARY data type. This is a compatibility feature. URL: https://mariadb.com/kb/en/char-byte/ ', '', 'https://mariadb.com/kb/en/char-byte/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (469, '>', 18, 'Syntax: > Greater than: URL: https://mariadb.com/kb/en/greater-than/ ', 'MariaDB> SELECT 2 > 2; -> 0 ', 'https://mariadb.com/kb/en/greater-than/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (471, 'MICROSECOND', 31, 'Syntax: MICROSECOND(expr) Returns the microseconds from the time or datetime expression expr as a number in the range from 0 to 999999. URL: https://mariadb.com/kb/en/microsecond/ ', 'MariaDB> SELECT MICROSECOND(''12:00:00.123456''); -> 123456 MariaDB> SELECT MICROSECOND(''2009-12-31 23:59:59.000010''); -> 10 ', 'https://mariadb.com/kb/en/microsecond/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (474, 'FIELD', 37, 'Syntax: FIELD(str,str1,str2,str3,...) Returns the index (position) of str in the str1, str2, str3, ... list. Returns 0 if str is not found. If all arguments to FIELD() are strings, all arguments are compared as strings. If all arguments are numbers, they are compared as numbers. Otherwise, the arguments are compared as double. If str is NULL, the return value is 0 because NULL fails equality comparison with any value. FIELD() is the complement of ELT(). URL: https://mariadb.com/kb/en/field/ ', 'MariaDB> SELECT FIELD(''ej'', ''Hej'', ''ej'', ''Heja'', ''hej'', ''foo''); -> 2 MariaDB> SELECT FIELD(''fo'', ''Hej'', ''ej'', ''Heja'', ''hej'', ''foo''); -> 0 ', 'https://mariadb.com/kb/en/field/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (463, 'ALTER TABLE', 39, 'Syntax: ALTER [ONLINE | OFFLINE] [IGNORE] TABLE tbl_name [alter_specification [, alter_specification] ...] [partition_options] alter_specification: table_options | ADD [COLUMN] col_name column_definition [FIRST | AFTER col_name ] | ADD [COLUMN] (col_name column_definition,...) | ADD {INDEX|KEY} [index_name] [index_type] (index_col_name,...) [index_option] ... | ADD [CONSTRAINT [symbol]] PRIMARY KEY [index_type] (index_col_name,...) [index_option] ... | ADD [CONSTRAINT [symbol]] UNIQUE [INDEX|KEY] [index_name] [index_type] (index_col_name,...) [index_option] ... | ADD FULLTEXT [INDEX|KEY] [index_name] (index_col_name,...) [index_option] ... | ADD SPATIAL [INDEX|KEY] [index_name] (index_col_name,...) [index_option] ... | ADD [CONSTRAINT [symbol]] FOREIGN KEY [index_name] (index_col_name,...) reference_definition | ALTER [COLUMN] col_name {SET DEFAULT literal | DROP DEFAULT} | CHANGE [COLUMN] old_col_name new_col_name column_definition [FIRST|AFTER col_name] | MODIFY [COLUMN] col_name column_definition [FIRST | AFTER col_name] | DROP [COLUMN] col_name | DROP PRIMARY KEY | DROP {INDEX|KEY} index_name | DROP FOREIGN KEY fk_symbol | MAX_ROWS = rows | DISABLE KEYS | ENABLE KEYS | RENAME [TO|AS] new_tbl_name | ORDER BY col_name [, col_name] ... | CONVERT TO CHARACTER SET charset_name [COLLATE collation_name] | [DEFAULT] CHARACTER SET [=] charset_name [COLLATE [=] collation_name] | DISCARD TABLESPACE | IMPORT TABLESPACE | FORCE | ADD PARTITION (partition_definition) | DROP PARTITION partition_names | TRUNCATE PARTITION {partition_names | ALL} | COALESCE PARTITION number | REORGANIZE PARTITION [partition_names INTO (partition_definitions)] | ANALYZE PARTITION {partition_names | ALL} | CHECK PARTITION {partition_names | ALL} | OPTIMIZE PARTITION {partition_names | ALL} | REBUILD PARTITION {partition_names | ALL} | REPAIR PARTITION {partition_names | ALL} | PARTITION BY partitioning_expression | REMOVE PARTITIONING index_col_name: col_name [(length)] [ASC | DESC] index_type: USING {BTREE | HASH} index_option: KEY_BLOCK_SIZE [=] value | index_type | WITH PARSER parser_name | COMMENT ''string'' table_options: table_option [[,] table_option] ... (see CREATE TABLE options) partition_options: (see CREATE TABLE options) ALTER TABLE changes the structure of a table. For example, you can add or delete columns, create or destroy indexes, change the type of existing columns, or rename columns or the table itself. You can also change characteristics such as the storage engine used for the table or the table comment. Partitioning-related clauses for ALTER TABLE can be used with partitioned tables for repartitioning, for adding, dropping, merging, and splitting partitions, and for performing partitioning maintenance. For more information, see http://dev.mysql.com/doc/refman/5.5/en/alter-table-partition-operations .html. Following the table name, specify the alterations to be made. If none are given, ALTER TABLE does nothing. URL: https://mariadb.com/kb/en/alter-table/ ', '', 'https://mariadb.com/kb/en/alter-table/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (466, 'REPAIR TABLE', 20, 'Syntax: REPAIR [NO_WRITE_TO_BINLOG | LOCAL] TABLE tbl_name [, tbl_name] ... [QUICK] [EXTENDED] [USE_FRM] REPAIR TABLE repairs a possibly corrupted table. By default, it has the same effect as myisamchk --recover tbl_name. REPAIR TABLE works for MyISAM, ARCHIVE, and CSV tables. See https://mariadb.com/kb/en/myisam-storage-engine/, and https://mariadb.com/kb/en/archive/, and https://mariadb.com/kb/en/csv/ This statement requires SELECT and INSERT privileges for the table. REPAIR TABLE is supported for partitioned tables. However, the USE_FRM option cannot be used with this statement on a partitioned table. You can use ALTER TABLE ... REPAIR PARTITION to repair one or more partitions; for more information, see [HELP ALTER TABLE], and http://dev.mysql.com/doc/refman/5.5/en/partitioning-maintenance.html. URL: https://mariadb.com/kb/en/repair-table/ ', '', 'https://mariadb.com/kb/en/repair-table/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (467, 'MERGE', 39, 'The MERGE storage engine, also known as the MRG_MyISAM engine, is a collection of identical MyISAM tables that can be used as one. "Identical" means that all tables have identical column and index information. You cannot merge MyISAM tables in which the columns are listed in a different order, do not have exactly the same columns, or have the indexes in different order. However, any or all of the MyISAM tables can be compressed with myisampack. See https://mariadb.com/kb/en/myisampack/. Differences in table options such as AVG_ROW_LENGTH, MAX_ROWS, or PACK_KEYS do not matter. URL: https://mariadb.com/kb/en/merge/ ', 'MariaDB> CREATE TABLE t1 ( -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY, -> message CHAR(20)) ENGINE=MyISAM; MariaDB> CREATE TABLE t2 ( -> a INT NOT NULL AUTO_INCREMENT PRIMARY KEY, -> message CHAR(20)) ENGINE=MyISAM; MariaDB> INSERT INTO t1 (message) VALUES (''Testing''),(''table''),(''t1''); MariaDB> INSERT INTO t2 (message) VALUES (''Testing''),(''table''),(''t2''); MariaDB> CREATE TABLE total ( -> a INT NOT NULL AUTO_INCREMENT, -> message CHAR(20), INDEX(a)) -> ENGINE=MERGE UNION=(t1,t2) INSERT_METHOD=LAST; ', 'https://mariadb.com/kb/en/merge/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (475, 'MAKETIME', 31, 'Syntax: MAKETIME(hour,minute,second) Returns a time value calculated from the hour, minute, and second arguments. URL: https://mariadb.com/kb/en/maketime/ ', 'MariaDB> SELECT MAKETIME(12,15,30); -> ''12:15:30'' ', 'https://mariadb.com/kb/en/maketime/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (476, 'CURDATE', 31, 'Syntax: CURDATE() Returns the current date as a value in ''YYYY-MM-DD'' or YYYYMMDD format, depending on whether the function is used in a string or numeric context. URL: https://mariadb.com/kb/en/curdate/ ', 'MariaDB> SELECT CURDATE(); -> ''2008-06-13'' MariaDB> SELECT CURDATE() + 0; -> 20080613 ', 'https://mariadb.com/kb/en/curdate/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (478, 'ALTER TABLESPACE', 39, 'Syntax: ALTER TABLESPACE tablespace_name {ADD|DROP} DATAFILE ''file_name'' [INITIAL_SIZE [=] size] [WAIT] ENGINE [=] engine_name This statement is used with NDB cluster, which is not supported by MariaDB. URL: https://mariadb.com/kb/en/alter-tablespace/ ', '', 'https://mariadb.com/kb/en/alter-tablespace/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (479, 'IF FUNCTION', 7, 'Syntax: IF(expr1,expr2,expr3) If expr1 is TRUE (expr1 <> 0 and expr1 <> NULL) then IF() returns expr2; otherwise it returns expr3. IF() returns a numeric or string value, depending on the context in which it is used. URL: https://mariadb.com/kb/en/if-function/ ', 'MariaDB> SELECT IF(1>2,2,3); -> 3 MariaDB> SELECT IF(1<2,''yes'',''no''); -> ''yes'' MariaDB> SELECT IF(STRCMP(''test'',''test1''),''no'',''yes''); -> ''no'' ', 'https://mariadb.com/kb/en/if-function/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (480, 'ENUM', 22, 'ENUM(''value1'',''value2'',...) [CHARACTER SET charset_name] [COLLATE collation_name] An enumeration. A string object that can have only one value, chosen from the list of values ''value1'', ''value2'', ..., NULL or the special '''' error value. An ENUM column can have a maximum of 65,535 distinct values. ENUM values are represented internally as integers. URL: https://mariadb.com/kb/en/enum/ ', '', 'https://mariadb.com/kb/en/enum/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (468, 'CREATE TABLE', 39, 'Syntax: CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name (create_definition,...) [table_options] [partition_options] Or: CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name [(create_definition,...)] [table_options] [partition_options] select_statement Or: CREATE [TEMPORARY] TABLE [IF NOT EXISTS] tbl_name { LIKE old_tbl_name | (LIKE old_tbl_name) } create_definition: col_name column_definition | [CONSTRAINT [symbol]] PRIMARY KEY [index_type] (index_col_name,...) [index_option] ... | {INDEX|KEY} [index_name] [index_type] (index_col_name,...) [index_option] ... | [CONSTRAINT [symbol]] UNIQUE [INDEX|KEY] [index_name] [index_type] (index_col_name,...) [index_option] ... | {FULLTEXT|SPATIAL} [INDEX|KEY] [index_name] (index_col_name,...) [index_option] ... | [CONSTRAINT [symbol]] FOREIGN KEY [index_name] (index_col_name,...) reference_definition | CHECK (expr) column_definition: data_type [NOT NULL | NULL] [DEFAULT default_value] [AUTO_INCREMENT] [UNIQUE [KEY] | [PRIMARY] KEY] [COMMENT ''string''] [COLUMN_FORMAT {FIXED|DYNAMIC|DEFAULT}] [STORAGE {DISK|MEMORY|DEFAULT}] [reference_definition] data_type: BIT[(length)] | TINYINT[(length)] [UNSIGNED] [ZEROFILL] | SMALLINT[(length)] [UNSIGNED] [ZEROFILL] | MEDIUMINT[(length)] [UNSIGNED] [ZEROFILL] | INT[(length)] [UNSIGNED] [ZEROFILL] | INTEGER[(length)] [UNSIGNED] [ZEROFILL] | BIGINT[(length)] [UNSIGNED] [ZEROFILL] | REAL[(length,decimals)] [UNSIGNED] [ZEROFILL] | DOUBLE[(length,decimals)] [UNSIGNED] [ZEROFILL] | FLOAT[(length,decimals)] [UNSIGNED] [ZEROFILL] | DECIMAL[(length[,decimals])] [UNSIGNED] [ZEROFILL] | NUMERIC[(length[,decimals])] [UNSIGNED] [ZEROFILL] | DATE | TIME | TIMESTAMP | DATETIME | YEAR | CHAR[(length)] [CHARACTER SET charset_name] [COLLATE collation_name] | VARCHAR(length) [CHARACTER SET charset_name] [COLLATE collation_name] | BINARY[(length)] | VARBINARY(length) | TINYBLOB | BLOB | MEDIUMBLOB | LONGBLOB | TINYTEXT [BINARY] [CHARACTER SET charset_name] [COLLATE collation_name] | TEXT [BINARY] [CHARACTER SET charset_name] [COLLATE collation_name] | MEDIUMTEXT [BINARY] [CHARACTER SET charset_name] [COLLATE collation_name] | LONGTEXT [BINARY] [CHARACTER SET charset_name] [COLLATE collation_name] | ENUM(value1,value2,value3,...) [CHARACTER SET charset_name] [COLLATE collation_name] | SET(value1,value2,value3,...) [CHARACTER SET charset_name] [COLLATE collation_name] | spatial_type index_col_name: col_name [(length)] [ASC | DESC] index_type: USING {BTREE | HASH} index_option: KEY_BLOCK_SIZE [=] value | index_type | WITH PARSER parser_name | COMMENT ''string'' reference_definition: REFERENCES tbl_name (index_col_name,...) [MATCH FULL | MATCH PARTIAL | MATCH SIMPLE] [ON DELETE reference_option] [ON UPDATE reference_option] reference_option: RESTRICT | CASCADE | SET NULL | NO ACTION table_options: table_option [[,] table_option] ... table_option: ENGINE [=] engine_name | AUTO_INCREMENT [=] value | AVG_ROW_LENGTH [=] value | [DEFAULT] CHARACTER SET [=] charset_name | CHECKSUM [=] {0 | 1} | [DEFAULT] COLLATE [=] collation_name | COMMENT [=] ''string'' | CONNECTION [=] ''connect_string'' | DATA DIRECTORY [=] ''absolute path to directory'' | DELAY_KEY_WRITE [=] {0 | 1} | INDEX DIRECTORY [=] ''absolute path to directory'' | INSERT_METHOD [=] { NO | FIRST | LAST } | KEY_BLOCK_SIZE [=] value | MAX_ROWS [=] value | MIN_ROWS [=] value | PACK_KEYS [=] {0 | 1 | DEFAULT} | PASSWORD [=] ''string'' | ROW_FORMAT [=] {DEFAULT|DYNAMIC|FIXED|COMPRESSED|REDUNDANT|COMPACT} | TABLESPACE tablespace_name [STORAGE {DISK|MEMORY|DEFAULT}] | UNION [=] (tbl_name[,tbl_name]...) partition_options: PARTITION BY { [LINEAR] HASH(expr) | [LINEAR] KEY(column_list) | RANGE{(expr) | COLUMNS(column_list)} | LIST{(expr) | COLUMNS(column_list)} } [PARTITIONS num] [SUBPARTITION BY { [LINEAR] HASH(expr) | [LINEAR] KEY(column_list) } [SUBPARTITIONS num] ] [(partition_definition [, partition_definition] ...)] partition_definition: PARTITION partition_name [VALUES {LESS THAN {(expr | value_list) | MAXVALUE} | IN (value_list)}] [[STORAGE] ENGINE [=] engine_name] [COMMENT [=] ''comment_text'' ] [DATA DIRECTORY [=] ''data_dir''] [INDEX DIRECTORY [=] ''index_dir''] [MAX_ROWS [=] max_number_of_rows] [MIN_ROWS [=] min_number_of_rows] [TABLESPACE [=] tablespace_name] [NODEGROUP [=] node_group_id] [(subpartition_definition [, subpartition_definition] ...)] subpartition_definition: SUBPARTITION logical_name [[STORAGE] ENGINE [=] engine_name] [COMMENT [=] ''comment_text'' ] [DATA DIRECTORY [=] ''data_dir''] [INDEX DIRECTORY [=] ''index_dir''] [MAX_ROWS [=] max_number_of_rows] [MIN_ROWS [=] min_number_of_rows] [TABLESPACE [=] tablespace_name] [NODEGROUP [=] node_group_id] select_statement: [IGNORE | REPLACE] [AS] SELECT ... (Some valid select statement) CREATE TABLE creates a table with the given name. You must have the CREATE privilege for the table. Rules for permissible table names are given in https://mariadb.com/kb/en/identifier-names/. By default, the table is created in the default database, using the InnoDB storage engine. An error occurs if the table exists, if there is no default database, or if the database does not exist. URL: https://mariadb.com/kb/en/create-table/ ', '', 'https://mariadb.com/kb/en/create-table/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (481, 'DATABASE', 17, 'Syntax: DATABASE() Returns the default (current) database name as a string in the utf8 character set. If there is no default database, DATABASE() returns NULL. Within a stored routine, the default database is the database that the routine is associated with, which is not necessarily the same as the database that is the default in the calling context. URL: https://mariadb.com/kb/en/database/ ', 'MariaDB> SELECT DATABASE(); -> ''test'' ', 'https://mariadb.com/kb/en/database/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (482, 'POINTFROMWKB', 32, 'PointFromWKB(wkb[,srid]) Constructs a POINT value using its WKB representation and SRID. URL: https://mariadb.com/kb/en/pointfromwkb/ ', '', 'https://mariadb.com/kb/en/pointfromwkb/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (483, 'POWER', 4, 'Syntax: POWER(X,Y) This is a synonym for POW(). URL: https://mariadb.com/kb/en/power/ ', '', 'https://mariadb.com/kb/en/power/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (484, 'ATAN', 4, 'Syntax: ATAN(X) Returns the arc tangent of X, that is, the value whose tangent is X. URL: https://mariadb.com/kb/en/atan/ ', 'MariaDB> SELECT ATAN(2); -> 1.1071487177941 MariaDB> SELECT ATAN(-2); -> -1.1071487177941 ', 'https://mariadb.com/kb/en/atan/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (485, 'STRCMP', 37, 'Syntax: STRCMP(expr1,expr2) STRCMP() returns 0 if the strings are the same, -1 if the first argument is smaller than the second according to the current sort order, and 1 otherwise. URL: https://mariadb.com/kb/en/strcmp/ ', 'MariaDB> SELECT STRCMP(''text'', ''text2''); -> -1 MariaDB> SELECT STRCMP(''text2'', ''text''); -> 1 MariaDB> SELECT STRCMP(''text'', ''text''); -> 0 ', 'https://mariadb.com/kb/en/strcmp/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (470, 'ANALYZE TABLE', 20, 'Syntax: ANALYZE [NO_WRITE_TO_BINLOG | LOCAL] TABLE tbl_name [, tbl_name] ... ANALYZE TABLE analyzes and stores the key distribution for a table. During the analysis, the table is locked with a read lock for InnoDB and MyISAM. This statement works with InnoDB, Aria and MyISAM tables. For MyISAM tables, this statement is equivalent to using myisamchk --analyze. For more information on how the analysis works within InnoDB, see http://dev.mysql.com/doc/refman/5.5/en/innodb-restrictions.html. MySQL uses the stored key distribution to decide the order in which tables should be joined when you perform a join on something other than a constant. In addition, key distributions can be used when deciding which indexes to use for a specific table within a query. This statement requires SELECT and INSERT privileges for the table. ANALYZE TABLE is supported for partitioned tables, and you can use ALTER TABLE ... ANALYZE PARTITION to analyze one or more partitions; for more information, see [HELP ALTER TABLE], and http://dev.mysql.com/doc/refman/5.5/en/partitioning-maintenance.html. URL: https://mariadb.com/kb/en/analyze-table/ ', '', 'https://mariadb.com/kb/en/analyze-table/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (472, 'CONSTRAINT', 39, 'InnoDB supports foreign keys, which let you cross-reference related data across tables, and foreign key constraints, which help keep this spread-out data consistent. The syntax for an InnoDB foreign key constraint definition in the CREATE TABLE or ALTER TABLE statement looks like this: [CONSTRAINT [symbol]] FOREIGN KEY [index_name] (index_col_name, ...) REFERENCES tbl_name (index_col_name,...) [ON DELETE reference_option] [ON UPDATE reference_option] reference_option: RESTRICT | CASCADE | SET NULL | NO ACTION URL: https://mariadb.com/kb/en/constraint/ ', 'CREATE TABLE product (category INT NOT NULL, id INT NOT NULL, price DECIMAL, PRIMARY KEY(category, id)) ENGINE=INNODB; CREATE TABLE customer (id INT NOT NULL, PRIMARY KEY (id)) ENGINE=INNODB; CREATE TABLE product_order (no INT NOT NULL AUTO_INCREMENT, product_category INT NOT NULL, product_id INT NOT NULL, customer_id INT NOT NULL, PRIMARY KEY(no), INDEX (product_category, product_id), FOREIGN KEY (product_category, product_id) REFERENCES product(category, id) ON UPDATE CASCADE ON DELETE RESTRICT, INDEX (customer_id), FOREIGN KEY (customer_id) REFERENCES customer(id)) ENGINE=INNODB; ', 'https://mariadb.com/kb/en/constraint/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (473, 'CREATE SERVER', 39, 'Syntax: CREATE SERVER server_name FOREIGN DATA WRAPPER wrapper_name OPTIONS (option [, option] ...) option: { HOST character-literal | DATABASE character-literal | USER character-literal | PASSWORD character-literal | SOCKET character-literal | OWNER character-literal | PORT numeric-literal } This statement creates the definition of a server for use with the FEDERATED storage engine. The CREATE SERVER statement creates a new row within the servers table within the mysql database. This statement requires the SUPER privilege. The server_name should be a unique reference to the server. Server definitions are global within the scope of the server, it is not possible to qualify the server definition to a specific database. server_name has a maximum length of 64 characters (names longer than 64 characters are silently truncated), and is case insensitive. You may specify the name as a quoted string. The wrapper_name should be mysql, and may be quoted with single quotation marks. Other values for wrapper_name are not currently supported. For each option you must specify either a character literal or numeric literal. Character literals are UTF-8, support a maximum length of 64 characters and default to a blank (empty) string. String literals are silently truncated to 64 characters. Numeric literals must be a number between 0 and 9999, default value is 0. *Note*: Note that the OWNER option is currently not applied, and has no effect on the ownership or operation of the server connection that is created. The CREATE SERVER statement creates an entry in the mysql.servers table that can later be used with the CREATE TABLE statement when creating a FEDERATED table. The options that you specify will be used to populate the columns in the mysql.servers table. The table columns are Server_name, Host, Db, Username, Password, Port and Socket. URL: https://mariadb.com/kb/en/create-server/ ', 'CREATE SERVER s FOREIGN DATA WRAPPER mysql OPTIONS (USER ''Remote'', HOST ''192.168.1.106'', DATABASE ''test''); ', 'https://mariadb.com/kb/en/create-server/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (489, 'MEDIUMTEXT', 22, 'MEDIUMTEXT [CHARACTER SET charset_name] [COLLATE collation_name] A TEXT column with a maximum length of 16,777,215 (224 - 1) characters. The effective maximum length is less if the value contains multi-byte characters. Each MEDIUMTEXT value is stored using a 3-byte length prefix that indicates the number of bytes in the value. URL: https://mariadb.com/kb/en/mediumtext/ ', '', 'https://mariadb.com/kb/en/mediumtext/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (490, 'LN', 4, 'Syntax: LN(X) Returns the natural logarithm of X; that is, the base-e logarithm of X. If X is less than or equal to 0, then NULL is returned. URL: https://mariadb.com/kb/en/ln/ ', 'MariaDB> SELECT LN(2); -> 0.69314718055995 MariaDB> SELECT LN(-2); -> NULL ', 'https://mariadb.com/kb/en/ln/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (491, 'RETURN', 23, 'Syntax: RETURN expr The RETURN statement terminates execution of a stored function and returns the value expr to the function caller. There must be at least one RETURN statement in a stored function. There may be more than one if the function has multiple exit points. This statement is not used in stored procedures, triggers, or events. The LEAVE statement can be used to exit a stored program of those types. URL: https://mariadb.com/kb/en/return/ ', '', 'https://mariadb.com/kb/en/return/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (493, 'LOG', 4, 'Syntax: LOG(X), LOG(B,X) If called with one parameter, this function returns the natural logarithm of X. If X is less than or equal to 0, then NULL is returned. The inverse of this function (when called with a single argument) is the EXP() function. URL: https://mariadb.com/kb/en/log/ ', 'MariaDB> SELECT LOG(2); -> 0.69314718055995 MariaDB> SELECT LOG(-2); -> NULL ', 'https://mariadb.com/kb/en/log/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (494, 'SET SQL_LOG_BIN', 8, 'Syntax: SET sql_log_bin = {0|1} The sql_log_bin variable controls whether logging to the binary log is done. The default value is 1 (do logging). To change logging for the current session, change the session value of this variable. The session user must have the SUPER privilege to set this variable. Beginning with MySQL 5.5.5, it is no longer possible to set @@session.sql_log_bin within a transaction or subquery. (Bug #53437) URL: https://mariadb.com/kb/en/set-sql_log_bin/ ', '', 'https://mariadb.com/kb/en/set-sql_log_bin/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (495, '!=', 18, 'Syntax: <>, != Not equal: URL: https://mariadb.com/kb/en/not-equal/ ', 'MariaDB> SELECT ''.01'' <> ''0.01''; -> 1 MariaDB> SELECT .01 <> ''0.01''; -> 0 MariaDB> SELECT ''zapp'' <> ''zappp''; -> 1 ', 'https://mariadb.com/kb/en/not-equal/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (477, 'SET PASSWORD', 10, 'Syntax: SET PASSWORD [FOR user] = { PASSWORD(''cleartext password'') | OLD_PASSWORD(''cleartext password'') | ''encrypted password'' } The SET PASSWORD statement assigns a password to an existing MySQL user account. When the read_only system variable is enabled, the SUPER privilege is required to use SET PASSWORD, in addition to whatever other privileges might be required. If the password is specified using the PASSWORD() or OLD_PASSWORD() function, the cleartext (unencrypted) password should be given as the argument to the function, which hashes the password and returns the encrypted password string. If the password is specified without using either function, it should be the already encrypted password value as a literal string. In all cases, the encrypted password string must be in the format required by the authentication method used for the account. The old_passwords system variable value determines the hashing method used by PASSWORD(). If you specify the password using that function and SET PASSWORD rejects the password as not being in the correct format, it may be necessary to set old_passwords to change the hashing method. For descriptions of the permitted values, see https://mariadb.com/kb/en/server-system-variables#old_passwords. With no FOR user clause, this statement sets the password for the current user. (To see which account the server authenticated you as, invoke the CURRENT_USER() function.) Any client who successfully connects to the server using a nonanonymous account can change the password for that account. With a FOR user clause, this statement sets the password for the named user. You must have the UPDATE privilege for the mysql database to do this. The user account name uses the format described in https://mariadb.com/kb/en/create-user#account-names. The user value should be given as ''user_name''@''host_name'', where ''user_name'' and ''host_name'' are exactly as listed in the User and Host columns of the mysql.user table row. (If you specify only a user name, a host name of ''%'' is used.) For example, to set the password for an account with User and Host column values of ''bob'' and ''%.example.org'', write the statement like this: SET PASSWORD FOR ''bob''@''%.example.org'' = PASSWORD(''cleartext password''); URL: https://mariadb.com/kb/en/set-password/ ', '', 'https://mariadb.com/kb/en/set-password/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (486, 'INSERT DELAYED', 27, 'Syntax: INSERT DELAYED ... The DELAYED option for the INSERT statement is a MySQL extension to standard SQL that is very useful if you have clients that cannot or need not wait for the INSERT to complete. This is a common situation when you use MySQL for logging and you also periodically run SELECT and UPDATE statements that take a long time to complete. When a client uses INSERT DELAYED, it gets an okay from the server at once, and the row is queued to be inserted when the table is not in use by any other thread. Another major benefit of using INSERT DELAYED is that inserts from many clients are bundled together and written in one block. This is much faster than performing many separate inserts. Note that INSERT DELAYED is slower than a normal INSERT if the table is not otherwise in use. There is also the additional overhead for the server to handle a separate thread for each table for which there are delayed rows. This means that you should use INSERT DELAYED only when you are really sure that you need it. The queued rows are held only in memory until they are inserted into the table. This means that if you terminate mysqld forcibly (for example, with kill -9) or if mysqld dies unexpectedly, any queued rows that have not been written to disk are lost. There are some constraints on the use of DELAYED: o INSERT DELAYED works only with MyISAM, MEMORY, ARCHIVE, and BLACKHOLE tables. For engines that do not support DELAYED, an error occurs. o An error occurs for INSERT DELAYED if used with a table that has been locked with LOCK TABLES because the insert must be handled by a separate thread, not by the session that holds the lock. o For MyISAM tables, if there are no free blocks in the middle of the data file, concurrent SELECT and INSERT statements are supported. Under these circumstances, you very seldom need to use INSERT DELAYED with MyISAM. o INSERT DELAYED should be used only for INSERT statements that specify value lists. The server ignores DELAYED for INSERT ... SELECT or INSERT ... ON DUPLICATE KEY UPDATE statements. o Because the INSERT DELAYED statement returns immediately, before the rows are inserted, you cannot use LAST_INSERT_ID() to get the AUTO_INCREMENT value that the statement might generate. o DELAYED rows are not visible to SELECT statements until they actually have been inserted. o Prior to MySQL 5.5.7, INSERT DELAYED was treated as a normal INSERT if the statement inserted multiple rows, binary logging was enabled, and the global logging format was statement-based (that is, whenever binlog_format was set to STATEMENT). Beginning with MySQL 5.5.7, INSERT DELAYED is always handled as a simple INSERT (that is, without the DELAYED option) whenever the value of binlog_format is STATEMENT or MIXED. (In the latter case, the statement no longer triggers a switch to row-based logging, and so is logged using the statement-based format.) This does not apply when using row-based binary logging mode (binlog_format set to ROW), in which INSERT DELAYED statements are always executed using the DELAYED option as specified, and logged as row-update events. o DELAYED is ignored on slave replication servers, so that INSERT DELAYED is treated as a normal INSERT on slaves. This is because DELAYED could cause the slave to have different data than the master. o Pending INSERT DELAYED statements are lost if a table is write locked and ALTER TABLE is used to modify the table structure. o INSERT DELAYED is not supported for views. o INSERT DELAYED is not supported for partitioned tables. URL: https://mariadb.com/kb/en/insert-delayed/ ', '', 'https://mariadb.com/kb/en/insert-delayed/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (496, 'WHILE', 23, 'Syntax: [begin_label:] WHILE search_condition DO statement_list END WHILE [end_label] The statement list within a WHILE statement is repeated as long as the search_condition expression is true. statement_list consists of one or more SQL statements, each terminated by a semicolon (;) statement delimiter. A WHILE statement can be labeled. For the rules regarding label use, see [HELP labels]. URL: https://mariadb.com/kb/en/while/ ', 'CREATE PROCEDURE dowhile() BEGIN DECLARE v1 INT DEFAULT 5; WHILE v1 > 0 DO ... SET v1 = v1 - 1; END WHILE; END; ', 'https://mariadb.com/kb/en/while/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (497, 'AES_DECRYPT', 12, 'Syntax: AES_DECRYPT(crypt_str,key_str) This function decrypts data using the official AES (Advanced Encryption Standard) algorithm. For more information, see the description of AES_ENCRYPT(). URL: https://mariadb.com/kb/en/aes_decrypt/ ', '', 'https://mariadb.com/kb/en/aes_decrypt/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (498, 'DAYNAME', 31, 'Syntax: DAYNAME(date) Returns the name of the weekday for date. The language used for the name is controlled by the value of the lc_time_names system variable (https://mariadb.com/kb/en/server-system-variables#lc_time_names). URL: https://mariadb.com/kb/en/dayname/ ', 'MariaDB> SELECT DAYNAME(''2007-02-03''); -> ''Saturday'' ', 'https://mariadb.com/kb/en/dayname/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (487, 'SHOW PROFILE', 26, 'Syntax: SHOW PROFILE [type [, type] ... ] [FOR QUERY n] [LIMIT row_count [OFFSET offset]] type: ALL | BLOCK IO | CONTEXT SWITCHES | CPU | IPC | MEMORY | PAGE FAULTS | SOURCE | SWAPS The SHOW PROFILE and SHOW PROFILES statements display profiling information that indicates resource usage for statements executed during the course of the current session. Profiling is controlled by the profiling session variable, which has a default value of 0 (OFF). Profiling is enabled by setting profiling to 1 or ON: MariaDB> SET profiling = 1; SHOW PROFILES displays a list of the most recent statements sent to the server. The size of the list is controlled by the profiling_history_size session variable, which has a default value of 15. The maximum value is 100. Setting the value to 0 has the practical effect of disabling profiling. All statements are profiled except SHOW PROFILE and SHOW PROFILES, so you will find neither of those statements in the profile list. Malformed statements are profiled. For example, SHOW PROFILING is an illegal statement, and a syntax error occurs if you try to execute it, but it will show up in the profiling list. SHOW PROFILE displays detailed information about a single statement. Without the FOR QUERY n clause, the output pertains to the most recently executed statement. If FOR QUERY n is included, SHOW PROFILE displays information for statement n. The values of n correspond to the Query_ID values displayed by SHOW PROFILES. The LIMIT row_count clause may be given to limit the output to row_count rows. If LIMIT is given, OFFSET offset may be added to begin the output offset rows into the full set of rows. By default, SHOW PROFILE displays Status and Duration columns. The Status values are like the State values displayed by SHOW PROCESSLIST, although there might be some minor differences in interpretion for the two statements for some status values (see http://dev.mysql.com/doc/refman/5.5/en/thread-information.html). Optional type values may be specified to display specific additional types of information: o ALL displays all information o BLOCK IO displays counts for block input and output operations o CONTEXT SWITCHES displays counts for voluntary and involuntary context switches o CPU displays user and system CPU usage times o IPC displays counts for messages sent and received o MEMORY is not currently implemented o PAGE FAULTS displays counts for major and minor page faults o SOURCE displays the names of functions from the source code, together with the name and line number of the file in which the function occurs o SWAPS displays swap counts Profiling is enabled per session. When a session ends, its profiling information is lost. URL: https://mariadb.com/kb/en/show-profile/ ', 'MariaDB> SELECT @@profiling; +-------------+ | @@profiling | +-------------+ | 0 | +-------------+ 1 row in set (0.00 sec) MariaDB> SET profiling = 1; Query OK, 0 rows affected (0.00 sec) MariaDB> DROP TABLE IF EXISTS t1; Query OK, 0 rows affected, 1 warning (0.00 sec) MariaDB> CREATE TABLE T1 (id INT); Query OK, 0 rows affected (0.01 sec) MariaDB> SHOW PROFILES; +----------+----------+--------------------------+ | Query_ID | Duration | Query | +----------+----------+--------------------------+ | 0 | 0.000088 | SET PROFILING = 1 | | 1 | 0.000136 | DROP TABLE IF EXISTS t1 | | 2 | 0.011947 | CREATE TABLE t1 (id INT) | +----------+----------+--------------------------+ 3 rows in set (0.00 sec) MariaDB> SHOW PROFILE; +----------------------+----------+ | Status | Duration | +----------------------+----------+ | checking permissions | 0.000040 | | creating table | 0.000056 | | After create | 0.011363 | | query end | 0.000375 | | freeing items | 0.000089 | | logging slow query | 0.000019 | | cleaning up | 0.000005 | +----------------------+----------+ 7 rows in set (0.00 sec) MariaDB> SHOW PROFILE FOR QUERY 1; +--------------------+----------+ | Status | Duration | +--------------------+----------+ | query end | 0.000107 | | freeing items | 0.000008 | | logging slow query | 0.000015 | | cleaning up | 0.000006 | +--------------------+----------+ 4 rows in set (0.00 sec) MariaDB> SHOW PROFILE CPU FOR QUERY 2; +----------------------+----------+----------+------------+ | Status | Duration | CPU_user | CPU_system | +----------------------+----------+----------+------------+ | checking permissions | 0.000040 | 0.000038 | 0.000002 | | creating table | 0.000056 | 0.000028 | 0.000028 | | After create | 0.011363 | 0.000217 | 0.001571 | | query end | 0.000375 | 0.000013 | 0.000028 | | freeing items | 0.000089 | 0.000010 | 0.000014 | | logging slow query | 0.000019 | 0.000009 | 0.000010 | | cleaning up | 0.000005 | 0.000003 | 0.000002 | +----------------------+----------+----------+------------+ 7 rows in set (0.00 sec) ', 'https://mariadb.com/kb/en/show-profile/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (499, 'COERCIBILITY', 17, 'Syntax: COERCIBILITY(str) Returns the collation coercibility value of the string argument. URL: https://mariadb.com/kb/en/coercibility/ ', 'MariaDB> SELECT COERCIBILITY(''abc'' COLLATE latin1_swedish_ci); -> 0 MariaDB> SELECT COERCIBILITY(USER()); -> 3 MariaDB> SELECT COERCIBILITY(''abc''); -> 4 ', 'https://mariadb.com/kb/en/coercibility/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (500, 'INT', 22, 'INT[(M)] [UNSIGNED] [ZEROFILL] A normal-size integer. The signed range is -2147483648 to 2147483647. The unsigned range is 0 to 4294967295. URL: https://mariadb.com/kb/en/int/ ', '', 'https://mariadb.com/kb/en/int/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (501, 'GLENGTH', 13, 'GLength(ls) Returns as a double-precision number the length of the LineString value ls in its associated spatial reference. URL: https://mariadb.com/kb/en/glength/ ', 'MariaDB> SET @ls = ''LineString(1 1,2 2,3 3)''; MariaDB> SELECT GLength(GeomFromText(@ls)); +----------------------------+ | GLength(GeomFromText(@ls)) | +----------------------------+ | 2.8284271247462 | +----------------------------+ ', 'https://mariadb.com/kb/en/glength/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (502, 'RADIANS', 4, 'Syntax: RADIANS(X) Returns the argument X, converted from degrees to radians. (Note that π radians equals 180 degrees.) URL: https://mariadb.com/kb/en/radians/ ', 'MariaDB> SELECT RADIANS(90); -> 1.5707963267949 ', 'https://mariadb.com/kb/en/radians/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (503, 'COLLATION', 17, 'Syntax: COLLATION(str) Returns the collation of the string argument. URL: https://mariadb.com/kb/en/collation/ ', 'MariaDB> SELECT COLLATION(''abc''); -> ''latin1_swedish_ci'' MariaDB> SELECT COLLATION(_utf8''abc''); -> ''utf8_general_ci'' ', 'https://mariadb.com/kb/en/collation/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (504, 'COALESCE', 18, 'Syntax: COALESCE(value,...) Returns the first non-NULL value in the list, or NULL if there are no non-NULL values. URL: https://mariadb.com/kb/en/coalesce/ ', 'MariaDB> SELECT COALESCE(NULL,1); -> 1 MariaDB> SELECT COALESCE(NULL,NULL,NULL); -> NULL ', 'https://mariadb.com/kb/en/coalesce/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (505, 'VERSION', 17, 'Syntax: VERSION() Returns a string that indicates the MySQL server version. The string uses the utf8 character set. The value might have a suffix in addition to the version number. See the description of the version system variable in https://mariadb.com/kb/en/server-system-variables#version. URL: https://mariadb.com/kb/en/version/ ', 'MariaDB> SELECT VERSION(); -> ''5.5.29-standard'' ', 'https://mariadb.com/kb/en/version/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (488, 'SHOW PROCEDURE CODE', 26, 'Syntax: SHOW PROCEDURE CODE proc_name This statement is a MySQL extension that is available only for servers that have been built with debugging support. It displays a representation of the internal implementation of the named stored procedure. A similar statement, SHOW FUNCTION CODE, displays information about stored functions (see [HELP SHOW FUNCTION CODE]). Both statements require that you be the owner of the routine or have SELECT access to the mysql.proc table. If the named routine is available, each statement produces a result set. Each row in the result set corresponds to one "instruction" in the routine. The first column is Pos, which is an ordinal number beginning with 0. The second column is Instruction, which contains an SQL statement (usually changed from the original source), or a directive which has meaning only to the stored-routine handler. URL: https://mariadb.com/kb/en/show-procedure-code/ ', 'MariaDB> DELIMITER // MariaDB> CREATE PROCEDURE p1 () -> BEGIN -> DECLARE fanta INT DEFAULT 55; -> DROP TABLE t2; -> LOOP -> INSERT INTO t3 VALUES (fanta); -> END LOOP; -> END// Query OK, 0 rows affected (0.00 sec) MariaDB> SHOW PROCEDURE CODE p1// +-----+----------------------------------------+ | Pos | Instruction | +-----+----------------------------------------+ | 0 | set fanta@0 55 | | 1 | stmt 9 "DROP TABLE t2" | | 2 | stmt 5 "INSERT INTO t3 VALUES (fanta)" | | 3 | jump 2 | +-----+----------------------------------------+ 4 rows in set (0.00 sec) ', 'https://mariadb.com/kb/en/show-procedure-code/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (492, 'SHOW COLLATION', 26, 'Syntax: SHOW COLLATION [LIKE ''pattern'' | WHERE expr] This statement lists collations supported by the server. By default, the output from SHOW COLLATION includes all available collations. The LIKE clause, if present, indicates which collation names to match. The WHERE clause can be given to select rows using more general conditions, as discussed in https://mariadb.com/kb/en/extended-show/. For example: MariaDB> SHOW COLLATION LIKE ''latin1%''; +-------------------+---------+----+---------+----------+---------+ | Collation | Charset | Id | Default | Compiled | Sortlen | +-------------------+---------+----+---------+----------+---------+ | latin1_german1_ci | latin1 | 5 | | | 0 | | latin1_swedish_ci | latin1 | 8 | Yes | Yes | 0 | | latin1_danish_ci | latin1 | 15 | | | 0 | | latin1_german2_ci | latin1 | 31 | | Yes | 2 | | latin1_bin | latin1 | 47 | | Yes | 0 | | latin1_general_ci | latin1 | 48 | | | 0 | | latin1_general_cs | latin1 | 49 | | | 0 | | latin1_spanish_ci | latin1 | 94 | | | 0 | +-------------------+---------+----+---------+----------+---------+ URL: https://mariadb.com/kb/en/show-collation/ ', '', 'https://mariadb.com/kb/en/show-collation/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (506, 'MAKE_SET', 37, 'Syntax: MAKE_SET(bits,str1,str2,...) Returns a set value (a string containing substrings separated by "," characters) consisting of the strings that have the corresponding bit in bits set. str1 corresponds to bit 0, str2 to bit 1, and so on. NULL values in str1, str2, ... are not appended to the result. URL: https://mariadb.com/kb/en/make_set/ ', 'MariaDB> SELECT MAKE_SET(1,''a'',''b'',''c''); -> ''a'' MariaDB> SELECT MAKE_SET(1 | 4,''hello'',''nice'',''world''); -> ''hello,world'' MariaDB> SELECT MAKE_SET(1 | 4,''hello'',''nice'',NULL,''world''); -> ''hello'' MariaDB> SELECT MAKE_SET(0,''a'',''b'',''c''); -> '''' ', 'https://mariadb.com/kb/en/make_set/'); INSERT INTO mysql.help_topic (help_topic_id, name, help_category_id, description, example, url) VALUES (507, 'FIND_IN_SET', 37, 'Syntax: FIND_IN_SET(str,strlist) Returns a value in the range of 1 to N if the string str is in the string list strlist consisting of N substrings. A string list is a string composed of substrings separated by "," characters. If the first argument is a constant string and the second is a column of type SET, the FIND_IN_SET() function is optimized to use bit arithmetic. Returns 0 if str is not in strlist or if strlist is the empty string. Returns NULL if either argument is NULL. This function does not work properly if the first argument contains a comma (",") character. URL: https://mariadb.com/kb/en/find_in_set/ ', 'MariaDB> SELECT FIND_IN_SET(''b'',''a,b,c,d''); -> 2 ', 'https://mariadb.com/kb/en/find_in_set/');
SELECT teachers.name, students.name, assignments.name, (completed_at-started_at) as duration from assistance_requests join students on student_id=students.id join teachers on teacher_id=teachers.id join assignments on assignment_id=assignments.id order by duration
select ts.tsEmployeeId, te.Fullname, subs.tsDate as SubbedOn, absentemp.Fullname as AbsentEmp, absence.tsDate as Absenton from tblTimeSheetsDetails subs inner join tblTimesheets ts on ts.TimeSheetID = subs.tsTimeSheetID inner join tblTimeSheetsDetails absence on subs.xRefSubTSDetailId = absence.TimeSheetDetailID and (absence.tsDate != subs.tsDate) inner join tblEmployee te on te.EmployeeID = ts.tsEmployeeId and ts.tsPayroll in (select PayrollID from tblPayroll where FiscalYear = 2018) inner join tblTimesheets absentee on absence.tsTimeSheetID = absentee.TimeSheetID inner join tblEmployee absentemp on absentee.tsEmployeeId = absentemp.EmployeeID select * from tblTimesheets where tsEmployeeId = 1071 and tsPayroll = 1406 -- (select * from tblPayroll where FiscalYear = 2018) select * from tblTimeSheetsDetails where tsTimeSheetID in ( 2996042, 3018054, 3040022, 3062229, 3066522, 3067696 ) and tsDate = '10/23/2018' select * from tblTimeSheetsDetails where TimeSheetDetailID in (4410596, 4425435)
CREATE DATABASE baza_testowa; USE baza_testowa; CREATE TABLE `baza_testowa`.`studenci` ( `Id_studenta` INT NOT NULL AUTO_INCREMENT , `Imie` VARCHAR(100) NOT NULL , `Nazwisko` VARCHAR(100) NOT NULL , `Data_urodzenia` DATE NOT NULL , `Plec` ENUM('K','M') NOT NULL , `Liczba_dzieci` INT NOT NULL DEFAULT '0' , `Czy_pobiera_stypendium` BOOLEAN NOT NULL , PRIMARY KEY (`Id_studenta`) ) ENGINE = InnoDB; insert into studenci (Id_studenta, Imie, Nazwisko, Data_urodzenia, Plec, Liczba_dzieci, Czy_pobiera_stypendium) values (null, 'Oskar', 'Szymanski', '1993-09-23', 'M', 0, true), (null, 'Janusz', 'Boruta', '1950-05-03', 'M', 8, false), (null, 'Janina', 'Kulig', '1986-01-02', 'K', 2, true);
CREATE Procedure sp_get_SchemeType (@SCHEMEID as int = 0) AS Select distinct SchemeType from Schemes where Schemes.SchemeID = @SchemeID
--1.Print the name of relationships and the entities they relate for those relationships --that all entities they connect to have a pkey. select rel1.RNAME,rel1.ename from RELATES rel1 left join CONTAINS con1 on rel1.ENAME=con1.ENAME where lower(con1.IS_KEY) = 'y' and lower(con1.KEY_TYPE) = 'primary' and rel1.rname not in ( select rel.RNAME from RELATES rel left join CONTAINS con on rel.ENAME=con.ENAME where lower(con.IS_KEY) = 'y' and lower(con.KEY_TYPE) = 'primary' group by rel.rname having count(rel.rname)!=2 ); --2.Print the relationship name and the entities they relate for those relationships --tthat have degreee 3. select distinct contains.ename,aname,r1.rname from contains,relates r1 where r1.rname in ( select rname from relates group by rname having count(rname)=3) and r1.ename=contains.ename; --3. select distinct e2h.ent2 from ents_2hops e2h join contains c on e2h.related_entity=c.ename join attr_type a where lower(e2h.ent1)='course' and lower(a.multi_valued)='y' or lower(c.data_type)='date'); --4.Print the name of an entity and its attribute names if the entry has two attributes -- and the enity oarticipates with cardinality of m in 2 of the relationships it connects to. select distinct ename,aname from contains where contains.ename in ( select ename from contains group by ename having count(aname)=2 intersect select ename from relates where cardinality='M' group by ename having count(role)>1 ) order by contains.ename; --5. select distinct contains.ename,contains.aname from relates,rel_type,contains where type=3 and rel_type.rname=relates.rname and contains.ename=relates.ename and cardinality='M'; --6.Print the name of entities or relationships that have Date as the data type of one of their attributes select con.ENAME as ENAME_OR_RNAME from CONTAINS con where lower(con.DATA_TYPE) = 'date' union all select iub.RNAME from IS_USED_BY iub where lower(iub.DATA_TYPE) = 'date'; --7.Print the name of all composite attributes and their component attributes. select ii.Composite_ANAME,ii.ANAME from IS_IN ii; --8.Print the name of all entities that have one or more derived attributes, --the name of all derived attributes and what they are driven from. select con.ENAME,d.ANAME,d.Base_ANAME from CONTAINS con right join DERIVES d on con.ANAME=d.ANAME; --9.Print the entity name and entities it relates to for those entities --that participate as both the super type(s) or subtype(s) of specializations. select ename,count(aname) as AttributeCount from contains where ename='person' group by ename; --10.Print the name of all specialization, their subtype entity, a --and the subtype entity attribute names (one line per entity and attribute combination). select spe.SNAME,con.ENAME,con.ANAME from sub spe left join CONTAINS con on spe.ENAME=con.ENAME; --Surbhi's Solution Create view Ents_2hops_attr as select distinct e2,e4,aname from (select distinct e2,e4,contains.aname from (select distinct e2,e4 from (select r1.ename as e1,r2.ename as e2 from relates r1,relates r2 where r1.rname=r2.rname and r1.ename!=r2.ename) inner join (select r3.ename as e3,r4.ename as e4 from relates r3,relates r4 where r3.rname=r4.rname and r3.ename!=r4.ename) on e1=e3 where e2<e4 order by e2) left outer join contains on contains.ename=e2 or contains.ename=e4 order by e2); Create view Ents_2hops as select distinct e2,e4 from (select distinct e2,e4 from (select r1.ename as e1,r2.ename as e2 from relates r1,relates r2 where r1.rname=r2.rname and r1.ename!=r2.ename) inner join (select r3.ename as e3,r4.ename as e4 from relates r3,relates r4 where r3.rname=r4.rname and r3.ename!=r4.ename) on e1=e3 where e2<e4 order by e2);
CREATE TABLE success ( id integer );
CREATE TABLE [display].[cmn_schedule] ( [sys_name_display_value] NVARCHAR(MAX) NULL, [time_zone_display_value] NVARCHAR(MAX) NULL, [sys_created_on_display_value] DATETIME NULL, [sys_scope_display_value] NVARCHAR(MAX) NULL, [description_display_value] NVARCHAR(MAX) NULL, [sys_updated_by_display_value] NVARCHAR(MAX) NULL, [sys_id_display_value] NVARCHAR(MAX) NULL, [sys_replace_on_upgrade_display_value] NVARCHAR(MAX) NULL, [read_only_display_value] NVARCHAR(MAX) NULL, [sys_class_name_display_value] NVARCHAR(MAX) NULL, [sys_policy_display_value] NVARCHAR(MAX) NULL, [name_display_value] NVARCHAR(MAX) NULL, [sys_tags_display_value] NVARCHAR(MAX) NULL, [document_key_display_value] NVARCHAR(MAX) NULL, [parent_display_value] NVARCHAR(MAX) NULL, [type_display_value] NVARCHAR(MAX) NULL, [sys_updated_on_display_value] DATETIME NULL, [sys_customer_update_display_value] NVARCHAR(MAX) NULL, [sys_mod_count_display_value] NVARCHAR(MAX) NULL, [document_display_value] NVARCHAR(MAX) NULL, [sys_update_name_display_value] NVARCHAR(MAX) NULL, [sys_package_display_value] NVARCHAR(MAX) NULL, [sys_created_by_display_value] NVARCHAR(MAX) NULL )
# --- !Ups ALTER TABLE meeting ADD CONSTRAINT unq_org_date UNIQUE (organization_id, date); # --- !Downs ALTER TABLE meeting DROP CONSTRAINT unq_org_date;
-- -------------------------------------------------------------------- -- RELATÓRIO - pessoas alugaram e depois compraram o mesmo carro -- -------------------------------------------------------------------- SELECT tipo, data, Cliente_id, Carro_id, COUNT(*) As 'Total Pessoas' FROM icar.pedido WHERE YEAR(data)='2020' AND MONTH(data)='01' GROUP BY data;
INSERT INTO CLIENTES SELECT * FROM CLIENTES_MADRID; /* INSERTAR EN LA TABLA CLIENTES TODOS LOS CAMPOS DE LA TABLA CLIENTES MADRID */ INSERT INTO CLIENTES (CÓDIGOCLIENTE,EMPRESA,POBLACIÓN,TELÉFONO) SELECT CÓDIGOCLIENTE,EMPRESA,POBLACIÓN,TELÉFONO FROM CLIENTES_MADRID; /* INSERTAR EN LA TABLA CLIENTES LOS CAMPOS CODIGO CLIENTE EMPRESA POBLACION TELEFONO DE LA TABLA CLIENTES MADRID */
-- Create Table -- CREATE TABLE tbl_regiao ( Id INT NOT NULL AUTO_INCREMENT, Nome VARCHAR(50) NOT NULL, PRIMARY KEY (Id) ); -- Insert Data -- Insert into tbl_regiao (Id, Nome) values (1, 'Norte') ,(2, 'Nordeste') ,(3, 'Sudeste') ,(4, 'Sul') ,(5, 'Centro-Oeste');
CREATE Procedure sp_Get_ItemLists_StockTaking (@Manufacturer nvarchar(255), @Brand nvarchar(255), @Category nvarchar(255)) As Create Table #tempCategory(CategoryID int, Status int) Exec GetLeafCategories '%', @Category Select Product_Code, ProductName from Items, Manufacturer, Brand, ItemCategories Where Items.ManufacturerID = Manufacturer.ManufacturerID and Items.BrandID = Brand.BrandID and Items.CategoryID = ItemCategories.CategoryID and Manufacturer.Manufacturer_Name like @Manufacturer and Brand.BrandName like @Brand and --ItemCategories.Category_Name like @Category ItemCategories.CategoryID in (Select CategoryID from #tempCategory) Order By Product_Code Drop Table #tempCategory