text
stringlengths
6
9.38M
SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[prc_ClientPortal_CreateMessageRecipient]') AND type in (N'P')) DROP PROCEDURE [dbo].[prc_ClientPortal_CreateMessageRecipient] GO CREATE PROC [dbo].[prc_ClientPortal_CreateMessageRecipient] @MessageID int ,@RecipientUserID int ,@RecipientIsClient bit ,@ErrorMessage varchar(500) OUT AS SET NOCOUNT ON; BEGIN TRY INSERT INTO [dbo].[CWI_MessageRecipient] ([MessageID], [RecipientUserID], [RecipientIsClient]) VALUES (@MessageID, @RecipientUserID, @RecipientIsClient) END TRY BEGIN CATCH SELECT @ErrorMessage = ERROR_MESSAGE() END CATCH GO
-- ==================================================================== -- -- NAME : DEPARTMENT_TAB.sql -- PROGRAM TYPE : Table -- -- PURPOSE : Script to create custom table -- -- Date Author Activity -- ===================================================================== -- 28-APR-2021 *** Initial Creation -- ===================================================================== CREATE TABLE DEAPRTMENT_TAB ( DEPARTMENT_ID NUMBER NOT NULL PRIMARY KEY ,DEPARTMENT_NAME VARCHAR2(50) NOT NULL UNIQUE ,LOCATION VARCHAR2(50) ); -- ==================================================================== -- Inserting data into the table DEPARTMENT_TAB. -- ===================================================================== INSERT INTO DEAPRTMENT_TAB (DEPARTMENT_ID, DEPARTMENT_NAME, LOCATION) VALUES (1,'Management', 'London'); INSERT INTO DEAPRTMENT_TAB (DEPARTMENT_ID, DEPARTMENT_NAME, LOCATION) VALUES (2,'Engineering', 'Cardiff'); INSERT INTO DEAPRTMENT_TAB (DEPARTMENT_ID, DEPARTMENT_NAME, LOCATION) VALUES (3,'Research & Developemnt', 'Edinburgh'); INSERT INTO DEAPRTMENT_TAB (DEPARTMENT_ID, DEPARTMENT_NAME, LOCATION) VALUES (4,'Sales', 'Belfast');
--Problem 05 SELECT FirstName,MiddleName,LastName FROM Employees
CREATE OR REPLACE PROCEDURE PROC_TY_ALARM_SYNC IS --v_sql varchar(3000); BEGIN EXECUTE IMMEDIATE 'TRUNCATE TABLE TY_NE_ZFZ'; COMMIT; EXECUTE IMMEDIATE 'INSERT INTO TY_NE_ZFZ SELECT * FROM NMSDB.NE_ZFZ@TYDB'; COMMIT; EXECUTE IMMEDIATE 'TRUNCATE TABLE TY_ALARMINFO'; COMMIT; EXECUTE IMMEDIATE 'INSERT INTO TY_ALARMINFO SELECT * FROM NMSDB.V_BOCO_ALARMINFO@TYDB'; COMMIT; EXECUTE IMMEDIATE 'TRUNCATE TABLE TY_ALARMHISTORY'; COMMIT; EXECUTE IMMEDIATE 'INSERT INTO TY_ALARMHISTORY SELECT * FROM NMSDB.V_BOCO_ALARMHISTORY@TYDB WHERE STARTTIME > SYSDATE -30'; COMMIT; END PROC_TY_ALARM_SYNC;
create procedure sp_acc_listbranches(@BankCode nvarchar(20),@KeyField nvarchar(30)=N'%', @Direction int = 0, @BookMark nvarchar(128) = N'') as IF @Direction = 1 Begin Select BranchCode,BranchName from BranchMaster Where BankCode = @BankCode and IsNull(Active,0)= 1 and BranchName like @KeyField and BranchName > @BookMark Order By BranchName,BranchCode End Else Begin Select BranchCode,BranchName from BranchMaster Where BankCode = @BankCode and IsNull(Active,0)= 1 and BranchName like @KeyField Order By BranchName,BranchCode End
CREATE TABLE message ( id INT NOT NULL AUTO_INCREMENT, sender_id INT NOT NULL, -- user.user_id receiver_id INT NOT NULL, -- user.user_id message VARCHAR(21000) NOT NULL, create_time DATETIME NOT NULL DEFAULT NOW(), PRIMARY KEY(id) );
--修改人:安志明 --修改时间:2012-11-9 --描述:创建会计科目凭证中间表 create table ERP_K3_ACCOUNT ( FACCOUNTID NUMBER(10) not null, FNUMBER VARCHAR2(40) not null, FNAME VARCHAR2(80) not null, FLEVEL NUMBER(5) not null, FDETAIL NUMBER(1) not null, FPARENTID NUMBER(10) not null, FROOTID NUMBER(10) not null, FGROUPID NUMBER(10) not null, FDC NUMBER(10) not null, FHELPERCODE VARCHAR2(40), FCURRENCYID NUMBER(10) not null, FADJUSTRATE NUMBER(1) not null, FEARNACCOUNTID NUMBER(10), FQUANTITIES NUMBER(1) not null, FUNITGROUPID NUMBER(10) not null, FMEASUREUNITID NUMBER(10) not null, FISCASH NUMBER(1) not null, FISBANK NUMBER(1) not null, FJOURNAL NUMBER(1) not null, FCONTACT NUMBER(1) not null, FISCASHFLOW NUMBER(1) not null, FDETAILID NUMBER(10) not null, FACNT NUMBER(1) not null, FLOAN NUMBER(1) not null, FDPST NUMBER(1) not null, FSTATEDDPST NUMBER(1) not null, FINTEREST NUMBER(1) not null, FISACNT NUMBER(1) not null, FISBUDGET NUMBER(1) not null, FACNTID NUMBER(10) not null, FBRNO VARCHAR2(10) not null, FACCTINT NUMBER(1) not null, FINTRATE NUMBER(5,3) not null, FLASTINTDATE DATE, FACNTTYPE NUMBER(10) not null, FTRADENUM VARCHAR2(40), FCONTROL NUMBER(10) not null, FVIEWMSG NUMBER(1) not null, FMESSAGE VARCHAR2(100), FDELETE NUMBER(5) not null, FISBUSI NUMBER(10) not null, FFULLNAME VARCHAR2(250), FMODIFYTIME VARCHAR2(36) not null, FSYSTEMTYPE NUMBER(10) not null, FCONTROLSYSTEM NUMBER(5) not null, UUID VARCHAR2(36) not null, FCFITEMID NUMBER(10), FSUBCFITEMID NUMBER(10), FCORPCODE VARCHAR2(8) ); commit;
USE AgendamentoBarbearia DROP TABLE cliente CREATE TABLE cliente( cod_cliente INT NOT NULL, nome_cliente VARCHAR (20) NOT NULL, agendamento VARCHAR (10) NOT NULL ); INSERT INTO cliente (cod_cliente, nome_cliente, agendamento) VALUES (001, 'J˙lio Freitas', '2021-05-10'), (002, 'Gonzalo Alejandro', '2021-05-11'), (003, 'Cristiano Gracieri', '2021-05-12'), (004, 'Marcos VinÝcius', '2021-05-13'), (005, 'Jamerson Ara˙jo', '2021-05-14'), (006, 'NÚlio Luz', '2021-05-15'), (007, 'Thiago Fagundes', '2021-05-16'), (008, 'Marlon Ara˙jo', '2021-05-17'), (009, 'Emerson Neves', '2021-05-18'), (010, 'Yuri Trivellato', '2021-05-19') SELECT TOP 10 cod_cliente, nome_cliente, agendamento FROM cliente ORDER BY agendamento DESC
-- show-x-dollar-tables.sql select kqftanam from x$kqfta /
-- Indexes for primary keys have been explicitly created. Furthermore, with -- InnoDB tables, there must be an index where the foreign key and the -- referenced key are listed as the FIRST columns. -- ---------- Table for validation queries from the connection pool ----------- DROP TABLE IF EXISTS PingTable; CREATE TABLE PingTable (foo CHAR(1)); -- ----------------------------------------------------------------------------- -- Drop tables. NOTE: before dropping a table (when re-executing the script), -- the tables having columns acting as foreign keys of the table to be dropped, -- must be dropped first (otherwise, the corresponding checks on those tables -- could not be done). DROP TABLE IF EXISTS Bet; DROP TABLE IF EXISTS BetOption; DROP TABLE IF EXISTS BetType; ALTER TABLE Account DROP FOREIGN KEY AccountUserIdFK; DROP TABLE IF EXISTS User; DROP TABLE IF EXISTS Account; DROP TABLE IF EXISTS Event; DROP TABLE IF EXISTS Category; -- ------------------------------- Account ------------------------------------ CREATE TABLE Account ( accId BIGINT NOT NULL AUTO_INCREMENT, balance NUMERIC(8,2) NOT NULL, userId BIGINT, version BIGINT, CONSTRAINT AccountPK PRIMARY KEY(accId) ) ENGINE = InnoDB; CREATE INDEX AccountIndexByAccId ON Account (accId); -- ------------------------------- User ------------------------------------ CREATE TABLE User ( userId BIGINT NOT NULL AUTO_INCREMENT, login VARCHAR(50) NOT NULL, name VARCHAR(50) NOT NULL, lastName VARCHAR(100) NOT NULL, email VARCHAR(50) NOT NULL, passwd VARCHAR(50) NOT NULL, accId BIGINT, version BIGINT, CONSTRAINT UserPK PRIMARY KEY(userId), CONSTRAINT UserAccIdFK FOREIGN KEY(accId) REFERENCES Account (accId) ) ENGINE = InnoDB; CREATE INDEX UserIndexByUserId ON User (userId); ALTER TABLE Account ADD CONSTRAINT AccountUserIdFK FOREIGN KEY(userId) REFERENCES User (userId); -- ------------------------------- Category ------------------------------------ CREATE TABLE Category ( catId BIGINT NOT NULL AUTO_INCREMENT, name VARCHAR(100), CONSTRAINT CategoryPK PRIMARY KEY(catId) ) ENGINE = InnoDB; CREATE INDEX CategoryIndexByCatId ON Category (catId); INSERT INTO Category (name) VALUES ('Cricket'), ('Petanca'), ('Mus'), ('Aguantar la respiración'); -- ------------------------------- Event ------------------------------------ CREATE TABLE Event ( eventId BIGINT NOT NULL AUTO_INCREMENT, name VARCHAR(100) NOT NULL, date TIMESTAMP NOT NULL, catId BIGINT NOT NULL, version BIGINT, CONSTRAINT EventPK PRIMARY KEY(eventId), CONSTRAINT EventCatIdFK FOREIGN KEY(catId) REFERENCES Category (catId) ) ENGINE = InnoDB; CREATE INDEX EventIndexByEventId ON Event (eventId); -- ------------------------------- BetType ------------------------------------ CREATE TABLE BetType ( betTypeId BIGINT NOT NULL AUTO_INCREMENT, question VARCHAR(400) NOT NULL, multipleWinner CHAR NOT NULL, winner BIT NOT NULL, eventId BIGINT NOT NULL, version BIGINT, CONSTRAINT BetTypePK PRIMARY KEY(betTypeId), CONSTRAINT BetTypeEventIdFK FOREIGN KEY(eventId) REFERENCES Event (eventId) ) ENGINE = InnoDB; CREATE INDEX BetTypeIndexByBetTypeId ON BetType (betTypeId); -- ------------------------------- BetOption ------------------------------------ CREATE TABLE BetOption ( betOptionId BIGINT NOT NULL AUTO_INCREMENT, name VARCHAR(400) NOT NULL, quota NUMERIC(8,2) NOT NULL, winner CHAR NOT NULL, betTypeId BIGINT NOT NULL, version BIGINT, CONSTRAINT BetOptionPK PRIMARY KEY(betOptionId), CONSTRAINT BetOptionBetTypeIdFK FOREIGN KEY(betTypeId) REFERENCES BetType (betTypeId), CONSTRAINT validQuota CHECK ( quota >= 0 ) ) ENGINE = InnoDB; CREATE INDEX BetOptionIndexByBetOptionId ON BetOption (betOptionId); -- ------------------------------- Bet ------------------------------------ CREATE TABLE Bet ( betId BIGINT NOT NULL AUTO_INCREMENT, amount NUMERIC(8,2) NOT NULL, date TIMESTAMP NOT NULL, accId BIGINT NOT NULL, betOptionId BIGINT NOT NULL, CONSTRAINT BetPK PRIMARY KEY(betId), CONSTRAINT BetAccIdFK FOREIGN KEY(accId) REFERENCES Account (accId), CONSTRAINT BetBetOptionIdFK FOREIGN KEY(betOptionId) REFERENCES BetOption (betOptionId), CONSTRAINT validAmount CHECK ( amount >= 0 ) ) ENGINE = InnoDB; CREATE INDEX BetIndexByBetId ON Bet (betId);
CREATE PROCEDURE SP_ALMACENAMIENTO_VALIDA_TAG_ORIGEN @TAG VARCHAR(100), @BOD_CODIGO VARCHAR(10), @EMP_CODIGO INT AS BEGIN -- CONSULTAMOS SI EL TAG INGRESADO TIENE PRODUCTOS ASOCIADOS A LA BODEGA Y EMPRESA ACTUAL SELECT COUNT(*) AS total FROM LOTE_SKU WHERE LOT_UBICACION_DESTINO = @TAG AND BOD_CODIGO = @BOD_CODIGO AND EMP_CODIGO = @EMP_CODIGO AND LOT_ESTADO = 1 END
create table SECTION as select to_number(concat(t.STRM, t.CLASS_NBR)) as id, t.strm, t.class_nbr, t.CRSE_ID, t.subject, t.catalog_nbr, t.CLASS_SECTION, t.descr, t.SESSION_CODE, i.units_acad_prog, i.SSR_COMPONENT, i.meeting_days, i.start_time, i.end_time, i.start_date, i.end_date, i.bldg_cd, i.room, i.enrl_cap, i.wait_cap, i.emplid, i.first_name, i.last_name, i.email_addr, t.enrl_tot, t.WAIT_TOT, t.enrl_stat, t.class_stat, t.class_type, t.associated_class, t.schedule_print, t.acad_org, t.acad_career, t.ACAD_GROUP, t.institution, t.campus, t.campus_event_nbr, t.combined_section from CMSCOMMON.SFO_CLASS_TBL t join (select * from CMSCOMMON.SFO_CR_IOC_MV union select * from CMSCOMMON.SFO_CR_IOC_NO_MV) i on i.strm=t.strm and i.CLASS_NBR=t.CLASS_NBR and t.class_type = 'E' where to_number(t.strm)>=2187 and t.acad_org like '572%' order by subject, catalog_nbr, class_section
-- phpMyAdmin SQL Dump -- version 5.1.0 -- https://www.phpmyadmin.net/ -- -- Servidor: 127.0.0.1 -- Tiempo de generación: 30-06-2021 a las 21:59:22 -- Versión del servidor: 10.4.18-MariaDB -- Versión de PHP: 7.4.16 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 */; -- -- Base de datos: `prueba_opa` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `elementos` -- CREATE TABLE `elementos` ( `id` int(11) NOT NULL, `id_session` varchar(10) NOT NULL, `peso` int(12) NOT NULL, `calorias` int(12) NOT NULL, `elemento` varchar(15) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Volcado de datos para la tabla `elementos` -- INSERT INTO `elementos` (`id`, `id_session`, `peso`, `calorias`, `elemento`) VALUES (347, '4023', 2, 10, 'agua'), (348, '4023', 3, 15, 'bocadillo'), (349, '4023', 20, 20, 'energisante'), (350, '4023', 2, 10, 'jugos'), (351, '4023', 4, 10, 'arinas'); -- -- Índices para tablas volcadas -- -- -- Indices de la tabla `elementos` -- ALTER TABLE `elementos` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT de las tablas volcadas -- -- -- AUTO_INCREMENT de la tabla `elementos` -- ALTER TABLE `elementos` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=352; 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 PROCEDURE sp_get_AdjustItems (@CATEGORYID INT ) as select DISTINCT Items.Product_Code, categoryid, ProductName, Purchase_Price from items,Batch_Products where categoryid = @CATEGORYID and Active = 1 and Batch_Products.Product_Code = Items.Product_Code order by categoryid
--PROBLEM 19 --1. Users should not be allowed to buy items with higher level than their level. -- Create a trigger that restricts that. -- The trigger should prevent inserting items that are above specified level -- while allowing all others to be inserted. --2. Add bonus cash of 50000 to users: baleremuda, loosenoise, inguinalself, -- buildingdeltoid, monoxidecos in the game “Bali”. --3. There are two groups of items that you must buy for the above users. -- The first are items with id between 251 and 299 including. Second group are items with id -- between 501 and 539 including. -- Take off cash from each user for the bought items. --4. Select all users in the current game (“Bali”) with their items. -- Display username, game name, cash and item name. Sort the result by username alphabetically, -- then by item name alphabetically. SELECT u.Username, g.[Name], ug.Cash, i.[Name] FROM Users AS u JOIN UsersGames AS ug ON u.Id = ug.UserId JOIN Games AS g ON ug.GameId = g.Id JOIN UserGameItems AS ugi ON ug.Id = ugi.UserGameId JOIN Items AS i ON ugi.ItemId = i.Id WHERE g.[Name] = 'Bali' ORDER BY u.Username, i.[Name]
------------------------------------ --Author: Jeffrey Yu --RevisedDate: 2015-6-16 ------------------------------------ select distinct fsc.FilingId, fsc.ContractId, cim.InvestmentId as SecID, case ss.Status when 0 then 'Obsolete' when 1 then 'Active' when 2 then 'Pending' end as SecIDStatus, ss.SecurityName, ss.Ticker, ss.TradingTicker, ss.CUSIP, ss.FundId, ss.Universe, fsc.ContractName, fsc.CIK, fsc.SeriesNumber, fsc.SeriesName, fsc.Accession, fsc.LastUpdate from QAData_GADB..FilingSECContract as fsc left join GlobalDocumentData_GADB..ContractIdInvestmentMapping as cim on cim.ContractId=fsc.ContractId left join SecurityData_GADB..SecuritySearch as ss on ss.SecId=cim.InvestmentId where fsc.FilingId in (6567514,6567517,6567537,6567544,6567582,6567592,6567636) order by fsc.FilingId,fsc.ContractId
INSERT INTO projects (title, category, funding_goal, start_date, end_date) VALUES ("Sea of Stars", "Games", 92346, "03/18/2020", "04/18/2020"), ("MIND MGMT","Games", 42168, "03/18/2020", "04/18/2020"), ("Chronicles of Crime","Games", 78123, "03/18/2020", "04/18/2020"), ("Swords n Magic and Stuff","Games", 64851, "03/18/2020", "04/18/2020"), ("Multiverse","Games", 64328, "03/18/2020", "04/18/2020"), ("Bold Made","Games", 79461, "03/18/2020", "04/18/2020"), ("Ruination","Games", 97643, "03/18/2020", "04/18/2020"), ("Pax Pamir","Games", 19735, "03/18/2020", "04/18/2020"), ("Tiny Cthulhu","Games", 58214, "03/18/2020", "04/18/2020"), ("Nekojishi","Games", 69874, "03/18/2020", "04/18/2020"); INSERT INTO users (name, age) VALUES ("Bob", 50), ("Joe", 30), ("Steve", 35), ("Kai", 22), ("Reginald", 67), ("Mutumbo", 43), ("Kovacs", 35), ("Woz", 70), ("Wiz", 90), ("Patar", 15), ("Spongegar", 15), ("Squidgar", 44), ("FweeFwee", 1), ("Flapjack", 86), ("Apolo Ono", 32), ("Whelm", 72), ("Wilhelmina", 16), ("Rheinhardt", 66), ("Kristen", 42), ("Alyson", 46); INSERT INTO pledges (amount, user_id, project_id) VALUES (10.00, 1, 2), (20.00, 1, 3), (40.00, 1, 4), (50.00, 2, 3), (10.00, 3, 2), (20.00, 4, 4), (40.00, 5, 10), (60.00, 6, 10), (50.00, 7, 9), (700.00, 8, 8), (1000.00, 8, 7), (40.00, 9, 6), (50.00, 9, 3), (50.00, 10, 4), (24.00, 12, 1), (34.00, 11, 1), (12.00, 13, 6), (19.00, 14, 5), (20.00, 15, 5), (40.00, 16, 6), (35.50, 17, 7), (40.00, 18, 8), (60.00, 19, 9), (70.00, 20, 10), (100.00, 20, 4), (40.00, 19, 1), (20.00, 18, 6), (90.00, 17, 9), (230.00, 16, 6), (450.00, 15, 5);
CREATE TRIGGER tr_AfterDeleteJourneys ON Journeys AFTER delete AS begin insert into DeletedJourneys(Id, JourneyStart, JourneyEnd, Purpose, DestinationSpaceportId, SpaceshipId) SELECT Id, JourneyStart, JourneyEnd, Purpose, DestinationSpaceportId, SpaceshipId FROM deleted end
ALTER TABLE participant ADD COLUMN lecturer BIT(1) DEFAULT 0 ;
with orders as ( select * from {{ ref('int_orders') }} ), customers as ( select * from {{ ref('stg_jaffle_shop__customers') }} ), customer_orders as ( select orders.*, customers.full_name, customers.surname, customers.givenname, --- Customer level aggregations min(orders.order_date) over( partition by orders.customer_id ) as customer_first_order_date, min(orders.valid_order_date) over( partition by orders.customer_id ) as customer_first_non_returned_order_date, max(orders.valid_order_date) over( partition by orders.customer_id ) as customer_most_recent_non_returned_order_date, count(*) over( partition by orders.customer_id ) as customer_order_count, sum(case when orders.valid_order_date is not null then 1 else 0 end) over( partition by orders.customer_id ) as customer_non_returned_order_count, sum(case when orders.valid_order_date is not null then 1 else 0 end) over( partition by orders.customer_id ) as customer_total_lifetime_value, array_agg(distinct orders.order_id) over( partition by orders.customer_id ) as customer_order_ids from orders inner join customers on orders.customer_id = customers.customer_id ), add_avg_order_values as ( select *, customer_total_lifetime_value / customer_non_returned_order_count as customer_avg_non_returned_order_value from customer_orders ), final as ( select order_id, customer_id, surname, givenname, customer_first_order_date as first_order_date, customer_order_count as order_count, customer_total_lifetime_value as total_lifetime_value, order_value_dollars, order_status, payment_status from add_avg_order_values ) select * from final
Create Procedure mERP_Sp_updateStatus_Rejectabstract ( @ID int, @ScrCode nVarchar(255), @Errmessage nVarchar(255)) As Begin Update tbl_mERP_RecConfigAbstract Set Status = Status | 64 where ID = @ID Update tbl_mERP_RecConfigDetail Set Status = Status | 64 where ID = @ID Insert Into tbl_mERP_RecdErrMessages ( TransactionType, ErrMessage, KeyValue, ProcessDate) Values( @ScrCode, @Errmessage, Null, GetDate()) End
CREATE TABLE Patient ( PatientID INTEGER, PatientName VARCHAR2(50) CONSTRAINT PatientNameNotEmpty NOT NULL, PatientAddress VARCHAR2(200) CONSTRAINT PatientAddressNotEmpty NOT NULL, AdmitDate DATE, HospitalStayDays INTEGER, RoomNo INTEGER, PhysID INTEGER, CONSTRAINT pk_PrimaryPatientIDs PRIMARY KEY (PatientID), CONSTRAINT fk_RoomNoForeigns FOREIGN KEY (RoomNo) REFERENCES Room(RoomNo), CONSTRAINT fk_PhysIDForeigns FOREIGN KEY (PhysID) REFERENCES Physician(PhysID), CONSTRAINT checkRoomNos CHECK ((RoomNo >=100) AND (RoomNo <=999)), CONSTRAINT checkHospitalStayDays CHECK (HospitalStayDays >=0) ); CREATE TABLE Physician ( PhysID INTEGER, PhysName VARCHAR2(50) CONSTRAINT PhysNameNotEmpty NOT NULL, PhysDept INTEGER, TreatID INTEGER, CONSTRAINT pk_PhysIDPrimary PRIMARY KEY (PhysID), CONSTRAINT fk_TreatIDForeign FOREIGN KEY (TreatID) REFERENCES Treatment(TreatID), CONSTRAINT fk_PhysIDForeign FOREIGN KEY (PhysDept) REFERENCES Department(PhysDeptId) ); CREATE TABLE Department ( PhysDeptId INTEGER, DeptSupervisorId INTEGER, CONSTRAINT pk_PhysDeptIDPrimary PRIMARY KEY (PhysDeptId) ); CREATE TABLE Room ( RoomNo INTEGER, RoomPhone VARCHAR2(8), RoomRate NUMBER(10,2), CONSTRAINT pk_RoomNoPrimarys PRIMARY KEY (RoomNo), CONSTRAINT checkRoomNo CHECK ((RoomNo >=100) AND (RoomNo <=999)), CONSTRAINT RoomRateRange CHECK ((RoomRate >=30.00) AND (RoomRate <=100.00)) ); CREATE TABLE Treatment ( TreatID INTEGER, TreatDescription VARCHAR2(200), TreatCost NUMBER(10,2), CONSTRAINT pk_TreatIDPrimarys PRIMARY KEY (TreatID), CONSTRAINT TreatCostChecking CHECK (TreatCost >=50.00) ); ALTER TABLE DEPARTMENT ADD CONSTRAINT fk_PhysDeptIDForeign FOREIGN KEY (DeptSupervisorId) REFERENCES Physician(PhysID)
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; CREATE TABLE `guestbook` ( `id` int(11) NOT NULL, `name` varchar(256) NOT NULL, `text` text NOT NULL, `date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8; INSERT INTO `guestbook` (`id`, `name`, `text`, `date`) VALUES (1, 'Steve', 'Tolle Webseite, klasse Produkte, gerne wieder! *****', '2018-07-21 12:58:10'); CREATE TABLE `products` ( `id` int(11) NOT NULL, `name` varchar(256) NOT NULL, `description` text, `price` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; INSERT INTO `products` (`id`, `name`, `description`, `price`) VALUES (1, 'Tisch SJÄLLAND', 'Die Tischplatte besteht aus Eukalyptusholz und sorgt für aromatische Entspannung bei Frühstück, Mittag- und Abendessen.', 17900), (2, 'Tisch LACK', 'Praktisch, klein und günstig. Der Tisch für jeden Zweck.', 599), (3, 'Tisch INGO', 'Der Tisch ist aus massiver Kiefer, einem Naturmaterial, das in Würde altert.', 5900), (4, 'Schrank PAX', 'Außen schick und innen praktisch. Diese Regalkombination ist für jeden was.', 39100), (5, 'Regal KALLAX', 'Flexibel, quadratisch, praktisch, gut! Das Kallax Regal lässt sich stellen oder legen und passt so gut in jeden Raum.', 5900), (6, 'Regal BILLY', 'Billy ist der ewig moderne Favorit unter den Regalen.', 5900); CREATE TABLE `sessions` ( `id` varchar(128) NOT NULL, `data` text NOT NULL, `creation_date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8; CREATE TABLE `users` ( `username` varchar(128) NOT NULL DEFAULT '', `password` varchar(1024) NOT NULL DEFAULT '', `is_admin` tinyint(1) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8; INSERT INTO `users` (`username`, `password`, `is_admin`) VALUES ('admin', '$2y$10$MlMCmvDpeujjiFVjxqmw3uG4xSACUqesbooyHjaotnCkvWi0.Ribm', 1), ('Judy', '$2y$10$qdC9LroYzH0omCVtBmPZquq3AiCZlCYXRdAMRPmAThBLxJTkrSVK.', 0), ('Max', '$2y$10$mRCNrmcF/vyWQql6UIdHGuApolIQOhqNjMA6.EPtCI5IZqXndJ8na', 0); ALTER TABLE `guestbook` ADD PRIMARY KEY (`id`); ALTER TABLE `products` ADD PRIMARY KEY (`id`); ALTER TABLE `sessions` ADD PRIMARY KEY (`id`); ALTER TABLE `users` ADD PRIMARY KEY (`username`); ALTER TABLE `guestbook` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; ALTER TABLE `products` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
DROP DATABASE IF EXISTS `cs6400_sp17_team090`; /* Optional: MySQL centric items MySQL: DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; MySQL Storage Engines: SET default_storage_engine=InnoDB; Note: "IF EXISTS" is not universal, and the "IF NOT EXISTS" is uncommonly supported, so this functionaly may not work if outside MySQL RDBMS. Resources: https://dev.mysql.com/doc/refman/5.7/en/storage-engines.html https://bitnami.com/stacks/infrastructure https://www.jetbrains.com/phpstorm/ http://www.w3schools.com/ */ SET default_storage_engine=InnoDB; CREATE DATABASE IF NOT EXISTS cs6400_sp17_team090 DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; USE cs6400_sp17_team090; CREATE TABLE `User` ( Username varchar(80) NOT NULL, Password varchar(250) NOT NULL, FirstName varchar(250) NOT NULL, MiddleName varchar(250), LastName varchar(250) NOT NULL, EmailAddress varchar(250) NOT NULL, SiteID int(16) unsigned NOT NULL, PRIMARY KEY (Username) ); CREATE TABLE Site ( SiteID int(16) unsigned NOT NULL AUTO_INCREMENT, SiteName varchar(250) NOT NULL, StreetAddress varchar(250) NOT NULL, City varchar(250) NOT NULL, `State` varchar(250) NOT NULL, ZipCode varchar(250) NOT NULL, PrimaryContactNumber varchar(250) NOT NULL, PRIMARY KEY (SiteID) ); CREATE TABLE FoodBankService ( SiteID int(16) unsigned NOT NULL, PRIMARY KEY (SiteID) ); CREATE TABLE Shelter ( SiteID int(16) unsigned NOT NULL, MaleBunksAvailable int(16) unsigned NOT NULL DEFAULT '0', FemaleBunksAvailable int(16) unsigned NOT NULL DEFAULT '0', MixedBunksAvailable int(16) unsigned NOT NULL DEFAULT '0', RoomsAvailable int(16) unsigned NOT NULL DEFAULT '0', HoursOfOperaion varchar(1000) NOT NULL, ConditionsForUse varchar(1000), PRIMARY KEY (SiteID) ); CREATE TABLE FoodPantry ( SiteID int(16) unsigned NOT NULL, HoursOfOperaion varchar(1000) NOT NULL, ConditionsForUse varchar(1000), PRIMARY KEY (SiteID) ); CREATE TABLE SoupKitchen ( SiteID int(16) unsigned NOT NULL, TotalSeatsAvailable int(16) unsigned NOT NULL DEFAULT '0', RemainingSeatsAvailable int(16) unsigned NOT NULL DEFAULT '0', HoursOfOperaion varchar(1000) NOT NULL, ConditionsForUse varchar(1000), PRIMARY KEY (SiteID) ); CREATE TABLE Request ( Username varchar(80) NOT NULL, ItemID int(16) unsigned NOT NULL, RequestedQuantity int(16) unsigned NOT NULL DEFAULT '0', FulfilledQuantity int(16) unsigned NOT NULL DEFAULT '0', Status varchar(20) NOT NULL, PRIMARY KEY (Username,ItemID) ); CREATE TABLE Item ( ItemID int(16) unsigned NOT NULL AUTO_INCREMENT, ItemName varchar(250) NOT NULL, NumberOfUnits int(16) unsigned NOT NULL DEFAULT '0', ExpirationDate datetime NOT NULL, StorageType varchar(80) NOT NULL, SiteID int(16) unsigned NOT NULL, PRIMARY KEY (ItemID) ); CREATE TABLE Supplies ( ItemID int(16) unsigned NOT NULL, CategoryOfSupply varchar(80) NOT NULL ); CREATE TABLE Food ( ItemID int(16) unsigned NOT NULL, CategoryOfFood varchar(80) NOT NULL ); CREATE TABLE Client ( ClientID int(16) unsigned NOT NULL AUTO_INCREMENT, DescriptiveID varchar(250) NOT NULL, FirstName varchar(250) NOT NULL, MiddleName varchar(250), LastName varchar(250) NOT NULL, PhoneNumber varchar(80), PRIMARY KEY (ClientID), UNIQUE KEY DescriptiveID (DescriptiveID) ); CREATE TABLE WaitList ( ClientID int(16) unsigned NOT NULL, SiteID int(16) unsigned NOT NULL, Ranking int(16) unsigned NOT NULL, PRIMARY KEY (ClientID,SiteID) ); CREATE TABLE ClientLogEntry ( LogID int(16) unsigned NOT NULL AUTO_INCREMENT, ClientID int(16) unsigned NOT NULL, DateTimeStamp datetime NOT NULL, SiteName varchar(250) NOT NULL, Description varchar(1000) NOT NULL, PRIMARY KEY (LogID) ); -- Table Constraints ALTER TABLE `User` ADD CONSTRAINT user_ibfk_1 FOREIGN KEY (SiteID) REFERENCES `Site` (SiteID); ALTER TABLE `FoodBankService` ADD CONSTRAINT foodbankservice_ibfk_1 FOREIGN KEY (SiteID) REFERENCES `Site` (SiteID); ALTER TABLE `Shelter` ADD CONSTRAINT shelter_ibfk_1 FOREIGN KEY (SiteID) REFERENCES `Site` (SiteID); ALTER TABLE `FoodPantry` ADD CONSTRAINT foodpantry_ibfk_1 FOREIGN KEY (SiteID) REFERENCES `Site` (SiteID); ALTER TABLE `SoupKitchen` ADD CONSTRAINT soupkitchen_ibfk_1 FOREIGN KEY (SiteID) REFERENCES `Site` (SiteID); ALTER TABLE `Request` ADD CONSTRAINT request_ibfk_1 FOREIGN KEY (Username) REFERENCES `User` (Username), ADD CONSTRAINT request_ibfk_2 FOREIGN KEY (ItemID) REFERENCES `Item` (ItemID); ALTER TABLE `Item` ADD CONSTRAINT item_ibfk_1 FOREIGN KEY (SiteID) REFERENCES `Site` (SiteID); ALTER TABLE `Supplies` ADD CONSTRAINT supplies_ibfk_1 FOREIGN KEY (ItemID) REFERENCES `Item` (ItemID); ALTER TABLE `Food` ADD CONSTRAINT food_ibfk_1 FOREIGN KEY (ItemID) REFERENCES `Item` (ItemID); ALTER TABLE `WaitList` ADD CONSTRAINT waitlist_ibfk_1 FOREIGN KEY (ClientID) REFERENCES `Client` (ClientID), ADD CONSTRAINT waitlist_ibfk_2 FOREIGN KEY (SiteID) REFERENCES `Site` (SiteID); ALTER TABLE `ClientLogEntry` ADD CONSTRAINT clientlogentry_ibfk_1 FOREIGN KEY (ClientID) REFERENCES `Client` (ClientID);
# --- !Ups CREATE TABLE "case" ( case_number VARCHAR(255) NOT NULL DEFAULT '', findings text, DATE DATE, constraint pk_case primary key (case_number) ); CREATE TABLE rule ( id serial, title VARCHAR(255) NOT NULL DEFAULT '', constraint pk_rule primary key(id) ); CREATE TABLE charge ( id serial, case_id VARCHAR(255) NOT NULL DEFAULT '', person_id int, rule_id int, plea VARCHAR(255) NOT NULL DEFAULT '', resolution_plan text, constraint pk_charge primary key (id), constraint fk_charge_person foreign key (person_id) references person(person_id), constraint fk_charge_rule foreign key (rule_id) references rule(id) ); # --- !Downs DROP TABLE "case"; DROP TABLE charge; DROP TABLE rule;
TRUNCATE TABLE mentor_candidates; BEGIN TRANSACTION; INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1978','miklós.lebron@gmail.com','Budapest','+2166764005','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1991','pál.molnár@gmail.com','Krakow','+4758454818','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1983','attila.ostafil@gmail.com','Krakow','+634320098','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1975','matthew.fisichella@hotmail.com','Barcelona','+6243064370','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1973','prezmek.szodoray@yahoo.com','Krakow','+3131647787','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1991','sándor.tompa@gmail.com','Krakow','+2310962902','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1981','andy.tompa@gmail.com','Miskolc','+9464322078','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1969','matthew.ciacka@gmail.com','Barcelona','+6651008256','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1989','miklós.monoczki@gmail.com','New York','+1726565492','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1978','matthew.salamon@gmail.com','Budapest','+5149530885','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1988','attila.beöthy@gmail.com','Krakow','+4766518742','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1979','matthew.salamon@hotmail.com','New York','+7959242555','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1992','prezmek.obama@gmail.com','Miskolc','+2313270254','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1978','tim.obama@yahoo.com','Barcelona','+7540852147','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1975','attila.fisichella@hotmail.com','Barcelona','+5274398399','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1983','sándor.hamilton@gmail.com','Budapest','+1019759140','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1995','andy.hamilton@yahoo.com','New York','+3052691311','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1974','giancarlo.hamilton@gmail.com','Budapest','+6196991307','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1995','sándor.beöthy@yahoo.com','Krakow','+6555387760','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1977','giancarlo.ostafil@gmail.com','Budapest','+2396947901','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1989','attila.obama@hotmail.com','Barcelona','+1632925380','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1983','prezmek.molnár@yahoo.com','Miskolc','+2649277163','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1970','mateusz.beöthy@hotmail.com','Barcelona','+9197438177','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1987','giancarlo.molnár@gmail.com','Miskolc','+6960258519','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1990','miklós.salamon@yahoo.com','New York','+2059395021','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1987','giancarlo.lebron@gmail.com','New York','+4950110720','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1986','matthew.molnár@gmail.com','New York','+9198839355','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1969','prezmek.ciacka@hotmail.com','Budapest','+2517947171','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1989','pál.hamilton@gmail.com','Barcelona','+7865798179','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1978','andy.tompa@gmail.com','Miskolc','+4129317703','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1970','sándor.ciacka@gmail.com','New York','+6919559940','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1966','tim.fisichella@yahoo.com','Barcelona','+5273218227','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1970','pál.molnár@hotmail.com','New York','+2482418650','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1994','giancarlo.salamon@gmail.com','Miskolc','+8826246958','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1980','mateusz.szodoray@yahoo.com','Miskolc','+8945809841','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1966','tim.fisichella@yahoo.com','Krakow','+2095363546','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1970','dániel.salamon@yahoo.com','New York','+8701156846','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1966','mateusz.ciacka@yahoo.com','Budapest','+2880786910','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1995','tim.monoczki@hotmail.com','New York','+1391516294','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1980','andy.monoczki@yahoo.com','Budapest','+2789789038','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1973','tim.lebron@gmail.com','Barcelona','+7054989433','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1971','miklós.tompa@gmail.com','Krakow','+7585577024','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1976','tim.monoczki@yahoo.com','Krakow','+5886658297','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1969','sándor.lebron@hotmail.com','Budapest','+1758647388','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1977','sándor.monoczki@gmail.com','New York','+1873611296','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1992','mateusz.beöthy@hotmail.com','Barcelona','+3621575451','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1970','attila.obama@gmail.com','Krakow','+5051326914','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1969','miklós.ciacka@hotmail.com','Barcelona','+6600058900','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1976','andy.szodoray@yahoo.com','Miskolc','+8358233945','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1992','prezmek.ciacka@hotmail.com','Miskolc','+3654979172','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1973','john.tompa@gmail.com','Miskolc','+1368310864','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1977','dániel.tompa@yahoo.com','Budapest','+5967349244','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1979','miklós.beöthy@yahoo.com','Barcelona','+8347333843','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1975','sándor.ostafil@gmail.com','New York','+9127776878','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1986','tamás.obama@hotmail.com','Barcelona','+7570685275','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1993','matthew.tompa@yahoo.com','New York','+6591298379','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1989','mateusz.hamilton@hotmail.com','Miskolc','+1669720566','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1966','giancarlo.fisichella@hotmail.com','Miskolc','+5990445485','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1993','dániel.lebron@yahoo.com','Budapest','+1697319174','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1979','matthew.beöthy@hotmail.com','New York','+6318224497','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1987','matthew.beöthy@hotmail.com','New York','+1991857541','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1983','mateusz.ostafil@gmail.com','New York','+2692569047','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1981','prezmek.tompa@hotmail.com','Barcelona','+7853038130','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1985','mateusz.carrey@hotmail.com','Budapest','+2654052116','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1990','tim.fisichella@hotmail.com','Budapest','+699003423','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1988','giancarlo.beöthy@gmail.com','Miskolc','+4643850841','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1989','pál.salamon@yahoo.com','Krakow','+1985168866','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1987','prezmek.monoczki@gmail.com','Miskolc','+113767690','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1982','pál.carrey@yahoo.com','New York','+4174337539','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1967','matthew.carrey@gmail.com','Budapest','+6293512797','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1967','attila.ostafil@yahoo.com','Barcelona','+3618549188','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1969','mateusz.obama@hotmail.com','New York','+1167322002','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1972','matthew.ciacka@hotmail.com','Barcelona','+4424346752','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1995','dániel.fisichella@hotmail.com','New York','+8803417632','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1968','prezmek.fisichella@yahoo.com','New York','+7623884921','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1968','tim.obama@gmail.com','New York','+508377015','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1977','attila.molnár@gmail.com','Budapest','+1422418929','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1971','miklós.monoczki@hotmail.com','Budapest','+6233859621','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1982','sándor.fisichella@gmail.com','Krakow','+2088630553','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1981','miklós.fisichella@yahoo.com','Miskolc','+8876115564','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1972','matthew.fisichella@hotmail.com','Budapest','+6590454545','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1976','john.monoczki@gmail.com','Krakow','+5963960068','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1967','giancarlo.monoczki@yahoo.com','New York','+2217071502','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1995','john.ostafil@gmail.com','Krakow','+898699843','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1973','andy.molnár@gmail.com','Miskolc','+788646619','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1974','tamás.lebron@gmail.com','New York','+9490838694','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1983','mateusz.ciacka@hotmail.com','Miskolc','+6366750574','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1972','dániel.hamilton@hotmail.com','Miskolc','+3175825099','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1990','john.monoczki@yahoo.com','Krakow','+2795276709','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1974','tamás.ciacka@hotmail.com','Krakow','+3662902968','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1971','prezmek.salamon@gmail.com','Miskolc','+2055343014','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1969','tamás.lebron@yahoo.com','Budapest','+510244885','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1966','mateusz.beöthy@hotmail.com','Budapest','+7764697555','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1988','miklós.ostafil@hotmail.com','Krakow','+7589848840','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1971','tamás.ostafil@yahoo.com','New York','+2049082759','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1987','tim.hamilton@hotmail.com','Barcelona','+6951327859','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1970','dániel.beöthy@hotmail.com','Barcelona','+8291745485','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1978','mateusz.ciacka@yahoo.com','Barcelona','+4002383897','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1976','attila.obama@yahoo.com','Krakow','+4044712436','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1975','pál.hamilton@yahoo.com','Miskolc','+3792462816','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1982','mateusz.hamilton@hotmail.com','Budapest','+5220160128','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1971','pál.fisichella@yahoo.com','Krakow','+7895076005','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1988','dániel.tompa@yahoo.com','Krakow','+2356246154','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1987','dániel.salamon@gmail.com','Miskolc','+665603416','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1988','andy.fisichella@gmail.com','Budapest','+2966212446','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1969','pál.tompa@hotmail.com','New York','+642045432','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1968','prezmek.lebron@hotmail.com','New York','+3008292212','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1965','tim.tompa@hotmail.com','Budapest','+611620323','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1993','giancarlo.beöthy@gmail.com','New York','+2263317942','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1983','andy.obama@gmail.com','New York','+7177787443','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1990','pál.salamon@gmail.com','Krakow','+2954534028','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1985','attila.salamon@yahoo.com','Barcelona','+4232095446','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1981','tamás.fisichella@hotmail.com','Krakow','+6600750760','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1994','prezmek.obama@hotmail.com','Krakow','+609012720','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1994','attila.fisichella@yahoo.com','New York','+6617524686','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1967','tim.salamon@yahoo.com','Miskolc','+27576147','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1974','sándor.carrey@yahoo.com','Miskolc','+7657237388','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1983','attila.hamilton@gmail.com','Budapest','+6576924436','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1994','dániel.ostafil@yahoo.com','Budapest','+7994084860','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1980','giancarlo.ostafil@yahoo.com','New York','+6280025204','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1991','miklós.carrey@yahoo.com','Barcelona','+2229009053','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1985','matthew.tompa@gmail.com','New York','+3065853487','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1967','tamás.ciacka@hotmail.com','Barcelona','+9280815410','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1979','john.beöthy@gmail.com','Krakow','+4492057590','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1978','prezmek.szodoray@hotmail.com','Barcelona','+7127333002','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1982','john.fisichella@yahoo.com','Miskolc','+3625822128','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1983','dániel.tompa@gmail.com','New York','+4518919632','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1986','mateusz.lebron@yahoo.com','Barcelona','+5326819963','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1991','prezmek.carrey@hotmail.com','Barcelona','+638140236','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1994','matthew.ciacka@gmail.com','Budapest','+2778993781','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1988','tamás.szodoray@hotmail.com','Miskolc','+6783067332','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1977','john.tompa@gmail.com','Miskolc','+7103831130','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1978','sándor.hamilton@gmail.com','Budapest','+4287094962','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1983','giancarlo.salamon@hotmail.com','New York','+516948901','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1977','andy.ciacka@gmail.com','Miskolc','+3331449475','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1986','giancarlo.carrey@hotmail.com','Miskolc','+9460299159','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1974','pál.monoczki@hotmail.com','Miskolc','+3098267583','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1982','tamás.tompa@hotmail.com','New York','+1779133440','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1990','john.obama@yahoo.com','New York','+4170108279','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1978','mateusz.ostafil@hotmail.com','Krakow','+988369026','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1992','andy.ciacka@gmail.com','Miskolc','+7106536715','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1990','attila.monoczki@yahoo.com','Budapest','+3844002560','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1990','prezmek.ostafil@gmail.com','Barcelona','+4108500726','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1965','tamás.tompa@yahoo.com','Krakow','+8307476129','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1976','attila.fisichella@gmail.com','New York','+2824179069','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1977','matthew.obama@hotmail.com','Budapest','+1202483569','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1994','sándor.tompa@yahoo.com','Barcelona','+4211785555','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1994','mateusz.ostafil@hotmail.com','Budapest','+8427290293','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1987','dániel.beöthy@yahoo.com','Krakow','+6361922817','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1992','matthew.molnár@gmail.com','Barcelona','+3429844484','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1969','pál.ostafil@gmail.com','Miskolc','+9702742862','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1976','john.monoczki@gmail.com','Budapest','+3570947471','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1967','john.beöthy@hotmail.com','Miskolc','+8012103741','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1988','tamás.beöthy@hotmail.com','Miskolc','+5310422901','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1977','tim.tompa@yahoo.com','New York','+7999408442','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1979','tim.beöthy@gmail.com','Budapest','+6495246858','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1979','attila.beöthy@hotmail.com','Budapest','+75756420','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1974','miklós.salamon@hotmail.com','Budapest','+8175119496','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1967','pál.szodoray@hotmail.com','Krakow','+5028896254','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1989','miklós.monoczki@hotmail.com','Krakow','+5236763695','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1992','sándor.hamilton@gmail.com','Budapest','+7326868773','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1971','andy.monoczki@yahoo.com','Barcelona','+5881423786','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1978','attila.lebron@gmail.com','Budapest','+9894058737','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1978','pál.obama@gmail.com','Barcelona','+1994639489','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1972','john.obama@gmail.com','Miskolc','+258061179','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1981','attila.obama@hotmail.com','Barcelona','+7322904593','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1982','prezmek.hamilton@hotmail.com','Miskolc','+1851015603','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1967','giancarlo.lebron@yahoo.com','Krakow','+6578816665','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1978','john.monoczki@gmail.com','New York','+9391182263','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1984','sándor.salamon@gmail.com','New York','+1706611577','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1968','john.ciacka@gmail.com','Miskolc','+8459929255','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1991','mateusz.fisichella@yahoo.com','Barcelona','+4026985883','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1966','miklós.obama@hotmail.com','Barcelona','+574734628','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1980','attila.lebron@gmail.com','Miskolc','+8407259517','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1992','dániel.ostafil@yahoo.com','Krakow','+2601636572','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1983','tim.tompa@yahoo.com','Miskolc','+1792364972','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1973','andy.ciacka@yahoo.com','New York','+7683617876','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1982','sándor.fisichella@yahoo.com','Miskolc','+1115031416','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1984','john.ostafil@yahoo.com','Budapest','+1731258501','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1986','dániel.beöthy@hotmail.com','Miskolc','+6997834868','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1990','dániel.salamon@gmail.com','Budapest','+6792058858','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1980','tim.molnár@yahoo.com','New York','+8537592531','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1966','sándor.ostafil@hotmail.com','Budapest','+981153127','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1971','john.ciacka@gmail.com','New York','+91081031','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1980','tamás.salamon@hotmail.com','Barcelona','+6341278735','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1977','pál.fisichella@hotmail.com','Budapest','+1826107485','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1965','giancarlo.tompa@yahoo.com','Barcelona','+3267989114','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1983','dániel.hamilton@hotmail.com','Krakow','+2137476218','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1995','john.lebron@gmail.com','Barcelona','+9481610525','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1983','attila.molnár@gmail.com','Budapest','+3928092339','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1993','tamás.ostafil@hotmail.com','Krakow','+9026818109','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1978','tamás.szodoray@hotmail.com','Barcelona','+1079443744','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1968','miklós.monoczki@gmail.com','Miskolc','+74399801','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1991','dániel.szodoray@hotmail.com','Krakow','+2855697764','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1983','miklós.beöthy@gmail.com','Barcelona','+5452249775','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1982','andy.ciacka@hotmail.com','Miskolc','+1017020028','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1974','andy.fisichella@hotmail.com','Miskolc','+6843132744','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1977','john.szodoray@yahoo.com','Barcelona','+6987928672','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1969','pál.monoczki@hotmail.com','Budapest','+9436752624','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1988','prezmek.ciacka@gmail.com','Budapest','+292202441','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1970','miklós.beöthy@hotmail.com','Budapest','+8163653225','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1991','tamás.hamilton@yahoo.com','Krakow','+8002581183','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1989','andy.salamon@gmail.com','Budapest','+8948950332','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1985','miklós.hamilton@yahoo.com','Krakow','+4274355575','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1991','attila.obama@hotmail.com','Miskolc','+411730163','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1985','pál.fisichella@yahoo.com','Krakow','+8582274279','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1985','matthew.ciacka@hotmail.com','Barcelona','+5919715201','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1989','attila.ciacka@hotmail.com','New York','+6721410093','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1966','attila.fisichella@hotmail.com','Budapest','+2881902527','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1980','tamás.ciacka@gmail.com','Krakow','+8908164606','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1981','matthew.lebron@hotmail.com','Miskolc','+4149367481','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1992','attila.hamilton@yahoo.com','Budapest','+5728970499','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1992','pál.ciacka@hotmail.com','Barcelona','+759294150','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1991','andy.salamon@yahoo.com','Barcelona','+7689571943','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1976','tim.salamon@gmail.com','Barcelona','+2297252295','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1973','sándor.ostafil@yahoo.com','Barcelona','+7155592726','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1969','tamás.szodoray@gmail.com','New York','+9972960900','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1987','miklós.carrey@hotmail.com','Barcelona','+2707989126','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1995','pál.tompa@hotmail.com','Barcelona','+9125994233','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1981','mateusz.obama@yahoo.com','Barcelona','+9411577869','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1972','sándor.carrey@yahoo.com','New York','+1890206578','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1989','dániel.tompa@hotmail.com','Budapest','+4832372682','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1978','tim.tompa@hotmail.com','Miskolc','+7247047687','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1993','tim.obama@hotmail.com','Budapest','+9730512201','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1966','john.hamilton@gmail.com','Barcelona','+5678112298','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1966','dániel.carrey@hotmail.com','Budapest','+5039108692','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1967','giancarlo.hamilton@hotmail.com','Krakow','+2765867262','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1973','sándor.hamilton@gmail.com','Barcelona','+3145924785','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1980','tamás.ciacka@gmail.com','Budapest','+6237095875','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1970','andy.hamilton@gmail.com','Barcelona','+2473014611','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1973','andy.carrey@yahoo.com','Krakow','+1968326124','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1966','tamás.monoczki@yahoo.com','Krakow','+902986422','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1995','tamás.obama@hotmail.com','Barcelona','+8465823780','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1993','prezmek.szodoray@hotmail.com','Budapest','+8991551277','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1990','pál.monoczki@yahoo.com','Miskolc','+5799604109','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1974','matthew.ciacka@yahoo.com','Krakow','+6980502899','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1981','attila.obama@yahoo.com','Barcelona','+553286915','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1965','tamás.hamilton@gmail.com','Krakow','+3131853389','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1994','giancarlo.salamon@hotmail.com','Miskolc','+2866353142','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1967','tim.hamilton@hotmail.com','Miskolc','+1589762112','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1984','matthew.salamon@hotmail.com','Barcelona','+9373415735','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1979','matthew.ciacka@yahoo.com','Barcelona','+2580405773','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1983','giancarlo.hamilton@yahoo.com','Krakow','+7985368807','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1972','prezmek.monoczki@yahoo.com','Barcelona','+2380952919','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1966','tim.obama@hotmail.com','Krakow','+3152015929','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1985','attila.fisichella@gmail.com','New York','+4140993785','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1985','john.ciacka@hotmail.com','Krakow','+1473004680','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1968','tim.beöthy@gmail.com','New York','+7453964104','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1970','matthew.obama@gmail.com','Budapest','+9943186817','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1984','sándor.tompa@hotmail.com','New York','+381393645','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1971','tamás.tompa@yahoo.com','Miskolc','+9866293177','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1979','miklós.molnár@yahoo.com','New York','+4787093842','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1967','john.ciacka@yahoo.com','Barcelona','+8864256231','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1978','john.beöthy@hotmail.com','Krakow','+7070038261','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1986','giancarlo.tompa@gmail.com','Krakow','+4312103161','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1965','matthew.molnár@gmail.com','Budapest','+7415042985','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1979','tamás.ostafil@hotmail.com','New York','+8120359546','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1975','tim.monoczki@hotmail.com','New York','+2964803475','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1978','attila.ciacka@gmail.com','Budapest','+5326551960','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1994','miklós.beöthy@yahoo.com','Budapest','+7665403145','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1989','matthew.monoczki@hotmail.com','Budapest','+2137226851','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1971','sándor.fisichella@gmail.com','Budapest','+3156651914','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1971','miklós.beöthy@yahoo.com','Miskolc','+8502196262','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1969','andy.hamilton@yahoo.com','Barcelona','+2779382174','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1992','andy.molnár@gmail.com','Krakow','+592622398','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1988','attila.lebron@hotmail.com','Miskolc','+8171685441','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1995','tamás.carrey@gmail.com','New York','+7389709101','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1975','matthew.monoczki@gmail.com','Barcelona','+3098817793','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1977','sándor.salamon@yahoo.com','Krakow','+2406159873','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1988','pál.szodoray@gmail.com','Budapest','+28088800','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1991','matthew.beöthy@gmail.com','New York','+7921082416','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1990','miklós.fisichella@yahoo.com','New York','+1738899956','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1965','dániel.hamilton@hotmail.com','Barcelona','+4320702879','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1968','mateusz.szodoray@yahoo.com','New York','+7842010866','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1968','giancarlo.monoczki@gmail.com','Barcelona','+9272553382','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1976','attila.molnár@gmail.com','Krakow','+7949574640','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1968','tamás.fisichella@hotmail.com','Krakow','+8534771560','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1980','john.beöthy@hotmail.com','Krakow','+9201941902','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1977','miklós.obama@gmail.com','Budapest','+3004808868','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1988','tim.lebron@gmail.com','Budapest','+1896630235','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1978','dániel.lebron@gmail.com','New York','+1390148914','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1969','tamás.carrey@gmail.com','Krakow','+1133791420','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1974','andy.molnár@yahoo.com','New York','+7084919871','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1989','attila.salamon@hotmail.com','New York','+481000398','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1969','giancarlo.fisichella@gmail.com','Miskolc','+7422253670','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1979','andy.tompa@yahoo.com','Miskolc','+9518510768','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1966','andy.fisichella@hotmail.com','Krakow','+283640818','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1990','miklós.fisichella@gmail.com','New York','+7813442873','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1992','matthew.szodoray@hotmail.com','Barcelona','+6492628514','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1993','dániel.molnár@gmail.com','Miskolc','+8557268412','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1965','mateusz.ostafil@hotmail.com','New York','+3744662089','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1972','matthew.szodoray@gmail.com','Miskolc','+2330142668','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1992','sándor.tompa@gmail.com','Barcelona','+9123124858','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1982','prezmek.monoczki@yahoo.com','Barcelona','+6137210792','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1982','giancarlo.ciacka@gmail.com','Miskolc','+6134337585','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1985','attila.hamilton@yahoo.com','Miskolc','+7565396826','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1995','prezmek.tompa@gmail.com','New York','+7239977493','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1968','tamás.lebron@yahoo.com','New York','+5067895304','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1994','prezmek.salamon@gmail.com','Miskolc','+1628464665','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1995','attila.carrey@hotmail.com','Miskolc','+424510855','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1991','tim.hamilton@hotmail.com','New York','+7078454332','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1968','tamás.molnár@gmail.com','Budapest','+6827932723','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1984','mateusz.monoczki@gmail.com','Miskolc','+8582771563','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1989','john.tompa@hotmail.com','Barcelona','+8970748991','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1985','attila.obama@gmail.com','New York','+6204601945','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1987','tim.tompa@gmail.com','Krakow','+6651778843','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1979','mateusz.beöthy@yahoo.com','Budapest','+8269336437','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1981','pál.tompa@gmail.com','Miskolc','+1641581492','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1973','giancarlo.lebron@gmail.com','Miskolc','+9165434688','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1995','john.carrey@hotmail.com','Budapest','+1404352364','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1987','miklós.carrey@gmail.com','New York','+3828898062','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1985','attila.carrey@yahoo.com','New York','+620106716','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1982','mateusz.obama@hotmail.com','Barcelona','+9086400364','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1980','prezmek.monoczki@gmail.com','Miskolc','+5089701238','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1965','attila.hamilton@gmail.com','Krakow','+3038810591','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1968','tim.ostafil@hotmail.com','Budapest','+979766729','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1993','tim.hamilton@yahoo.com','Barcelona','+9000747909','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1989','giancarlo.ciacka@hotmail.com','New York','+4840662820','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1977','john.monoczki@hotmail.com','Barcelona','+4542186270','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1982','attila.salamon@yahoo.com','New York','+7465596878','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1988','matthew.szodoray@yahoo.com','Budapest','+3218274530','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1981','attila.ostafil@hotmail.com','New York','+3467617588','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1965','sándor.molnár@yahoo.com','Budapest','+8910378307','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1992','pál.tompa@yahoo.com','Barcelona','+5788981458','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1986','miklós.molnár@gmail.com','Budapest','+9201770503','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1983','mateusz.lebron@yahoo.com','New York','+371360322','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1968','sándor.hamilton@yahoo.com','New York','+2059872442','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1967','andy.fisichella@gmail.com','Budapest','+9883328451','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1987','sándor.monoczki@hotmail.com','Miskolc','+55666641','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1987','attila.lebron@yahoo.com','Krakow','+6264911186','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1973','mateusz.hamilton@yahoo.com','New York','+2303087109','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1977','prezmek.beöthy@hotmail.com','Krakow','+359542260','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1976','matthew.obama@hotmail.com','Miskolc','+4671762101','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1974','tamás.lebron@gmail.com','Budapest','+4666191040','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1990','john.fisichella@yahoo.com','Budapest','+1579731387','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1988','andy.beöthy@gmail.com','Krakow','+8065890393','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1967','giancarlo.carrey@gmail.com','Barcelona','+9658779310','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1995','tim.salamon@gmail.com','Barcelona','+3469272858','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1983','john.hamilton@yahoo.com','Miskolc','+6147664297','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1968','giancarlo.hamilton@gmail.com','New York','+1555055962','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1995','miklós.lebron@hotmail.com','Barcelona','+3757273990','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1976','dániel.molnár@gmail.com','New York','+8355754550','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1978','miklós.hamilton@gmail.com','Barcelona','+5575530771','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1977','miklós.beöthy@yahoo.com','New York','+242302912','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1984','miklós.fisichella@yahoo.com','Miskolc','+1159803703','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1966','sándor.molnár@hotmail.com','Barcelona','+2785090786','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1968','attila.fisichella@hotmail.com','New York','+3142217726','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1980','tamás.hamilton@yahoo.com','Budapest','+3078631230','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1978','john.monoczki@yahoo.com','Barcelona','+2388776216','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1987','john.salamon@gmail.com','Miskolc','+5330630507','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1994','tamás.ostafil@hotmail.com','New York','+523193654','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1965','giancarlo.beöthy@hotmail.com','Barcelona','+1536514975','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1978','matthew.tompa@hotmail.com','Krakow','+7843059151','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1965','pál.monoczki@gmail.com','New York','+7708192415','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1981','tim.monoczki@gmail.com','Miskolc','+2289469795','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1985','pál.carrey@yahoo.com','Barcelona','+4542525366','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1969','attila.fisichella@hotmail.com','New York','+5823591117','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1988','prezmek.lebron@gmail.com','Krakow','+2340133378','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1984','john.obama@gmail.com','Barcelona','+4734157259','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1971','dániel.fisichella@hotmail.com','Barcelona','+9916524900','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1988','matthew.monoczki@yahoo.com','Barcelona','+1335729269','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1987','andy.obama@hotmail.com','Miskolc','+2536310001','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1986','tamás.molnár@gmail.com','Krakow','+2917797390','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1966','dániel.lebron@gmail.com','Budapest','+3005915651','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1983','mateusz.ciacka@yahoo.com','Barcelona','+1875559452','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1977','tim.monoczki@hotmail.com','Budapest','+2663238728','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1972','miklós.hamilton@hotmail.com','New York','+5078927057','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1984','mateusz.ostafil@hotmail.com','Barcelona','+2912022052','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1969','tim.szodoray@gmail.com','Miskolc','+7535501518','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1966','prezmek.szodoray@hotmail.com','Budapest','+8669560028','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1986','tim.molnár@gmail.com','New York','+9918946345','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1980','prezmek.hamilton@gmail.com','Miskolc','+9215174654','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1991','mateusz.lebron@hotmail.com','Miskolc','+1255905350','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1987','attila.molnár@yahoo.com','Krakow','+6143546747','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1981','mateusz.hamilton@hotmail.com','Miskolc','+5551935901','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1968','dániel.tompa@gmail.com','Miskolc','+1722372198','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1982','miklós.monoczki@yahoo.com','Krakow','+3289015197','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1989','matthew.hamilton@yahoo.com','New York','+1559544136','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1983','attila.beöthy@yahoo.com','New York','+9077341831','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1981','tim.fisichella@yahoo.com','Krakow','+7438697267','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1984','tim.tompa@yahoo.com','Miskolc','+4675287770','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1991','tim.molnár@hotmail.com','New York','+1744087827','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1979','dániel.obama@gmail.com','Barcelona','+6196216552','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1975','pál.ciacka@hotmail.com','Budapest','+9990375886','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1995','dániel.szodoray@yahoo.com','Krakow','+2591416233','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1983','tamás.lebron@hotmail.com','Krakow','+4992725436','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1993','andy.hamilton@hotmail.com','Krakow','+6564636558','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1987','john.ciacka@yahoo.com','New York','+1521653476','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1991','andy.lebron@hotmail.com','Krakow','+8050233006','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1984','tim.beöthy@gmail.com','Budapest','+8665673044','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1965','mateusz.tompa@gmail.com','Miskolc','+5901437422','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1994','john.molnár@yahoo.com','Budapest','+6736016380','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1986','dániel.obama@hotmail.com','Miskolc','+6401198753','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1966','matthew.carrey@yahoo.com','Barcelona','+4590896056','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1965','attila.molnár@yahoo.com','Budapest','+9971314483','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1988','attila.fisichella@gmail.com','Krakow','+2940255835','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1995','attila.hamilton@yahoo.com','New York','+2441932415','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1972','pál.obama@gmail.com','Barcelona','+8795658521','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1982','dániel.lebron@yahoo.com','Miskolc','+1385777734','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1972','andy.monoczki@hotmail.com','New York','+6943511204','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1983','sándor.ciacka@gmail.com','Miskolc','+319223426','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1971','andy.tompa@hotmail.com','Budapest','+4590891577','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1992','andy.ostafil@gmail.com','New York','+3502197462','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1970','mateusz.obama@gmail.com','Krakow','+3698051257','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1986','pál.beöthy@hotmail.com','Barcelona','+193200104','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1994','miklós.tompa@hotmail.com','Miskolc','+2850458125','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1992','andy.hamilton@hotmail.com','Miskolc','+6661598643','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1974','mateusz.monoczki@gmail.com','Barcelona','+4361516388','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1995','dániel.ciacka@hotmail.com','Budapest','+6541226480','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1994','pál.hamilton@hotmail.com','Barcelona','+1797677075','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1973','prezmek.salamon@gmail.com','Krakow','+7490216529','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1966','andy.monoczki@hotmail.com','Krakow','+5574559716','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1965','matthew.ostafil@gmail.com','Krakow','+9259220119','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1993','attila.tompa@hotmail.com','Budapest','+8667568083','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1974','pál.ostafil@yahoo.com','Krakow','+5706424429','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1968','attila.hamilton@yahoo.com','Miskolc','+830125634','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1985','pál.fisichella@gmail.com','Barcelona','+1005822789','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1990','pál.tompa@hotmail.com','Krakow','+7717366296','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1987','giancarlo.molnár@yahoo.com','Barcelona','+1356451468','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1988','miklós.molnár@yahoo.com','Barcelona','+1486222465','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1970','tim.fisichella@hotmail.com','New York','+8638379865','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1984','giancarlo.fisichella@gmail.com','Krakow','+2160785626','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1974','miklós.carrey@gmail.com','Budapest','+9111270427','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1991','attila.ostafil@gmail.com','Barcelona','+7110153678','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1995','mateusz.obama@hotmail.com','New York','+272363861','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1982','miklós.monoczki@gmail.com','Krakow','+4990277844','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1966','mateusz.beöthy@hotmail.com','Krakow','+1714018185','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1986','pál.fisichella@yahoo.com','New York','+8817531536','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1978','tamás.carrey@yahoo.com','Krakow','+3921200288','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1991','sándor.molnár@yahoo.com','Barcelona','+8521350274','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1974','mateusz.carrey@gmail.com','Barcelona','+8473562574','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1974','tim.monoczki@gmail.com','Budapest','+6108273110','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1988','andy.szodoray@yahoo.com','New York','+166592402','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1987','tim.monoczki@gmail.com','New York','+5708504810','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1970','dániel.salamon@gmail.com','Krakow','+6872711140','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1976','tim.ostafil@gmail.com','Krakow','+8776733531','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1967','andy.obama@gmail.com','Krakow','+3594559814','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1969','tim.ciacka@gmail.com','Budapest','+5399945590','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1980','matthew.szodoray@gmail.com','Budapest','+5678113643','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1994','matthew.ostafil@yahoo.com','New York','+3264960321','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1973','sándor.carrey@yahoo.com','Krakow','+3354653467','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1991','sándor.beöthy@yahoo.com','Krakow','+6326734823','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1994','giancarlo.fisichella@yahoo.com','Miskolc','+9510990586','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1969','attila.tompa@gmail.com','Budapest','+8055903759','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1978','tamás.szodoray@gmail.com','Budapest','+9644920373','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1995','giancarlo.carrey@yahoo.com','Barcelona','+4734311532','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1974','matthew.molnár@yahoo.com','Budapest','+9733495136','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1995','dániel.molnár@yahoo.com','Barcelona','+4737103898','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1972','sándor.hamilton@hotmail.com','Krakow','+5966802914','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1988','andy.szodoray@gmail.com','Krakow','+8308026478','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1966','andy.ciacka@hotmail.com','Krakow','+337581580','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1973','matthew.molnár@yahoo.com','Miskolc','+1351858857','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1992','matthew.ciacka@gmail.com','Budapest','+7786590546','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1990','tim.carrey@yahoo.com','Budapest','+3415790775','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1992','attila.molnár@hotmail.com','Miskolc','+8263192335','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1987','attila.szodoray@hotmail.com','Budapest','+8998136552','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1969','mateusz.salamon@yahoo.com','Barcelona','+9093395697','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1965','sándor.fisichella@gmail.com','Miskolc','+3875175213','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1991','miklós.obama@yahoo.com','New York','+6477107092','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1981','andy.hamilton@gmail.com','New York','+5348260524','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1976','dániel.salamon@yahoo.com','Budapest','+875863420','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1977','sándor.monoczki@gmail.com','Miskolc','+4606501297','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1985','tamás.molnár@gmail.com','New York','+2751756710','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1995','tim.szodoray@hotmail.com','Budapest','+7649436247','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1977','john.lebron@gmail.com','Budapest','+2329857485','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1991','tim.obama@yahoo.com','Krakow','+5186610674','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1974','miklós.tompa@yahoo.com','Miskolc','+2135636917','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1985','prezmek.fisichella@yahoo.com','Barcelona','+9631999155','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1967','tim.molnár@gmail.com','Miskolc','+2620522961','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1987','tim.salamon@hotmail.com','Barcelona','+2564784568','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1984','mateusz.szodoray@hotmail.com','Barcelona','+7990791690','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1965','miklós.fisichella@hotmail.com','Miskolc','+4297305060','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1982','prezmek.beöthy@yahoo.com','Budapest','+9410159613','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1989','mateusz.ciacka@gmail.com','Miskolc','+8345725320','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1982','matthew.salamon@gmail.com','Miskolc','+4450960686','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1985','prezmek.obama@yahoo.com','Budapest','+2896361862','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1984','dániel.salamon@yahoo.com','Budapest','+7646168524','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1981','tamás.lebron@gmail.com','New York','+4106357456','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1973','john.molnár@gmail.com','Budapest','+4522442956','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1979','andy.ostafil@gmail.com','Krakow','+7748601108','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1988','dániel.fisichella@gmail.com','Krakow','+6751546061','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1995','john.obama@gmail.com','Miskolc','+5917073430','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1977','tamás.carrey@gmail.com','New York','+7069830596','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1988','tamás.molnár@hotmail.com','New York','+5055025559','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1966','john.monoczki@hotmail.com','New York','+4984025812','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1970','sándor.salamon@hotmail.com','Budapest','+8179957070','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1978','prezmek.ostafil@hotmail.com','Budapest','+9071884119','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1981','pál.ostafil@hotmail.com','Krakow','+3439600682','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1985','andy.carrey@gmail.com','New York','+8446258910','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1986','tim.molnár@yahoo.com','Budapest','+4108626522','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1982','miklós.monoczki@yahoo.com','New York','+5648427165','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1992','miklós.obama@gmail.com','Barcelona','+3091692611','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1990','miklós.molnár@yahoo.com','Miskolc','+6658209765','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1983','sándor.beöthy@hotmail.com','Barcelona','+1832145463','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1987','dániel.salamon@yahoo.com','Miskolc','+6399560323','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1965','giancarlo.carrey@gmail.com','Budapest','+5158803497','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1965','matthew.obama@hotmail.com','Budapest','+9475018144','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1973','john.salamon@hotmail.com','Barcelona','+9274746064','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1979','sándor.fisichella@hotmail.com','Budapest','+4786982146','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1973','john.fisichella@yahoo.com','Budapest','+4651099362','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1975','tim.ciacka@hotmail.com','Barcelona','+5003510186','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1992','mateusz.obama@gmail.com','Miskolc','+5996430106','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1978','miklós.obama@yahoo.com','Miskolc','+9911929668','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1968','andy.ciacka@yahoo.com','Krakow','+781499467','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1981','tim.tompa@yahoo.com','Miskolc','+1050744020','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1984','giancarlo.ciacka@hotmail.com','Barcelona','+3201295654','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1971','mateusz.carrey@gmail.com','Barcelona','+9749809240','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1995','sándor.ostafil@yahoo.com','Budapest','+774782825','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1969','dániel.carrey@gmail.com','Miskolc','+7975096216','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1982','prezmek.ostafil@gmail.com','Krakow','+6311063782','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1989','attila.lebron@yahoo.com','Barcelona','+8979954145','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1966','attila.lebron@hotmail.com','Barcelona','+1538683597','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1989','giancarlo.fisichella@hotmail.com','Barcelona','+4902324329','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1980','andy.szodoray@hotmail.com','Miskolc','+6828565472','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1978','attila.ostafil@gmail.com','Budapest','+3589059490','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1987','miklós.beöthy@yahoo.com','Krakow','+4272822894','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1972','tamás.monoczki@gmail.com','Budapest','+4960396444','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1990','matthew.obama@yahoo.com','New York','+8639182844','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1994','sándor.szodoray@hotmail.com','Budapest','+1434860785','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1992','sándor.ostafil@gmail.com','Barcelona','+7745766295','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1975','attila.lebron@gmail.com','Budapest','+3280370428','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1979','sándor.hamilton@hotmail.com','Miskolc','+9053776359','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1983','giancarlo.fisichella@gmail.com','Barcelona','+3885331793','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1971','john.beöthy@hotmail.com','Budapest','+3841443908','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1968','pál.ciacka@gmail.com','Barcelona','+2961801595','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1989','tim.ciacka@hotmail.com','New York','+6348454479','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1970','matthew.ciacka@yahoo.com','New York','+7332916206','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1967','tim.monoczki@yahoo.com','Krakow','+1420271078','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1968','prezmek.carrey@gmail.com','Miskolc','+5448479026','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1965','giancarlo.hamilton@gmail.com','Krakow','+5400254765','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1995','mateusz.tompa@yahoo.com','Budapest','+6929895444','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1977','john.beöthy@gmail.com','Miskolc','+5662666230','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1993','pál.obama@hotmail.com','Miskolc','+9385398721','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1978','dániel.ostafil@yahoo.com','Krakow','+1405751575','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1985','miklós.obama@hotmail.com','New York','+7977932412','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1994','tamás.beöthy@hotmail.com','Miskolc','+1012960669','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1988','tim.fisichella@yahoo.com','Budapest','+9584628456','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1967','andy.ciacka@yahoo.com','Budapest','+3119263894','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1969','sándor.tompa@yahoo.com','New York','+3229403009','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1983','giancarlo.hamilton@hotmail.com','Budapest','+5138256055','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1971','tim.ostafil@yahoo.com','New York','+5256653951','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1974','giancarlo.monoczki@hotmail.com','Miskolc','+8746198954','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1982','attila.ostafil@hotmail.com','Budapest','+85141622','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1976','miklós.hamilton@gmail.com','Krakow','+9840441234','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1986','giancarlo.monoczki@gmail.com','Miskolc','+5490790245','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1989','mateusz.salamon@yahoo.com','New York','+4467270688','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1991','tim.hamilton@gmail.com','Budapest','+5313896362','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1990','tim.beöthy@gmail.com','Barcelona','+8853680819','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1995','john.lebron@hotmail.com','Barcelona','+7475296101','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1984','andy.hamilton@gmail.com','Budapest','+1914847546','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1982','mateusz.molnár@yahoo.com','Budapest','+3550289099','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1970','john.obama@yahoo.com','New York','+1011341433','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1984','andy.lebron@gmail.com','Miskolc','+8060497561','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1983','prezmek.fisichella@hotmail.com','Barcelona','+6721355222','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1967','matthew.szodoray@hotmail.com','New York','+5478073583','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1978','tamás.obama@gmail.com','Miskolc','+5182414968','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1987','miklós.tompa@gmail.com','Krakow','+3532048298','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1987','matthew.obama@gmail.com','Budapest','+8037048032','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1981','sándor.obama@gmail.com','Barcelona','+4689970708','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1976','pál.hamilton@hotmail.com','Budapest','+1360342341','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1992','andy.molnár@hotmail.com','Budapest','+1560826764','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1975','john.monoczki@gmail.com','Barcelona','+2889897354','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1968','dániel.fisichella@gmail.com','Miskolc','+8042904796','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1981','john.salamon@gmail.com','Budapest','+2242086514','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1971','pál.ostafil@yahoo.com','Krakow','+7257515605','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1971','dániel.monoczki@gmail.com','Barcelona','+4642169729','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1978','mateusz.beöthy@gmail.com','Barcelona','+9617154512','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1994','pál.beöthy@gmail.com','Krakow','+7767107730','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1968','attila.carrey@yahoo.com','Barcelona','+259780087','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1992','pál.monoczki@gmail.com','Budapest','+9898425796','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1978','pál.ostafil@hotmail.com','Budapest','+7321597832','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1977','giancarlo.salamon@yahoo.com','Miskolc','+8229554366','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1984','andy.monoczki@hotmail.com','Miskolc','+5338726190','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1972','tim.ostafil@gmail.com','Miskolc','+4209380597','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1989','miklós.obama@gmail.com','Krakow','+678333172','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1981','miklós.molnár@gmail.com','Barcelona','+6804511314','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1972','mateusz.salamon@yahoo.com','Barcelona','+5761173554','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1966','andy.molnár@yahoo.com','New York','+9514028614','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1970','sándor.tompa@yahoo.com','Budapest','+6374802591','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1965','matthew.lebron@yahoo.com','Krakow','+1026586277','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1973','prezmek.lebron@gmail.com','Budapest','+55602723','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1989','dániel.carrey@yahoo.com','New York','+8163124949','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1970','sándor.tompa@yahoo.com','Barcelona','+6192279479','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1976','john.ostafil@gmail.com','Barcelona','+7922825229','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1976','miklós.monoczki@hotmail.com','Krakow','+7657929009','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1990','dániel.ciacka@gmail.com','Miskolc','+8619244550','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1966','tim.fisichella@gmail.com','Miskolc','+5987718709','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1987','miklós.carrey@yahoo.com','Miskolc','+4903682824','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1994','dániel.monoczki@yahoo.com','New York','+5679106071','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1993','tim.ciacka@gmail.com','Miskolc','+4927424806','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1966','john.monoczki@yahoo.com','Miskolc','+8157282714','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1987','tamás.monoczki@gmail.com','Budapest','+7058674331','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1990','tim.fisichella@gmail.com','Budapest','+3443791785','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1975','tamás.ostafil@gmail.com','New York','+4690367567','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1995','andy.tompa@hotmail.com','Krakow','+9493724000','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1982','miklós.hamilton@hotmail.com','Barcelona','+8257519830','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1973','tamás.szodoray@yahoo.com','New York','+5347707947','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1979','john.lebron@yahoo.com','Krakow','+4220383803','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1968','attila.monoczki@hotmail.com','Miskolc','+3631126860','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1989','matthew.szodoray@yahoo.com','Krakow','+2829423005','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1969','attila.molnár@hotmail.com','Barcelona','+3290147760','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1979','matthew.tompa@gmail.com','New York','+8419579333','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1972','giancarlo.ciacka@yahoo.com','Krakow','+6784354844','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1978','giancarlo.ciacka@gmail.com','Barcelona','+7424685023','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1994','tamás.obama@hotmail.com','New York','+1996193004','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1968','miklós.beöthy@hotmail.com','New York','+3358878129','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1974','tamás.ostafil@gmail.com','Barcelona','+7257633390','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1967','mateusz.ostafil@yahoo.com','Barcelona','+2493548642','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1982','miklós.fisichella@yahoo.com','Miskolc','+1725955841','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1978','john.lebron@gmail.com','Barcelona','+8024088757','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1967','mateusz.szodoray@yahoo.com','Budapest','+66456030','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1979','pál.fisichella@gmail.com','Miskolc','+1865895460','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1977','andy.beöthy@hotmail.com','New York','+5291212537','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1965','andy.beöthy@gmail.com','New York','+7910761849','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1976','dániel.molnár@yahoo.com','Budapest','+9449254780','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1980','miklós.molnár@hotmail.com','Barcelona','+315947078','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1979','miklós.fisichella@yahoo.com','New York','+9736762139','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1967','tamás.ciacka@gmail.com','Miskolc','+9686206793','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1989','pál.carrey@yahoo.com','New York','+9246711674','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1970','mateusz.lebron@gmail.com','Miskolc','+9626463259','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1974','mateusz.ciacka@yahoo.com','Barcelona','+8363918567','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1988','tim.ciacka@hotmail.com','Budapest','+1165094885','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1990','john.lebron@yahoo.com','Miskolc','+5107746361','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1988','tim.beöthy@hotmail.com','Krakow','+819952158','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1981','mateusz.ostafil@hotmail.com','Budapest','+7455550978','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1980','matthew.monoczki@hotmail.com','Miskolc','+6546928761','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1981','miklós.carrey@hotmail.com','Miskolc','+3775178514','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1991','mateusz.beöthy@yahoo.com','Barcelona','+7972226363','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1967','dániel.salamon@yahoo.com','Budapest','+5168737361','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1991','prezmek.fisichella@hotmail.com','Barcelona','+7449166636','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1977','sándor.beöthy@hotmail.com','Barcelona','+5650862183','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1992','tamás.salamon@gmail.com','Miskolc','+2372061215','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1981','andy.szodoray@gmail.com','Budapest','+9193209902','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1988','pál.ciacka@yahoo.com','Miskolc','+3414652900','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1992','tamás.monoczki@hotmail.com','New York','+7006372065','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1991','tim.ciacka@gmail.com','New York','+8022904053','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1987','dániel.szodoray@yahoo.com','Barcelona','+1394581689','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1981','giancarlo.beöthy@yahoo.com','Budapest','+741530759','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1994','mateusz.monoczki@yahoo.com','Barcelona','+5676556602','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1977','pál.obama@hotmail.com','Budapest','+5160758322','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1986','john.carrey@yahoo.com','New York','+4653369258','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1966','andy.fisichella@hotmail.com','Krakow','+1451198596','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1977','pál.fisichella@yahoo.com','Budapest','+7912243853','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1970','pál.lebron@gmail.com','Krakow','+4913467203','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1975','andy.molnár@gmail.com','Miskolc','+5623370504','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1994','tim.tompa@hotmail.com','Miskolc','+929682248','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1979','sándor.obama@gmail.com','Barcelona','+437646211','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1965','mateusz.hamilton@gmail.com','Krakow','+5765438497','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1995','andy.szodoray@gmail.com','Krakow','+6138576611','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1986','tim.salamon@yahoo.com','Krakow','+7907637482','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1981','sándor.szodoray@hotmail.com','Krakow','+1004107920','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1993','dániel.tompa@gmail.com','Krakow','+5604441309','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1990','tim.ostafil@hotmail.com','New York','+9829042081','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1990','miklós.hamilton@yahoo.com','Miskolc','+7990437950','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1982','sándor.ostafil@hotmail.com','Barcelona','+2043301668','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1986','prezmek.hamilton@hotmail.com','Barcelona','+3078509048','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1993','tim.hamilton@gmail.com','Krakow','+7551856590','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1971','andy.ostafil@hotmail.com','Miskolc','+3295177199','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1968','john.szodoray@gmail.com','Barcelona','+4038554778','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1989','miklós.tompa@gmail.com','Krakow','+9389231765','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1978','andy.molnár@hotmail.com','New York','+3410778847','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1972','tim.salamon@yahoo.com','New York','+9897633714','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1987','miklós.ostafil@hotmail.com','Miskolc','+1745173372','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1970','dániel.hamilton@gmail.com','Miskolc','+1790668849','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1967','andy.fisichella@yahoo.com','Barcelona','+1060089796','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1985','john.salamon@gmail.com','Budapest','+2346943178','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1992','dániel.ciacka@gmail.com','New York','+3968068496','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1983','john.molnár@yahoo.com','Miskolc','+2272534512','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1987','tim.carrey@hotmail.com','New York','+3003462036','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1971','matthew.tompa@yahoo.com','Barcelona','+3949712223','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1983','matthew.tompa@hotmail.com','Miskolc','+4091906499','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1983','tamás.salamon@yahoo.com','Krakow','+1883713816','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1979','prezmek.obama@hotmail.com','Krakow','+6892522760','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1973','attila.szodoray@yahoo.com','Miskolc','+2445807931','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1980','mateusz.szodoray@hotmail.com','Miskolc','+4433941791','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1973','matthew.obama@yahoo.com','Miskolc','+7699953893','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1988','andy.obama@hotmail.com','Barcelona','+410214793','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1978','giancarlo.molnár@hotmail.com','Barcelona','+5252839142','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1994','tim.ostafil@yahoo.com','Budapest','+8056857735','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1989','miklós.beöthy@gmail.com','Miskolc','+6282653725','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1969','mateusz.tompa@yahoo.com','New York','+494428909','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1975','attila.carrey@hotmail.com','Barcelona','+5435738032','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1976','prezmek.ostafil@gmail.com','New York','+3265808162','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1977','john.lebron@hotmail.com','Krakow','+6526965553','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1986','tamás.szodoray@hotmail.com','New York','+296728625','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1989','john.obama@yahoo.com','Barcelona','+4891631650','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1974','andy.obama@hotmail.com','Miskolc','+3246534871','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1982','miklós.ciacka@gmail.com','Budapest','+8099343288','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1978','andy.molnár@gmail.com','Budapest','+3944534008','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1979','prezmek.lebron@gmail.com','Barcelona','+4250436783','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1965','mateusz.monoczki@hotmail.com','Budapest','+5826493965','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1969','sándor.ciacka@gmail.com','Barcelona','+4379670891','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1972','sándor.carrey@yahoo.com','Miskolc','+3737625697','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1987','sándor.szodoray@yahoo.com','Barcelona','+4970000219','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1988','dániel.molnár@gmail.com','Barcelona','+1138722969','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1992','miklós.tompa@yahoo.com','Budapest','+7326555480','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1966','giancarlo.molnár@gmail.com','Barcelona','+3023212462','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1990','miklós.salamon@gmail.com','Krakow','+838856844','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1969','john.salamon@hotmail.com','Krakow','+5217819447','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1991','john.carrey@gmail.com','Budapest','+3952238175','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1982','miklós.obama@yahoo.com','New York','+3237938950','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1977','tim.tompa@hotmail.com','Miskolc','+742776224','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1972','tim.ostafil@gmail.com','Krakow','+8790146781','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1970','matthew.lebron@gmail.com','Budapest','+2197056124','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1970','attila.hamilton@hotmail.com','Barcelona','+9498307937','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1990','miklós.ciacka@gmail.com','Barcelona','+7800250185','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1987','mateusz.carrey@gmail.com','Budapest','+9682747979','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1984','matthew.salamon@yahoo.com','Barcelona','+1191640646','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1983','tamás.ostafil@yahoo.com','Budapest','+1773341453','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1984','prezmek.obama@gmail.com','Barcelona','+236482931','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1994','john.salamon@yahoo.com','Miskolc','+722690238','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1994','dániel.hamilton@hotmail.com','Krakow','+4948632867','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1965','prezmek.molnár@yahoo.com','Budapest','+7238863686','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1994','miklós.salamon@yahoo.com','Krakow','+4005404046','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1992','andy.molnár@hotmail.com','Miskolc','+1307866525','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1975','matthew.ciacka@yahoo.com','Budapest','+7889451600','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1978','sándor.tompa@yahoo.com','New York','+4402612949','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1990','andy.carrey@yahoo.com','Budapest','+8431583978','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1973','mateusz.hamilton@gmail.com','Miskolc','+3376199021','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1984','tim.ostafil@yahoo.com','Krakow','+5303132876','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1989','matthew.beöthy@gmail.com','Miskolc','+5476608062','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1979','giancarlo.tompa@hotmail.com','Krakow','+5411086332','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1978','tim.ostafil@gmail.com','Budapest','+8997693932','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1992','dániel.salamon@gmail.com','Budapest','+4645552551','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1988','andy.salamon@hotmail.com','Krakow','+4846814060','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1968','andy.lebron@yahoo.com','Barcelona','+4383146046','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1975','mateusz.lebron@gmail.com','New York','+2746999963','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1987','john.szodoray@hotmail.com','New York','+474289097','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1986','matthew.ciacka@gmail.com','Miskolc','+2823329808','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1966','miklós.obama@yahoo.com','New York','+5156838766','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1987','pál.tompa@yahoo.com','Budapest','+1424564799','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1994','mateusz.obama@gmail.com','Budapest','+5514237486','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1993','sándor.szodoray@hotmail.com','Barcelona','+5503463866','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1994','prezmek.salamon@gmail.com','Barcelona','+8482510137','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1965','tim.molnár@hotmail.com','Miskolc','+5339067222','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1967','matthew.monoczki@hotmail.com','Krakow','+6786630163','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1988','mateusz.monoczki@yahoo.com','New York','+2479801362','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1968','andy.hamilton@gmail.com','New York','+2977968477','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1974','dániel.ostafil@gmail.com','Budapest','+2011739453','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1985','sándor.hamilton@gmail.com','Miskolc','+6645159260','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1971','giancarlo.monoczki@gmail.com','Krakow','+6708325381','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1968','miklós.ostafil@yahoo.com','Barcelona','+1879365916','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1967','matthew.hamilton@hotmail.com','Krakow','+3045687263','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1981','john.tompa@gmail.com','Barcelona','+8260527171','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1991','dániel.obama@gmail.com','Budapest','+2784208970','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1987','prezmek.obama@yahoo.com','Barcelona','+7931764525','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1971','sándor.obama@hotmail.com','Krakow','+5331681795','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1969','tamás.salamon@gmail.com','Miskolc','+4743338287','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1985','giancarlo.beöthy@gmail.com','New York','+6751535030','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1988','matthew.obama@gmail.com','Krakow','+5789977213','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1995','mateusz.fisichella@hotmail.com','New York','+8291339770','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1992','pál.monoczki@yahoo.com','Barcelona','+5523735509','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1978','mateusz.tompa@yahoo.com','Barcelona','+8202685504','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1989','tamás.beöthy@gmail.com','Krakow','+1283268991','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1971','tim.fisichella@yahoo.com','Budapest','+9591576980','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1982','tim.szodoray@gmail.com','Miskolc','+9241117360','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1984','miklós.monoczki@gmail.com','Barcelona','+7006278601','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1977','sándor.ostafil@yahoo.com','New York','+1672082867','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1992','andy.molnár@hotmail.com','Miskolc','+5643473156','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1995','tim.beöthy@hotmail.com','Budapest','+772744637','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1965','miklós.ciacka@yahoo.com','Krakow','+1463987847','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1979','pál.fisichella@gmail.com','Budapest','+3008189385','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1974','attila.monoczki@hotmail.com','Miskolc','+2488751201','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1980','dániel.beöthy@yahoo.com','Miskolc','+189354063','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1986','tamás.tompa@yahoo.com','Miskolc','+3756997746','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1967','miklós.szodoray@yahoo.com','Miskolc','+6491969544','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1965','tamás.hamilton@yahoo.com','Miskolc','+1355582636','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1975','prezmek.obama@yahoo.com','Barcelona','+9008315183','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1995','mateusz.salamon@gmail.com','Barcelona','+5163175453','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1967','miklós.beöthy@yahoo.com','Barcelona','+1907915198','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1978','tamás.lebron@yahoo.com','Budapest','+597527892','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1973','andy.ciacka@hotmail.com','New York','+690396782','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1989','mateusz.monoczki@hotmail.com','Barcelona','+421585479','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1991','tamás.monoczki@yahoo.com','Budapest','+2987837406','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1988','miklós.szodoray@hotmail.com','New York','+6582368563','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1965','tim.tompa@yahoo.com','Barcelona','+5096939718','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1975','pál.hamilton@hotmail.com','Miskolc','+5389763574','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1969','tim.ostafil@yahoo.com','Krakow','+6073453598','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1974','tamás.molnár@yahoo.com','Budapest','+8203416902','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1979','tamás.fisichella@hotmail.com','Miskolc','+2265270618','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1982','john.ostafil@yahoo.com','Miskolc','+3354089603','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1975','giancarlo.fisichella@hotmail.com','New York','+8422170719','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1981','attila.lebron@hotmail.com','Budapest','+9331998218','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1973','john.ciacka@gmail.com','Krakow','+5946609865','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1981','tim.ostafil@hotmail.com','Budapest','+7214992549','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1972','pál.fisichella@gmail.com','Krakow','+2590781485','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1975','attila.monoczki@yahoo.com','Barcelona','+5681909595','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1965','prezmek.szodoray@hotmail.com','New York','+1050356410','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1990','mateusz.lebron@hotmail.com','Krakow','+8004399327','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1985','sándor.salamon@gmail.com','New York','+7905741709','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1976','attila.monoczki@gmail.com','New York','+7700196264','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1972','sándor.hamilton@gmail.com','Budapest','+8734517120','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1994','mateusz.fisichella@gmail.com','Krakow','+3338742649','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1971','dániel.tompa@hotmail.com','Krakow','+1020943462','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1976','andy.monoczki@gmail.com','New York','+7757693652','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1979','tamás.lebron@yahoo.com','New York','+5534820073','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1976','matthew.salamon@gmail.com','Miskolc','+1880478755','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1984','miklós.fisichella@gmail.com','Budapest','+4310351683','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1974','tim.szodoray@hotmail.com','Budapest','+4405930260','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1993','attila.ostafil@hotmail.com','Krakow','+8252588731','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1968','miklós.lebron@hotmail.com','Miskolc','+9424303050','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1994','attila.carrey@hotmail.com','Miskolc','+3795276359','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1988','attila.beöthy@gmail.com','Barcelona','+6958617352','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1976','miklós.szodoray@hotmail.com','New York','+1799389668','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1983','giancarlo.fisichella@gmail.com','Budapest','+1686317559','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1977','prezmek.carrey@gmail.com','Miskolc','+2328464204','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1965','andy.ostafil@yahoo.com','New York','+6611514907','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1976','tim.beöthy@yahoo.com','Krakow','+9687308909','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1975','andy.ostafil@gmail.com','Krakow','+4048261140','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1969','matthew.fisichella@gmail.com','Miskolc','+7529456067','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1968','dániel.salamon@gmail.com','New York','+8359962234','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1995','john.monoczki@gmail.com','Krakow','+9538286030','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1983','mateusz.carrey@yahoo.com','Barcelona','+5053635301','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1971','mateusz.monoczki@yahoo.com','Miskolc','+3875889620','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1973','tim.salamon@yahoo.com','Miskolc','+3949351202','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1977','giancarlo.molnár@gmail.com','Krakow','+9759933370','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1976','andy.fisichella@gmail.com','New York','+8117538103','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1971','andy.ostafil@hotmail.com','Krakow','+1865763197','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1983','sándor.lebron@yahoo.com','Budapest','+1682463627','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1977','prezmek.ostafil@yahoo.com','Miskolc','+1806717238','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1990','giancarlo.obama@hotmail.com','Barcelona','+6506937525','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1987','miklós.szodoray@hotmail.com','Barcelona','+406712413','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1965','pál.szodoray@yahoo.com','New York','+7184962296','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1965','tamás.salamon@yahoo.com','New York','+9661903123','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1969','attila.szodoray@hotmail.com','Barcelona','+2539890571','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1993','andy.obama@hotmail.com','New York','+2597916343','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1977','tim.ostafil@gmail.com','Budapest','+8037249203','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1990','sándor.monoczki@yahoo.com','Krakow','+7563313792','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1988','giancarlo.szodoray@gmail.com','Krakow','+8344776836','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1994','mateusz.monoczki@gmail.com','Barcelona','+1990949850','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1973','andy.hamilton@gmail.com','Budapest','+7324748486','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1972','prezmek.beöthy@hotmail.com','Miskolc','+8280668420','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1970','attila.tompa@gmail.com','New York','+8863753488','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1992','prezmek.ostafil@hotmail.com','New York','+7361725767','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1983','tamás.hamilton@gmail.com','Krakow','+7638910342','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1969','giancarlo.szodoray@hotmail.com','Miskolc','+4812467084','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1981','prezmek.obama@hotmail.com','Miskolc','+4087241153','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1980','dániel.szodoray@gmail.com','Miskolc','+2124009416','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1975','giancarlo.hamilton@gmail.com','New York','+7133221007','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1980','attila.obama@gmail.com','Miskolc','+6595301492','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1970','attila.szodoray@yahoo.com','Barcelona','+8607217248','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1984','andy.lebron@gmail.com','Barcelona','+688341874','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1967','attila.hamilton@gmail.com','Krakow','+6337512120','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1965','tim.molnár@gmail.com','Barcelona','+1822621334','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1982','tamás.lebron@yahoo.com','Budapest','+6438591993','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1976','pál.tompa@yahoo.com','Krakow','+4811961746','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1986','tim.szodoray@gmail.com','Budapest','+3104991597','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1991','mateusz.obama@gmail.com','Barcelona','+8434488482','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1982','attila.fisichella@gmail.com','Krakow','+4229687790','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1980','andy.beöthy@yahoo.com','Barcelona','+290779955','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1970','matthew.beöthy@gmail.com','Barcelona','+6138345888','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1993','john.hamilton@gmail.com','Budapest','+4404001293','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1973','matthew.tompa@gmail.com','Miskolc','+152488409','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1968','john.hamilton@yahoo.com','Budapest','+3902935712','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1969','john.beöthy@gmail.com','Miskolc','+8050942152','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1966','prezmek.tompa@gmail.com','Krakow','+3058111661','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1977','matthew.ciacka@hotmail.com','New York','+1792461758','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1995','pál.molnár@hotmail.com','Barcelona','+3055354919','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1966','giancarlo.molnár@yahoo.com','Miskolc','+818878322','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1976','pál.tompa@hotmail.com','Barcelona','+190986585','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1986','tim.monoczki@yahoo.com','Barcelona','+7162907123','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1981','sándor.szodoray@yahoo.com','Miskolc','+8622772266','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1988','miklós.salamon@hotmail.com','Krakow','+5037463001','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1967','miklós.ostafil@hotmail.com','Krakow','+4318969785','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1991','mateusz.lebron@gmail.com','New York','+8506415409','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1978','matthew.szodoray@yahoo.com','Krakow','+1266969748','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1976','prezmek.carrey@hotmail.com','Krakow','+7056106623','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1992','pál.ostafil@yahoo.com','Miskolc','+7729414660','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1981','tim.beöthy@yahoo.com','New York','+930745981','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1977','matthew.fisichella@yahoo.com','Miskolc','+4215244579','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1980','attila.tompa@gmail.com','Miskolc','+9824958183','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1993','andy.salamon@hotmail.com','New York','+3259958575','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1971','matthew.lebron@yahoo.com','Barcelona','+3526326040','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1975','matthew.beöthy@hotmail.com','New York','+6283562719','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1975','prezmek.beöthy@yahoo.com','Budapest','+8639493386','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1972','matthew.hamilton@gmail.com','Barcelona','+8485809525','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1994','sándor.tompa@yahoo.com','Barcelona','+5632473388','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1987','dániel.hamilton@yahoo.com','New York','+4567772033','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1975','mateusz.obama@gmail.com','Barcelona','+1767717160','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1973','matthew.tompa@hotmail.com','Krakow','+6043191430','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1994','miklós.ostafil@yahoo.com','Budapest','+7823433546','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1989','attila.carrey@gmail.com','Miskolc','+2412004425','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1992','prezmek.obama@yahoo.com','Barcelona','+6410934108','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1994','sándor.hamilton@hotmail.com','New York','+6519422408','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1986','tamás.fisichella@hotmail.com','Miskolc','+6868707261','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1974','prezmek.lebron@gmail.com','New York','+928149581','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1972','giancarlo.lebron@hotmail.com','Budapest','+9002210879','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1994','tim.obama@hotmail.com','Krakow','+7399638299','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1989','giancarlo.carrey@gmail.com','Barcelona','+2451957123','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1966','mateusz.beöthy@gmail.com','Barcelona','+6239112392','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1989','john.tompa@yahoo.com','New York','+5486993778','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1979','attila.monoczki@hotmail.com','Budapest','+7294292132','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1968','andy.carrey@gmail.com','Krakow','+6575118712','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1977','tim.carrey@yahoo.com','Budapest','+434835221','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1987','attila.salamon@gmail.com','Krakow','+570234362','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1971','sándor.molnár@gmail.com','Miskolc','+8984633986','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1979','prezmek.fisichella@yahoo.com','Budapest','+6792581232','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1989','miklós.hamilton@gmail.com','Miskolc','+532098662','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1993','giancarlo.ostafil@yahoo.com','Miskolc','+3763763706','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1992','tamás.monoczki@hotmail.com','New York','+553429655','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1988','john.ostafil@yahoo.com','New York','+5597683361','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1973','giancarlo.molnár@yahoo.com','Miskolc','+175173116','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1969','pál.monoczki@hotmail.com','New York','+3292114867','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1980','tamás.lebron@gmail.com','Miskolc','+8155683060','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1969','mateusz.monoczki@gmail.com','Budapest','+1821156545','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1967','prezmek.beöthy@yahoo.com','Krakow','+841238436','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1986','tim.szodoray@yahoo.com','Krakow','+4664776927','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1993','attila.salamon@hotmail.com','Krakow','+6111895434','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1986','andy.beöthy@yahoo.com','Miskolc','+990552150','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1992','dániel.lebron@gmail.com','Miskolc','+8790190959','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1983','miklós.ciacka@yahoo.com','Krakow','+7955637673','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1966','giancarlo.ciacka@hotmail.com','Budapest','+1433042282','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1982','dániel.fisichella@yahoo.com','Budapest','+526754803','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1966','dániel.carrey@hotmail.com','New York','+263677853','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1972','attila.ostafil@yahoo.com','Krakow','+9913294880','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1989','andy.hamilton@hotmail.com','Krakow','+3929450950','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1993','matthew.hamilton@gmail.com','Miskolc','+8541706737','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1985','pál.fisichella@gmail.com','New York','+1091856070','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1970','john.molnár@yahoo.com','New York','+6343213370','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1992','tim.obama@yahoo.com','Krakow','+8741132450','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1969','miklós.obama@gmail.com','New York','+2880740548','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1968','prezmek.monoczki@hotmail.com','Barcelona','+5393290667','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1979','john.obama@yahoo.com','Krakow','+6463544158','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1967','tamás.lebron@yahoo.com','Krakow','+180637360','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1987','mateusz.fisichella@gmail.com','Krakow','+2204799275','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1968','attila.salamon@yahoo.com','Miskolc','+9750392975','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1979','attila.ostafil@yahoo.com','New York','+5269359880','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1995','attila.tompa@yahoo.com','Krakow','+4156839799','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1981','tamás.lebron@yahoo.com','Budapest','+1309582022','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1988','sándor.szodoray@gmail.com','Budapest','+9344623091','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1986','andy.monoczki@yahoo.com','Barcelona','+2246771090','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1981','prezmek.lebron@yahoo.com','Budapest','+7385405605','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1988','tim.tompa@yahoo.com','Barcelona','+2506251257','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1976','sándor.ciacka@yahoo.com','Barcelona','+8894510203','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1984','miklós.szodoray@yahoo.com','Barcelona','+2704154262','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1969','matthew.tompa@hotmail.com','Budapest','+2122152037','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1966','andy.szodoray@gmail.com','Barcelona','+5475662501','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1989','mateusz.tompa@yahoo.com','Budapest','+850564323','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1991','mateusz.beöthy@hotmail.com','New York','+4268098693','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1987','pál.ciacka@hotmail.com','Barcelona','+470072593','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1995','giancarlo.beöthy@hotmail.com','Krakow','+9248174619','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1994','mateusz.ciacka@hotmail.com','Barcelona','+4021948805','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1987','john.lebron@hotmail.com','Budapest','+5860073825','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1969','sándor.hamilton@yahoo.com','Krakow','+1390703990','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1984','prezmek.tompa@gmail.com','Budapest','+3965984824','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1987','pál.carrey@hotmail.com','Budapest','+4069830057','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1971','tamás.ostafil@gmail.com','Miskolc','+9934823514','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1977','andy.szodoray@yahoo.com','New York','+4199448117','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1977','john.molnár@gmail.com','Budapest','+1990187605','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1979','mateusz.obama@hotmail.com','Miskolc','+7681472308','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1986','sándor.szodoray@yahoo.com','New York','+2203841758','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1986','miklós.carrey@hotmail.com','New York','+6374160963','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1983','andy.salamon@yahoo.com','Krakow','+6772279538','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1991','tamás.beöthy@yahoo.com','Barcelona','+5739138421','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1966','dániel.szodoray@hotmail.com','Miskolc','+4267170059','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1987','pál.tompa@yahoo.com','Krakow','+1632338776','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1991','sándor.hamilton@gmail.com','Miskolc','+6624103935','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1969','tamás.salamon@gmail.com','Miskolc','+198465203','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1983','giancarlo.molnár@hotmail.com','New York','+6204197883','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1966','pál.szodoray@yahoo.com','Budapest','+5930188912','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1990','miklós.molnár@yahoo.com','Miskolc','+7700461413','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1986','attila.salamon@gmail.com','Krakow','+3995994527','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1977','attila.ostafil@gmail.com','Miskolc','+5450860455','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1981','mateusz.lebron@gmail.com','Miskolc','+5426239680','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1967','prezmek.hamilton@gmail.com','Barcelona','+6584700927','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1985','sándor.ostafil@hotmail.com','Barcelona','+8674082820','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1991','matthew.monoczki@yahoo.com','Miskolc','+5554066687','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1986','andy.hamilton@hotmail.com','Krakow','+8246440608','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1986','mateusz.molnár@yahoo.com','Budapest','+5630945039','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1988','sándor.salamon@gmail.com','Krakow','+9695919846','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1990','dániel.szodoray@yahoo.com','Krakow','+6332331089','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1992','tamás.obama@hotmail.com','Barcelona','+7602335539','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1978','attila.molnár@yahoo.com','Krakow','+2231801060','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1983','miklós.salamon@hotmail.com','Krakow','+2454651953','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1977','mateusz.fisichella@hotmail.com','Krakow','+3529576811','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1980','mateusz.obama@hotmail.com','New York','+5027064264','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1986','sándor.tompa@gmail.com','Budapest','+6237705092','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1994','sándor.obama@hotmail.com','Budapest','+5295869477','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1985','andy.tompa@yahoo.com','Budapest','+4523380881','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1965','dániel.ciacka@hotmail.com','Barcelona','+3781473770','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1967','john.fisichella@yahoo.com','Krakow','+3919115274','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1971','giancarlo.fisichella@yahoo.com','Krakow','+5538861529','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1992','miklós.fisichella@gmail.com','Budapest','+9313250641','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1985','mateusz.ciacka@hotmail.com','Budapest','+7478257265','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1975','giancarlo.ostafil@gmail.com','New York','+6830804054','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1986','john.salamon@gmail.com','Barcelona','+6977746418','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1989','prezmek.ciacka@gmail.com','Barcelona','+8262342107','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1993','mateusz.szodoray@gmail.com','Budapest','+3577350950','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1988','andy.carrey@gmail.com','Budapest','+2977810472','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1967','attila.obama@gmail.com','Miskolc','+2889820265','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1992','pál.monoczki@yahoo.com','Barcelona','+7589507385','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1967','andy.obama@yahoo.com','New York','+5069942909','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1989','andy.ciacka@yahoo.com','Krakow','+9663692760','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1973','matthew.beöthy@yahoo.com','Budapest','+4621067532','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1974','john.fisichella@hotmail.com','Budapest','+8024163032','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1969','giancarlo.fisichella@gmail.com','Miskolc','+9055682677','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1985','tim.lebron@hotmail.com','Krakow','+3939814035','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1966','giancarlo.monoczki@yahoo.com','Barcelona','+2586098020','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1967','giancarlo.fisichella@hotmail.com','Krakow','+1158090616','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1986','attila.beöthy@yahoo.com','Barcelona','+3218604168','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1974','sándor.tompa@gmail.com','Krakow','+279975890','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1971','giancarlo.tompa@gmail.com','Budapest','+2465930093','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1985','miklós.beöthy@gmail.com','Krakow','+2398165764','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1965','sándor.lebron@yahoo.com','Miskolc','+48969127','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1968','pál.carrey@hotmail.com','Miskolc','+968519035','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1980','tim.lebron@hotmail.com','Krakow','+6459476687','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1994','mateusz.salamon@hotmail.com','Miskolc','+4116649936','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1979','sándor.szodoray@yahoo.com','Miskolc','+2255865563','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1978','matthew.tompa@yahoo.com','Miskolc','+4804707531','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1973','tim.szodoray@yahoo.com','New York','+5012802285','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1984','giancarlo.molnár@gmail.com','Budapest','+88346793','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1981','andy.hamilton@gmail.com','Miskolc','+4266876979','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1982','john.fisichella@gmail.com','Miskolc','+3036799880','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1995','tamás.szodoray@gmail.com','New York','+4740453495','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1988','pál.hamilton@gmail.com','Barcelona','+8269022832','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1989','john.ostafil@gmail.com','Krakow','+8798110613','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1977','giancarlo.fisichella@yahoo.com','Barcelona','+8723606946','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1976','mateusz.fisichella@gmail.com','Barcelona','+3564385767','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1981','prezmek.monoczki@gmail.com','Krakow','+3839324575','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1973','andy.beöthy@hotmail.com','Miskolc','+8962653052','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1971','attila.fisichella@hotmail.com','Krakow','+7627729047','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1990','john.beöthy@yahoo.com','Krakow','+1263538970','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1980','pál.salamon@yahoo.com','New York','+1307076431','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1983','mateusz.beöthy@hotmail.com','New York','+5812202919','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1982','andy.obama@hotmail.com','Krakow','+2738104849','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1978','attila.ciacka@gmail.com','Barcelona','+1899091492','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1995','mateusz.lebron@yahoo.com','Budapest','+6860945024','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1991','tamás.beöthy@yahoo.com','Miskolc','+8565394727','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1967','pál.ostafil@hotmail.com','Barcelona','+9731096261','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1981','matthew.fisichella@yahoo.com','Barcelona','+8499489961','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1991','sándor.beöthy@yahoo.com','Barcelona','+517938882','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1993','tim.tompa@yahoo.com','Budapest','+4394209157','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1985','dániel.carrey@yahoo.com','Budapest','+4814114045','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1994','matthew.carrey@hotmail.com','Budapest','+1906914272','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1995','andy.salamon@hotmail.com','Barcelona','+8866861728','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1994','dániel.molnár@gmail.com','Budapest','+3168851184','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1977','andy.ostafil@yahoo.com','Barcelona','+3685403503','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1973','andy.szodoray@gmail.com','Budapest','+3652388297','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1979','tim.szodoray@yahoo.com','Krakow','+5224770558','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1992','attila.carrey@gmail.com','Barcelona','+9232508139','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1986','mateusz.beöthy@gmail.com','Barcelona','+3888425940','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1993','matthew.szodoray@yahoo.com','New York','+6923900792','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1988','mateusz.hamilton@gmail.com','Miskolc','+9448969918','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1984','matthew.lebron@gmail.com','Budapest','+6280514092','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1968','prezmek.hamilton@yahoo.com','Krakow','+4106939190','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1966','matthew.obama@hotmail.com','Budapest','+2964980955','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1976','giancarlo.lebron@gmail.com','Budapest','+6472686225','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1989','matthew.hamilton@yahoo.com','Barcelona','+2007993842','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1981','dániel.ciacka@hotmail.com','New York','+6026981159','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1988','prezmek.szodoray@yahoo.com','Budapest','+496120793','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1973','tamás.szodoray@gmail.com','Miskolc','+8236218064','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1994','pál.hamilton@hotmail.com','Krakow','+5905755317','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1991','sándor.lebron@yahoo.com','Miskolc','+1918566356','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1978','attila.carrey@hotmail.com','Krakow','+4381509486','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1973','andy.fisichella@hotmail.com','Barcelona','+8394445785','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1980','andy.ciacka@yahoo.com','Miskolc','+3149806740','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1986','mateusz.ostafil@yahoo.com','Miskolc','+6609810844','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1992','prezmek.fisichella@yahoo.com','New York','+9709768461','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1986','pál.lebron@gmail.com','Barcelona','+27037493','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1969','tamás.hamilton@hotmail.com','Barcelona','+2508326617','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1975','giancarlo.ciacka@gmail.com','New York','+5284601868','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1982','giancarlo.beöthy@hotmail.com','New York','+7786052395','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1970','tamás.lebron@gmail.com','Budapest','+6072951200','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1967','andy.molnár@gmail.com','Barcelona','+6262543707','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1985','giancarlo.monoczki@hotmail.com','Krakow','+7662547416','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1988','mateusz.lebron@gmail.com','Miskolc','+1847846341','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1989','attila.salamon@yahoo.com','Krakow','+3682259007','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1987','miklós.salamon@hotmail.com','Krakow','+6854932116','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1980','tim.obama@gmail.com','Miskolc','+4936784452','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1991','tim.ciacka@hotmail.com','Miskolc','+3317843329','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1988','tim.beöthy@gmail.com','Miskolc','+1595190575','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1982','pál.carrey@hotmail.com','Krakow','+2904652640','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1971','pál.molnár@gmail.com','New York','+9275741366','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1978','matthew.szodoray@gmail.com','Krakow','+152343040','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1981','andy.fisichella@gmail.com','Miskolc','+3225516866','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1974','prezmek.lebron@hotmail.com','Krakow','+1144588773','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1983','attila.tompa@yahoo.com','Krakow','+9009502771','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1973','mateusz.hamilton@gmail.com','Miskolc','+7787568878','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1985','pál.hamilton@gmail.com','Budapest','+809366772','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1969','matthew.hamilton@yahoo.com','Barcelona','+6745174815','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1973','giancarlo.molnár@gmail.com','Miskolc','+5785679163','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1969','giancarlo.beöthy@hotmail.com','Budapest','+4765143896','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1985','attila.szodoray@gmail.com','Barcelona','+529271135','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1975','mateusz.tompa@yahoo.com','Barcelona','+9098754900','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1976','matthew.salamon@gmail.com','New York','+2552020610','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1991','mateusz.molnár@gmail.com','Budapest','+1676200206','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1982','pál.salamon@yahoo.com','Budapest','+2354190161','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1968','mateusz.salamon@gmail.com','New York','+9151718572','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1972','mateusz.ostafil@hotmail.com','Miskolc','+524935680','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1965','miklós.fisichella@gmail.com','Krakow','+8488926459','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1984','tim.tompa@yahoo.com','Miskolc','+5738452923','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1990','john.ciacka@yahoo.com','Krakow','+588315773','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1971','mateusz.obama@yahoo.com','New York','+6203966044','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1989','tamás.tompa@hotmail.com','Miskolc','+2999981458','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1985','mateusz.fisichella@hotmail.com','Budapest','+917089463','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1988','giancarlo.fisichella@hotmail.com','Budapest','+3236773110','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1974','mateusz.ciacka@hotmail.com','Krakow','+3068611438','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1995','tamás.molnár@yahoo.com','Miskolc','+9438517521','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1981','giancarlo.carrey@gmail.com','New York','+7484957660','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1994','andy.ciacka@gmail.com','Krakow','+4138084631','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1994','prezmek.ciacka@yahoo.com','Budapest','+3171376588','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1969','attila.beöthy@hotmail.com','Budapest','+5425990387','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1983','matthew.ostafil@gmail.com','New York','+9530730909','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1976','andy.fisichella@yahoo.com','Krakow','+459175984','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1967','john.szodoray@hotmail.com','Budapest','+3128868693','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1981','pál.salamon@gmail.com','Budapest','+4948692161','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1988','sándor.obama@yahoo.com','Barcelona','+2167099479','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1982','tim.carrey@gmail.com','Krakow','+3553278524','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1970','tamás.lebron@yahoo.com','Miskolc','+8989108740','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1989','miklós.monoczki@gmail.com','New York','+5837553095','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1977','tamás.tompa@hotmail.com','Budapest','+4124140868','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1969','matthew.carrey@gmail.com','Budapest','+6863239256','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1980','prezmek.lebron@yahoo.com','Miskolc','+6137231403','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1988','dániel.ciacka@hotmail.com','Budapest','+2842151805','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1981','dániel.obama@hotmail.com','Budapest','+9926008750','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1985','attila.obama@yahoo.com','Barcelona','+723095407','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1976','matthew.molnár@yahoo.com','Barcelona','+331733291','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1985','tamás.beöthy@hotmail.com','New York','+6209469251','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1970','tamás.molnár@hotmail.com','Budapest','+2976747482','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1969','sándor.hamilton@gmail.com','New York','+5033951110','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1968','pál.molnár@hotmail.com','Krakow','+4213971558','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1974','john.lebron@gmail.com','Krakow','+7092377144','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1988','prezmek.monoczki@gmail.com','New York','+9608959415','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1967','pál.molnár@hotmail.com','Barcelona','+6779311615','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1967','mateusz.obama@gmail.com','Miskolc','+991641317','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1979','dániel.fisichella@gmail.com','Barcelona','+539519650','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1968','pál.lebron@hotmail.com','Miskolc','+4661647023','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1982','tim.szodoray@hotmail.com','Barcelona','+5029963005','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1972','sándor.lebron@gmail.com','Krakow','+5057990740','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1977','tamás.salamon@yahoo.com','Miskolc','+6399221107','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1982','tamás.fisichella@yahoo.com','New York','+1466378646','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1988','pál.monoczki@gmail.com','New York','+6586916135','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1988','giancarlo.tompa@yahoo.com','Miskolc','+3097255263','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1971','john.lebron@gmail.com','New York','+8407520939','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1972','prezmek.ciacka@yahoo.com','New York','+7773710716','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1977','attila.molnár@yahoo.com','Budapest','+9971919333','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1983','tim.molnár@gmail.com','Barcelona','+9148794654','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1994','matthew.ciacka@gmail.com','Budapest','+8309257630','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1969','john.ciacka@gmail.com','New York','+6362435292','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1995','dániel.beöthy@yahoo.com','Barcelona','+8188478294','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1994','prezmek.hamilton@hotmail.com','Barcelona','+8898561373','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1988','miklós.ciacka@yahoo.com','Krakow','+8212983530','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1987','dániel.carrey@hotmail.com','Barcelona','+8687636421','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1976','tamás.ostafil@hotmail.com','New York','+3143727425','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1975','sándor.obama@yahoo.com','Budapest','+6468104171','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1974','mateusz.molnár@hotmail.com','Barcelona','+8864885957','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1984','attila.tompa@hotmail.com','Barcelona','+5385724513','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1989','dániel.fisichella@yahoo.com','Barcelona','+4908118122','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1980','giancarlo.fisichella@gmail.com','New York','+1578857840','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1966','sándor.szodoray@hotmail.com','New York','+7961251244','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1982','dániel.monoczki@hotmail.com','Barcelona','+1001239280','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1969','mateusz.fisichella@hotmail.com','Budapest','+765792277','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1972','dániel.monoczki@gmail.com','Barcelona','+2357689162','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1988','miklós.monoczki@hotmail.com','Miskolc','+9095973406','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1977','dániel.carrey@gmail.com','Krakow','+422322326','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1983','dániel.lebron@gmail.com','Budapest','+2660533380','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1980','mateusz.hamilton@yahoo.com','Budapest','+3240053320','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1983','attila.salamon@yahoo.com','Krakow','+8270595181','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1974','prezmek.beöthy@yahoo.com','Budapest','+1182942550','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1989','tamás.tompa@yahoo.com','Barcelona','+7081978404','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1990','pál.szodoray@gmail.com','Barcelona','+3683981651','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1980','prezmek.tompa@hotmail.com','Budapest','+957538350','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1990','giancarlo.lebron@yahoo.com','Miskolc','+4703955529','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1983','andy.molnár@hotmail.com','Budapest','+4154641108','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1971','john.lebron@gmail.com','Krakow','+2345891735','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1986','andy.lebron@hotmail.com','Budapest','+2345921880','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1966','miklós.monoczki@gmail.com','Miskolc','+4983772935','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1971','giancarlo.lebron@hotmail.com','Miskolc','+3928433496','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1981','andy.salamon@gmail.com','New York','+377075522','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1991','tamás.molnár@hotmail.com','Miskolc','+7841269817','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1989','pál.molnár@hotmail.com','Krakow','+2360909760','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1975','giancarlo.obama@yahoo.com','New York','+6678284218','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1971','dániel.szodoray@hotmail.com','Budapest','+6055426477','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1979','tamás.ostafil@gmail.com','New York','+9722017727','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1993','mateusz.tompa@hotmail.com','Krakow','+5576856355','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1994','miklós.lebron@gmail.com','Miskolc','+8036025116','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1991','tamás.molnár@yahoo.com','New York','+2661232568','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1991','sándor.hamilton@gmail.com','Miskolc','+4366783894','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1974','sándor.hamilton@gmail.com','Barcelona','+3974514266','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1971','sándor.lebron@hotmail.com','Barcelona','+6672104973','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1978','sándor.tompa@gmail.com','Budapest','+4826303539','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1988','miklós.hamilton@gmail.com','Miskolc','+2887275052','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1970','matthew.salamon@hotmail.com','New York','+676123493','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1990','andy.carrey@yahoo.com','Krakow','+500697112','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1991','mateusz.beöthy@hotmail.com','New York','+9722492836','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1968','prezmek.monoczki@hotmail.com','Miskolc','+5033754295','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1980','prezmek.hamilton@yahoo.com','Barcelona','+7483563160','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1986','prezmek.szodoray@yahoo.com','Budapest','+6990021394','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1974','mateusz.szodoray@hotmail.com','Miskolc','+23919765','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1985','andy.fisichella@gmail.com','Barcelona','+8690300776','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1992','matthew.hamilton@gmail.com','Miskolc','+3266497136','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1973','john.carrey@gmail.com','Krakow','+72886394','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1973','dániel.salamon@hotmail.com','Budapest','+2313763823','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1965','miklós.salamon@hotmail.com','Budapest','+427607588','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1976','john.hamilton@gmail.com','New York','+1973899780','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1976','giancarlo.obama@yahoo.com','Miskolc','+2395030887','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1968','mateusz.beöthy@gmail.com','Miskolc','+458317287','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1973','dániel.obama@gmail.com','New York','+490499161','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1966','mateusz.hamilton@yahoo.com','Krakow','+5766744906','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1973','prezmek.obama@gmail.com','Budapest','+3424293198','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1988','tamás.hamilton@hotmail.com','New York','+4084401959','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1970','prezmek.lebron@hotmail.com','Miskolc','+5554252861','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1975','tim.tompa@hotmail.com','Krakow','+320687451','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1981','attila.szodoray@gmail.com','Krakow','+3832891525','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1966','miklós.fisichella@yahoo.com','New York','+6104872644','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1980','john.ostafil@hotmail.com','Miskolc','+6633105248','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1970','giancarlo.salamon@yahoo.com','Miskolc','+1553060734','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1995','tim.fisichella@gmail.com','Krakow','+8737516325','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1984','john.szodoray@hotmail.com','Miskolc','+1047498470','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1987','tamás.molnár@yahoo.com','New York','+7818053824','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1968','giancarlo.monoczki@hotmail.com','Barcelona','+8873274254','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1990','tamás.beöthy@gmail.com','Miskolc','+4323463563','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1973','sándor.lebron@gmail.com','Budapest','+4359908585','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1982','matthew.obama@hotmail.com','Barcelona','+7482588059','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1981','matthew.salamon@hotmail.com','Budapest','+7324840214','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1993','prezmek.ciacka@yahoo.com','Barcelona','+2334630690','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1978','andy.monoczki@hotmail.com','Miskolc','+7388382580','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1967','pál.obama@yahoo.com','Miskolc','+2231401959','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1968','giancarlo.beöthy@hotmail.com','New York','+1063488808','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1980','tim.carrey@hotmail.com','Krakow','+4090467938','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1977','tamás.molnár@gmail.com','Budapest','+5212683405','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1994','dániel.carrey@yahoo.com','New York','+9652702060','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1981','pál.fisichella@gmail.com','Miskolc','+1769759962','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1990','dániel.monoczki@gmail.com','New York','+2278151414','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1978','matthew.ciacka@yahoo.com','Miskolc','+8026445969','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1989','tamás.obama@hotmail.com','Budapest','+6305988838','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1994','attila.beöthy@hotmail.com','Barcelona','+4420645925','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1983','tim.ostafil@yahoo.com','Barcelona','+975964589','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1982','mateusz.lebron@gmail.com','New York','+7997491646','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1990','giancarlo.tompa@yahoo.com','Krakow','+7270142114','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1986','matthew.tompa@hotmail.com','Budapest','+3728898207','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1975','sándor.monoczki@gmail.com','Barcelona','+4381161638','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1967','john.tompa@hotmail.com','New York','+3223887588','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1970','dániel.hamilton@hotmail.com','New York','+4343591420','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1980','mateusz.lebron@yahoo.com','New York','+367551944','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1979','john.molnár@hotmail.com','Barcelona','+2488972181','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1972','prezmek.monoczki@gmail.com','Krakow','+2987234620','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1971','pál.salamon@yahoo.com','Budapest','+4864949822','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1994','prezmek.hamilton@yahoo.com','New York','+1961730274','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1993','pál.lebron@yahoo.com','Miskolc','+2245532811','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1974','john.szodoray@hotmail.com','Barcelona','+5036932647','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1989','sándor.ostafil@hotmail.com','Barcelona','+9671431735','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1966','tamás.lebron@yahoo.com','New York','+4772063025','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1986','andy.ostafil@gmail.com','Barcelona','+2094906794','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1995','giancarlo.carrey@gmail.com','New York','+8909682266','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1972','sándor.molnár@gmail.com','Barcelona','+3729955826','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1989','attila.tompa@hotmail.com','New York','+1560840842','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1976','matthew.hamilton@hotmail.com','New York','+532327915','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1981','matthew.molnár@yahoo.com','Barcelona','+7315008455','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1965','giancarlo.molnár@yahoo.com','Barcelona','+3397476925','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1971','tamás.lebron@hotmail.com','Krakow','+1119768521','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1989','andy.salamon@hotmail.com','Barcelona','+7919297','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1984','dániel.szodoray@gmail.com','New York','+1950016707','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1966','miklós.fisichella@yahoo.com','Barcelona','+621998095','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1968','matthew.molnár@yahoo.com','Budapest','+6647985826','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1988','pál.monoczki@yahoo.com','Miskolc','+9998544778','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1994','sándor.obama@hotmail.com','New York','+6454158754','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1992','mateusz.ciacka@hotmail.com','Miskolc','+1242612153','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1994','matthew.obama@hotmail.com','Krakow','+498343837','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1985','sándor.carrey@gmail.com','Krakow','+7695700770','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1990','matthew.tompa@gmail.com','Barcelona','+2937913170','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1990','giancarlo.hamilton@hotmail.com','Krakow','+2077941527','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1973','sándor.tompa@hotmail.com','Budapest','+3710033852','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1990','prezmek.hamilton@gmail.com','Miskolc','+7202857977','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1972','prezmek.szodoray@hotmail.com','Krakow','+2721831834','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1992','tim.lebron@gmail.com','New York','+6391619726','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1991','prezmek.obama@hotmail.com','Budapest','+3587359875','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1994','prezmek.hamilton@yahoo.com','Krakow','+264379162','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1989','pál.salamon@hotmail.com','Miskolc','+2621098075','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1970','miklós.beöthy@gmail.com','New York','+9819997437','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1988','matthew.fisichella@gmail.com','New York','+568684388','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1975','tamás.ciacka@gmail.com','Krakow','+2054577775','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1982','tim.fisichella@yahoo.com','Barcelona','+1386271174','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1971','pál.tompa@yahoo.com','Budapest','+3600303292','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1979','matthew.obama@yahoo.com','Krakow','+1722802096','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1965','pál.lebron@hotmail.com','Miskolc','+5500179008','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1981','miklós.tompa@hotmail.com','Barcelona','+5016919964','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1967','giancarlo.salamon@hotmail.com','New York','+6691592795','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1965','sándor.fisichella@hotmail.com','New York','+9429035980','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1974','giancarlo.tompa@hotmail.com','Miskolc','+1104018454','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1977','dániel.lebron@hotmail.com','Budapest','+4010189743','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1972','pál.molnár@gmail.com','New York','+261966745','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1986','matthew.ciacka@yahoo.com','Krakow','+1927436921','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1977','dániel.carrey@hotmail.com','New York','+3487711223','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1982','matthew.monoczki@gmail.com','Miskolc','+9245739850','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1993','matthew.szodoray@gmail.com','Krakow','+4778327401','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1985','miklós.obama@hotmail.com','Miskolc','+9319779889','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1982','attila.ciacka@gmail.com','Krakow','+4230021961','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1972','sándor.ciacka@gmail.com','Budapest','+6197006523','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1992','john.ciacka@yahoo.com','Miskolc','+511588529','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1983','tamás.hamilton@hotmail.com','Budapest','+8578609129','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1971','pál.hamilton@yahoo.com','Krakow','+5096136466','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1968','john.tompa@gmail.com','Barcelona','+9348475342','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1965','prezmek.lebron@hotmail.com','Budapest','+6617703788','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1967','andy.monoczki@yahoo.com','New York','+7863473174','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1979','john.tompa@gmail.com','Barcelona','+799357382','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1993','prezmek.tompa@hotmail.com','Krakow','+9270781984','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1971','miklós.beöthy@yahoo.com','Miskolc','+7567316044','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1981','mateusz.molnár@gmail.com','Miskolc','+8465993807','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1969','mateusz.salamon@hotmail.com','Budapest','+5357425849','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1985','mateusz.carrey@gmail.com','Miskolc','+8784896366','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1993','attila.tompa@hotmail.com','Barcelona','+2840985269','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1977','miklós.szodoray@gmail.com','Miskolc','+2572728776','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1986','attila.molnár@gmail.com','Miskolc','+2688471086','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1981','prezmek.szodoray@yahoo.com','Budapest','+556824740','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1994','sándor.lebron@yahoo.com','Barcelona','+2526578612','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1975','prezmek.fisichella@gmail.com','Krakow','+3410164615','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1992','attila.beöthy@hotmail.com','Budapest','+8473753929','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1990','tamás.obama@yahoo.com','Miskolc','+8664206356','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1971','tamás.lebron@gmail.com','Barcelona','+6321024276','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1983','prezmek.molnár@gmail.com','New York','+2750605438','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1976','attila.ciacka@gmail.com','Miskolc','+5125542055','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1981','john.szodoray@gmail.com','Krakow','+6535025269','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1977','sándor.hamilton@hotmail.com','Budapest','+7269440314','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1973','pál.monoczki@gmail.com','Miskolc','+7054651656','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1971','pál.salamon@gmail.com','Miskolc','+2753082822','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1988','attila.lebron@gmail.com','Krakow','+968613363','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1980','mateusz.molnár@gmail.com','Barcelona','+598441401','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1969','sándor.ciacka@yahoo.com','Miskolc','+7219067124','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1990','pál.ostafil@gmail.com','New York','+9443988049','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1970','mateusz.hamilton@gmail.com','Budapest','+181201208','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1987','mateusz.ostafil@gmail.com','Barcelona','+1519833989','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1971','john.beöthy@hotmail.com','Budapest','+8734421909','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1994','matthew.tompa@yahoo.com','Barcelona','+966928059','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1966','john.ostafil@yahoo.com','Barcelona','+4543799216','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1972','mateusz.tompa@yahoo.com','Budapest','+6792902103','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1983','dániel.fisichella@yahoo.com','Krakow','+8369022620','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1967','attila.szodoray@yahoo.com','Krakow','+4905951376','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1977','tamás.carrey@yahoo.com','Barcelona','+5020473448','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1991','john.monoczki@gmail.com','Miskolc','+2851969699','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1995','prezmek.ostafil@hotmail.com','Krakow','+5024171794','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1981','dániel.salamon@hotmail.com','New York','+8350787697','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1969','attila.ostafil@yahoo.com','Miskolc','+4115948533','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1972','attila.tompa@hotmail.com','Miskolc','+8353657178','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1986','giancarlo.hamilton@gmail.com','Miskolc','+9827968459','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1986','john.monoczki@hotmail.com','Budapest','+2171714967','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1973','mateusz.fisichella@hotmail.com','Krakow','+8443605565','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1971','dániel.ciacka@hotmail.com','Budapest','+838330526','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1974','sándor.beöthy@hotmail.com','New York','+6689450260','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1983','andy.tompa@yahoo.com','Krakow','+3501311695','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1978','tim.lebron@yahoo.com','Budapest','+7546902393','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1970','tamás.fisichella@hotmail.com','New York','+1846851144','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1981','tim.hamilton@yahoo.com','New York','+9223885120','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1994','andy.carrey@hotmail.com','Krakow','+9928551551','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1989','sándor.szodoray@yahoo.com','Barcelona','+8599908040','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1992','attila.carrey@yahoo.com','Barcelona','+6074373403','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1965','john.lebron@gmail.com','Budapest','+4179686300','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1992','tamás.lebron@gmail.com','Krakow','+3254241616','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1975','mateusz.ostafil@hotmail.com','Barcelona','+589932532','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1984','mateusz.lebron@yahoo.com','Miskolc','+540113946','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1994','tim.lebron@gmail.com','Krakow','+5639173464','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1985','giancarlo.ostafil@hotmail.com','Krakow','+5737464039','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1976','tamás.ciacka@hotmail.com','Budapest','+4714958803','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1977','matthew.beöthy@hotmail.com','Budapest','+1048530980','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1965','prezmek.ciacka@gmail.com','Miskolc','+1853977492','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1993','giancarlo.carrey@yahoo.com','Krakow','+9338446893','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1983','tim.obama@gmail.com','Miskolc','+7890291439','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1981','mateusz.carrey@gmail.com','Krakow','+9177349862','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1992','attila.molnár@hotmail.com','Barcelona','+3783945143','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1991','tamás.carrey@gmail.com','Barcelona','+1364253774','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1990','tim.tompa@hotmail.com','New York','+7241102469','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1967','miklós.salamon@gmail.com','New York','+1374128204','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1986','attila.ostafil@hotmail.com','Budapest','+6673711977','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1970','miklós.ostafil@gmail.com','Budapest','+1587524650','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1993','john.lebron@hotmail.com','New York','+7106235721','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1978','mateusz.hamilton@yahoo.com','Budapest','+5513293957','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1979','attila.molnár@hotmail.com','Krakow','+5728817206','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1990','mateusz.hamilton@gmail.com','Barcelona','+3799287804','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1993','mateusz.tompa@yahoo.com','Budapest','+1480485925','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1982','dániel.beöthy@yahoo.com','New York','+7735745174','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1972','dániel.molnár@hotmail.com','Budapest','+3218145901','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1986','mateusz.szodoray@gmail.com','Barcelona','+3544692787','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1977','matthew.obama@hotmail.com','Barcelona','+8572087643','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1986','sándor.lebron@gmail.com','New York','+2699301221','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1984','mateusz.fisichella@gmail.com','Budapest','+1896821399','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1972','attila.monoczki@yahoo.com','Miskolc','+7630174256','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1965','matthew.carrey@hotmail.com','Krakow','+6540662891','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1970','john.tompa@hotmail.com','Barcelona','+8130629217','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1965','sándor.obama@yahoo.com','New York','+2926552145','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1971','andy.hamilton@yahoo.com','New York','+4666749675','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1979','andy.lebron@hotmail.com','Krakow','+4997962742','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1966','matthew.tompa@hotmail.com','Budapest','+506491614','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1966','matthew.salamon@hotmail.com','Barcelona','+6153447017','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1975','giancarlo.lebron@yahoo.com','Miskolc','+9676071001','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1976','tim.molnár@yahoo.com','New York','+762038377','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1983','attila.tompa@yahoo.com','Krakow','+3917855984','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1989','tamás.monoczki@yahoo.com','Krakow','+8356973935','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1990','tim.obama@yahoo.com','Krakow','+4047559703','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1986','pál.monoczki@yahoo.com','Barcelona','+8055185702','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1971','sándor.ostafil@gmail.com','New York','+8299661035','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1992','giancarlo.carrey@gmail.com','Miskolc','+1104172494','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1992','dániel.carrey@yahoo.com','Budapest','+4894812060','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1984','andy.carrey@hotmail.com','Barcelona','+6352580091','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1970','prezmek.hamilton@gmail.com','Budapest','+9844100290','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1965','john.szodoray@yahoo.com','Budapest','+6028580999','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1995','tamás.obama@hotmail.com','Miskolc','+3718436401','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1970','john.lebron@hotmail.com','Budapest','+5354115783','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1988','sándor.ciacka@yahoo.com','Miskolc','+5078224156','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1965','prezmek.tompa@hotmail.com','Barcelona','+7230890054','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1978','attila.ostafil@gmail.com','Krakow','+7439854151','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1995','dániel.monoczki@hotmail.com','New York','+1575575778','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1977','pál.hamilton@yahoo.com','Krakow','+4335031551','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1993','dániel.fisichella@gmail.com','Barcelona','+9640339916','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1978','dániel.molnár@gmail.com','New York','+6418790010','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1978','tim.obama@yahoo.com','Miskolc','+4231349223','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1970','sándor.tompa@gmail.com','Barcelona','+5242046007','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1973','giancarlo.fisichella@hotmail.com','Miskolc','+444443920','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1993','attila.ciacka@yahoo.com','Miskolc','+4869353120','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1989','prezmek.carrey@yahoo.com','Krakow','+787332362','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1976','prezmek.fisichella@yahoo.com','Barcelona','+6078080361','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1984','john.carrey@hotmail.com','Miskolc','+245791745','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1966','sándor.fisichella@hotmail.com','Budapest','+2894599786','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1995','john.beöthy@yahoo.com','Miskolc','+8405806843','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1976','dániel.fisichella@hotmail.com','Budapest','+4136845670','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1982','attila.ostafil@gmail.com','Budapest','+9049872036','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1970','sándor.lebron@yahoo.com','Barcelona','+1506875794','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1990','john.salamon@yahoo.com','Miskolc','+4381177924','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1970','john.monoczki@hotmail.com','Krakow','+3584655539','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1982','matthew.hamilton@yahoo.com','Krakow','+3100698155','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1979','tamás.lebron@gmail.com','New York','+5614578040','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1971','andy.beöthy@gmail.com','Budapest','+2443823742','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1970','andy.salamon@hotmail.com','Miskolc','+3549153905','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1968','matthew.ostafil@yahoo.com','Barcelona','+4953533093','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1988','john.ostafil@gmail.com','Barcelona','+6086613065','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1988','john.salamon@hotmail.com','Budapest','+9403834789','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1992','dániel.fisichella@gmail.com','New York','+7586940625','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1975','pál.ostafil@gmail.com','New York','+7950769388','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1989','mateusz.hamilton@hotmail.com','Barcelona','+4223390091','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1967','tamás.ostafil@gmail.com','Barcelona','+579882557','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1978','andy.hamilton@yahoo.com','Krakow','+1034265319','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1995','mateusz.carrey@yahoo.com','Barcelona','+3669396477','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1966','giancarlo.tompa@hotmail.com','Budapest','+4432303461','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1993','john.ostafil@yahoo.com','Miskolc','+8173286564','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1969','attila.hamilton@yahoo.com','Krakow','+7920769417','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1990','pál.carrey@hotmail.com','Krakow','+4149555606','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1983','matthew.ostafil@gmail.com','New York','+9644461015','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1982','dániel.obama@hotmail.com','Miskolc','+3102088674','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1987','pál.ostafil@gmail.com','Miskolc','+890931601','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1982','dániel.salamon@gmail.com','Miskolc','+6743583524','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1983','matthew.fisichella@yahoo.com','Budapest','+7565728787','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1984','prezmek.szodoray@gmail.com','Krakow','+1721136037','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1988','prezmek.beöthy@yahoo.com','Krakow','+1265293340','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1974','mateusz.ciacka@yahoo.com','Miskolc','+8934844771','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1972','miklós.molnár@yahoo.com','New York','+9439072432','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1968','dániel.ostafil@yahoo.com','New York','+4148974239','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1967','john.carrey@hotmail.com','Miskolc','+2768673754','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1986','mateusz.beöthy@gmail.com','Krakow','+7578294510','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1966','prezmek.salamon@gmail.com','Barcelona','+6484939424','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1969','pál.monoczki@hotmail.com','Krakow','+4806504542','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1969','giancarlo.obama@yahoo.com','Krakow','+215131485','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1994','tamás.tompa@yahoo.com','Budapest','+442450427','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1969','tim.ciacka@hotmail.com','New York','+8037237636','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1982','mateusz.beöthy@hotmail.com','New York','+1467740789','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1980','attila.molnár@gmail.com','Barcelona','+8633939470','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1970','prezmek.ostafil@hotmail.com','Barcelona','+1750593214','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1990','john.lebron@gmail.com','New York','+6344548396','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1975','andy.ciacka@yahoo.com','Budapest','+8694063542','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1983','dániel.fisichella@gmail.com','New York','+9108891756','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1988','andy.obama@yahoo.com','Budapest','+8947156905','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1992','john.fisichella@hotmail.com','Barcelona','+4641641762','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1975','andy.salamon@gmail.com','Budapest','+8913348816','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1965','prezmek.hamilton@yahoo.com','Barcelona','+926874559','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1985','tim.salamon@yahoo.com','Krakow','+4334548066','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1992','giancarlo.lebron@hotmail.com','Krakow','+1790005781','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1986','pál.beöthy@gmail.com','New York','+1411373420','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1971','andy.ciacka@hotmail.com','New York','+3426826637','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1974','tamás.hamilton@yahoo.com','Miskolc','+4883201944','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1985','sándor.obama@hotmail.com','Budapest','+78949851','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1976','mateusz.fisichella@yahoo.com','New York','+9574238208','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1976','pál.ostafil@hotmail.com','Miskolc','+5708721310','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1984','matthew.ostafil@hotmail.com','Barcelona','+1151091940','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1969','john.monoczki@hotmail.com','New York','+7971073550','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1970','sándor.molnár@hotmail.com','Budapest','+4244035646','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1982','giancarlo.beöthy@gmail.com','New York','+8366866733','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1994','john.lebron@hotmail.com','Budapest','+2672338690','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1968','sándor.ostafil@hotmail.com','Budapest','+8715729903','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1970','john.tompa@yahoo.com','Krakow','+6461732087','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1967','giancarlo.molnár@hotmail.com','New York','+7300733068','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1979','tamás.beöthy@yahoo.com','Miskolc','+6021253518','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1974','pál.szodoray@hotmail.com','New York','+3508936949','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1989','miklós.szodoray@gmail.com','New York','+2761802554','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1973','matthew.salamon@hotmail.com','Budapest','+7478056841','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1970','andy.carrey@gmail.com','Budapest','+3661597029','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1980','tamás.fisichella@hotmail.com','Miskolc','+4546451907','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1991','tamás.obama@gmail.com','Budapest','+1560326924','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1980','john.szodoray@yahoo.com','Krakow','+9027614746','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1975','mateusz.monoczki@hotmail.com','Krakow','+3550025144','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1983','attila.obama@hotmail.com','New York','+5582365831','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1974','giancarlo.monoczki@yahoo.com','Krakow','+7596332518','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1980','prezmek.molnár@hotmail.com','Miskolc','+6339677800','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1969','dániel.hamilton@yahoo.com','Barcelona','+1034205599','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1976','pál.szodoray@hotmail.com','New York','+8937451991','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1971','sándor.monoczki@hotmail.com','Budapest','+5001990836','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1987','pál.salamon@gmail.com','Miskolc','+2514389320','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1990','sándor.carrey@yahoo.com','Budapest','+65607896','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1991','tamás.carrey@yahoo.com','Krakow','+868381106','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1988','attila.salamon@gmail.com','Krakow','+5325459585','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1967','matthew.salamon@gmail.com','Barcelona','+8348354284','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1965','matthew.lebron@yahoo.com','Miskolc','+8812488899','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1974','mateusz.tompa@yahoo.com','Krakow','+445889326','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1993','miklós.fisichella@yahoo.com','Krakow','+6387677786','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1972','dániel.fisichella@yahoo.com','Barcelona','+8678466717','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1979','sándor.salamon@yahoo.com','Barcelona','+6190503763','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1995','prezmek.beöthy@yahoo.com','New York','+1328166737','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1965','giancarlo.molnár@gmail.com','Miskolc','+3003374807','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1971','mateusz.carrey@gmail.com','Barcelona','+7088262704','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1995','tamás.monoczki@yahoo.com','Barcelona','+1321030277','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1968','mateusz.obama@gmail.com','New York','+8399446212','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1976','andy.ostafil@hotmail.com','New York','+4675258017','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1982','john.szodoray@gmail.com','Miskolc','+8735350234','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1995','prezmek.ciacka@gmail.com','New York','+4336532650','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1969','attila.salamon@yahoo.com','Barcelona','+1202130774','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1965','mateusz.lebron@hotmail.com','Krakow','+4926201816','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1977','mateusz.lebron@hotmail.com','Krakow','+1203802076','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1986','giancarlo.ostafil@hotmail.com','Budapest','+7512060890','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1993','tamás.monoczki@hotmail.com','Krakow','+502392798','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1983','pál.salamon@yahoo.com','Barcelona','+934119728','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1970','tamás.monoczki@gmail.com','Miskolc','+2311101965','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1987','giancarlo.molnár@yahoo.com','Miskolc','+9559475494','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1984','prezmek.hamilton@hotmail.com','Budapest','+5990946421','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1973','john.ostafil@hotmail.com','Miskolc','+4341244747','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1994','miklós.szodoray@hotmail.com','Miskolc','+3571623912','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1987','tamás.salamon@hotmail.com','New York','+3574160971','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1970','tim.hamilton@gmail.com','Miskolc','+1280233755','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1986','miklós.obama@hotmail.com','Miskolc','+3137031556','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1980','prezmek.lebron@hotmail.com','Budapest','+9927891268','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1982','sándor.fisichella@gmail.com','Barcelona','+549894614','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1988','attila.fisichella@gmail.com','Miskolc','+3454555228','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1995','tim.szodoray@hotmail.com','New York','+9934916451','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1972','tim.obama@yahoo.com','Barcelona','+1218941120','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1986','john.fisichella@hotmail.com','Miskolc','+8830893898','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1984','john.beöthy@yahoo.com','Barcelona','+8538107','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1968','pál.lebron@gmail.com','Krakow','+1299068786','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1978','giancarlo.fisichella@hotmail.com','Budapest','+6787759171','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1994','tamás.beöthy@hotmail.com','Miskolc','+6532538218','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1979','tamás.hamilton@yahoo.com','Barcelona','+9646378473','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1971','miklós.tompa@gmail.com','New York','+4784304132','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1986','tamás.fisichella@hotmail.com','Barcelona','+785841877','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1986','andy.ciacka@hotmail.com','Barcelona','+172121595','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1985','prezmek.fisichella@hotmail.com','Krakow','+5699130956','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1991','tamás.fisichella@gmail.com','Budapest','+1932689699','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1991','andy.ciacka@yahoo.com','Barcelona','+9646784686','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1978','john.monoczki@gmail.com','New York','+8034926125','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1980','john.ciacka@hotmail.com','Miskolc','+1861253793','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1995','pál.ostafil@hotmail.com','Barcelona','+633790811','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1977','matthew.fisichella@gmail.com','Barcelona','+2959415003','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1991','tim.salamon@yahoo.com','Miskolc','+5110840420','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1979','john.monoczki@hotmail.com','Miskolc','+4483428341','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1970','pál.tompa@yahoo.com','Krakow','+7088217408','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1987','andy.molnár@yahoo.com','New York','+8082600152','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1975','attila.obama@yahoo.com','Barcelona','+814475223','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1985','pál.carrey@gmail.com','Krakow','+6265094015','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1983','pál.ostafil@hotmail.com','Miskolc','+9816896697','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1982','john.molnár@gmail.com','Miskolc','+2879387322','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1992','pál.monoczki@yahoo.com','New York','+1767522713','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1987','giancarlo.ostafil@gmail.com','Miskolc','+5174207450','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1990','attila.hamilton@gmail.com','Barcelona','+3441391905','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1982','sándor.hamilton@hotmail.com','Krakow','+2598102402','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1982','matthew.molnár@gmail.com','Barcelona','+5664165809','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1984','tim.szodoray@hotmail.com','Miskolc','+1705467249','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1977','pál.obama@gmail.com','New York','+2342938096','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1985','tim.szodoray@hotmail.com','Krakow','+4315333586','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1988','miklós.salamon@gmail.com','Budapest','+663279042','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1989','attila.lebron@hotmail.com','Krakow','+6272146397','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1989','tim.molnár@yahoo.com','New York','+5948075853','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1984','matthew.fisichella@hotmail.com','Barcelona','+5966774258','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1987','tim.ostafil@yahoo.com','Budapest','+233735926','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1972','prezmek.ostafil@gmail.com','Miskolc','+9757423337','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1979','miklós.hamilton@hotmail.com','Budapest','+4557450501','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1986','andy.tompa@hotmail.com','Budapest','+329699885','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1967','matthew.carrey@hotmail.com','Miskolc','+113460917','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1984','sándor.lebron@hotmail.com','Budapest','+198528275','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1988','giancarlo.monoczki@hotmail.com','Budapest','+4692861723','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1995','miklós.tompa@gmail.com','Miskolc','+2643149903','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1972','tamás.beöthy@gmail.com','Krakow','+2559612024','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1971','matthew.szodoray@hotmail.com','Barcelona','+5420316312','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1980','matthew.obama@yahoo.com','Krakow','+2058310755','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1983','attila.ostafil@hotmail.com','Barcelona','+3146998435','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1982','miklós.tompa@yahoo.com','New York','+1374542093','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1973','sándor.fisichella@hotmail.com','Budapest','+2488717495','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1982','tamás.monoczki@hotmail.com','Miskolc','+8054942561','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1984','pál.tompa@gmail.com','New York','+8266265463','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1990','tamás.ciacka@yahoo.com','Barcelona','+3126015570','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1992','pál.obama@yahoo.com','Barcelona','+1790984485','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1989','andy.hamilton@hotmail.com','Krakow','+3853705317','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1965','pál.fisichella@yahoo.com','New York','+1118080574','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1984','john.obama@hotmail.com','Miskolc','+6645914131','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1974','miklós.monoczki@gmail.com','Krakow','+1904347352','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1994','sándor.szodoray@hotmail.com','Budapest','+8859940472','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1983','tim.obama@yahoo.com','Budapest','+5287426243','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1977','miklós.beöthy@gmail.com','Krakow','+8942504108','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1977','mateusz.obama@hotmail.com','Budapest','+689370473','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1984','prezmek.molnár@hotmail.com','Barcelona','+6088812943','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1981','sándor.szodoray@gmail.com','Miskolc','+6438042822','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1978','prezmek.szodoray@gmail.com','Miskolc','+3866700888','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1981','john.szodoray@gmail.com','New York','+8826538742','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1993','miklós.szodoray@hotmail.com','Miskolc','+6353558104','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1979','matthew.lebron@hotmail.com','Barcelona','+2078143633','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1975','dániel.beöthy@yahoo.com','Miskolc','+9027805345','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1991','tim.hamilton@hotmail.com','Barcelona','+9817850698','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1980','mateusz.szodoray@gmail.com','Krakow','+5125153061','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1967','prezmek.szodoray@gmail.com','Budapest','+8936750346','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1992','tim.monoczki@hotmail.com','New York','+7509113454','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1972','prezmek.salamon@gmail.com','Barcelona','+3860052776','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1984','mateusz.ciacka@gmail.com','Barcelona','+7537753285','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1981','prezmek.lebron@gmail.com','Miskolc','+7847979276','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1967','miklós.obama@yahoo.com','Budapest','+5882009880','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1994','dániel.salamon@gmail.com','New York','+6032942677','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1988','andy.ciacka@yahoo.com','New York','+6276597950','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1992','dániel.ostafil@gmail.com','New York','+8553633752','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1979','miklós.salamon@yahoo.com','New York','+3359864343','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1981','pál.ostafil@hotmail.com','Miskolc','+9173366170','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1991','matthew.molnár@yahoo.com','Budapest','+7055094065','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1978','tim.obama@hotmail.com','Barcelona','+4572991705','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1984','giancarlo.monoczki@gmail.com','New York','+8796362185','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1995','sándor.lebron@hotmail.com','Barcelona','+8987495813','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1973','sándor.hamilton@gmail.com','Budapest','+9298938014','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1984','dániel.salamon@hotmail.com','Barcelona','+5855902924','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1978','tamás.obama@hotmail.com','Krakow','+2780366468','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1967','sándor.molnár@gmail.com','Barcelona','+7695607240','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1966','pál.beöthy@gmail.com','Budapest','+6018906943','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1992','giancarlo.tompa@yahoo.com','Budapest','+8298944725','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1967','prezmek.lebron@gmail.com','Miskolc','+5493320105','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1977','john.carrey@gmail.com','Krakow','+2292430600','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1976','pál.hamilton@gmail.com','Budapest','+1976513054','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1982','john.fisichella@yahoo.com','New York','+2024346792','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1972','mateusz.tompa@gmail.com','Budapest','+9371216537','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1971','prezmek.ciacka@gmail.com','Krakow','+9394068441','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1995','prezmek.lebron@gmail.com','Miskolc','+1171389590','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1978','miklós.beöthy@gmail.com','Barcelona','+3541492396','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1969','john.szodoray@hotmail.com','New York','+4261105572','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1975','john.beöthy@hotmail.com','Miskolc','+7903336263','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1969','prezmek.obama@hotmail.com','Budapest','+8071706883','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1982','pál.obama@gmail.com','Barcelona','+6897956055','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1991','tamás.ostafil@yahoo.com','Budapest','+2267668921','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1978','miklós.molnár@hotmail.com','Miskolc','+2268296202','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1984','giancarlo.monoczki@hotmail.com','Budapest','+3373814718','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1982','miklós.tompa@gmail.com','Krakow','+8666905602','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1972','sándor.ciacka@hotmail.com','Barcelona','+5005607728','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1965','tamás.lebron@yahoo.com','Budapest','+9180632880','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1980','miklós.obama@hotmail.com','New York','+6635477356','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1975','tim.molnár@gmail.com','Budapest','+1595401930','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1995','sándor.obama@gmail.com','Krakow','+2832540730','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1973','tamás.hamilton@yahoo.com','Budapest','+6564558386','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1993','tim.szodoray@gmail.com','New York','+6387505817','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1974','mateusz.tompa@yahoo.com','Budapest','+9522103108','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1983','prezmek.beöthy@gmail.com','Budapest','+5744923990','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1989','sándor.beöthy@yahoo.com','Miskolc','+1473209025','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1968','miklós.ciacka@yahoo.com','Barcelona','+2867810110','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1980','pál.salamon@yahoo.com','Krakow','+5974334728','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1993','prezmek.salamon@hotmail.com','Miskolc','+7253144081','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1974','andy.salamon@gmail.com','New York','+9516083179','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1982','giancarlo.beöthy@yahoo.com','Miskolc','+7848846496','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1965','miklós.lebron@gmail.com','Krakow','+1305006296','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1983','sándor.beöthy@gmail.com','Krakow','+9154031843','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1967','dániel.monoczki@gmail.com','Barcelona','+7418222404','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1966','attila.monoczki@yahoo.com','New York','+3073732963','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1970','sándor.carrey@yahoo.com','Budapest','+4460220514','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1994','prezmek.beöthy@hotmail.com','Budapest','+4441704387','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1981','andy.molnár@hotmail.com','Budapest','+7451391143','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1991','matthew.monoczki@hotmail.com','Miskolc','+8491107410','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1995','sándor.fisichella@gmail.com','New York','+1408829014','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1973','matthew.lebron@yahoo.com','Krakow','+1073752962','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1979','tim.szodoray@yahoo.com','Miskolc','+9129417590','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1988','pál.fisichella@gmail.com','Krakow','+6001821003','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1966','giancarlo.carrey@hotmail.com','Miskolc','+8307919359','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1972','mateusz.ostafil@yahoo.com','Miskolc','+6123461916','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1967','giancarlo.obama@yahoo.com','New York','+1451255979','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1970','andy.hamilton@hotmail.com','Krakow','+5455341399','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1987','giancarlo.obama@yahoo.com','Budapest','+3502662458','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1987','tamás.ciacka@gmail.com','Krakow','+9783518813','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1988','pál.salamon@yahoo.com','Barcelona','+2317097601','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1993','tamás.molnár@gmail.com','New York','+4545971564','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1975','matthew.hamilton@hotmail.com','Barcelona','+3752440739','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1986','giancarlo.tompa@yahoo.com','Krakow','+3413418354','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1966','giancarlo.obama@hotmail.com','Barcelona','+1463092416','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1984','tim.carrey@yahoo.com','New York','+5423564990','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1972','matthew.ciacka@hotmail.com','New York','+9064138085','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1987','prezmek.szodoray@gmail.com','New York','+6087129883','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1994','giancarlo.molnár@yahoo.com','Krakow','+7731793194','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1978','prezmek.molnár@yahoo.com','New York','+1594621808','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1989','miklós.ciacka@gmail.com','Barcelona','+2998518062','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1985','matthew.molnár@yahoo.com','Miskolc','+8596870449','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1974','tamás.szodoray@hotmail.com','Barcelona','+8463972952','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1978','andy.lebron@gmail.com','Barcelona','+1295601829','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1975','tim.lebron@yahoo.com','New York','+7813354773','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1976','mateusz.ciacka@yahoo.com','New York','+1625398887','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1973','john.hamilton@hotmail.com','Barcelona','+4970521216','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1976','prezmek.salamon@hotmail.com','Budapest','+4703304423','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1965','sándor.tompa@hotmail.com','New York','+5888073415','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1965','attila.ciacka@yahoo.com','Krakow','+9841183935','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1984','john.beöthy@gmail.com','Barcelona','+5642617129','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1989','matthew.monoczki@yahoo.com','Barcelona','+2060945540','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1984','pál.tompa@hotmail.com','New York','+1551428640','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1985','tim.monoczki@gmail.com','New York','+4804969772','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1966','mateusz.ostafil@yahoo.com','Budapest','+6981489019','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1986','giancarlo.tompa@yahoo.com','Miskolc','+3054098161','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1981','tim.tompa@gmail.com','Miskolc','+7297369840','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1992','tamás.molnár@gmail.com','Barcelona','+2238690675','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1987','john.hamilton@gmail.com','Miskolc','+5055893136','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1970','john.tompa@hotmail.com','Miskolc','+9227722066','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1991','miklós.molnár@gmail.com','New York','+9425688742','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1986','mateusz.carrey@yahoo.com','New York','+4703285813','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1972','mateusz.tompa@gmail.com','New York','+7084357215','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1990','tamás.fisichella@hotmail.com','Budapest','+5311123126','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1983','attila.obama@hotmail.com','Barcelona','+3807439618','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1983','john.beöthy@hotmail.com','Krakow','+9601504935','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1995','mateusz.monoczki@gmail.com','Barcelona','+1203058472','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1993','tim.lebron@yahoo.com','Budapest','+6293730669','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1967','sándor.szodoray@gmail.com','New York','+4162985913','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1968','tamás.salamon@hotmail.com','Miskolc','+8680331384','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1995','miklós.hamilton@yahoo.com','New York','+8401918360','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1989','andy.szodoray@yahoo.com','Budapest','+6946727238','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1981','john.fisichella@hotmail.com','Miskolc','+3496817869','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1988','andy.ciacka@hotmail.com','New York','+7383727038','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1976','dániel.salamon@gmail.com','Barcelona','+1001509844','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1988','matthew.salamon@yahoo.com','Krakow','+1248540031','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1992','mateusz.tompa@gmail.com','Barcelona','+5791149891','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1981','mateusz.salamon@hotmail.com','Barcelona','+2139239264','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1980','andy.fisichella@gmail.com','Miskolc','+4156840736','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1989','matthew.salamon@gmail.com','Krakow','+7513856554','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1970','pál.lebron@gmail.com','Krakow','+1425730158','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1975','tim.monoczki@yahoo.com','New York','+7599058416','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1995','tim.tompa@gmail.com','Miskolc','+1673460269','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1983','attila.hamilton@yahoo.com','Krakow','+1885763331','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1980','mateusz.lebron@gmail.com','Miskolc','+1552191284','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1969','john.ostafil@yahoo.com','New York','+1638670080','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1983','attila.ostafil@hotmail.com','New York','+3386150646','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1967','mateusz.molnár@hotmail.com','Barcelona','+8550551213','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1981','prezmek.monoczki@yahoo.com','Miskolc','+2448215019','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1994','pál.lebron@hotmail.com','Miskolc','+7788829285','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1992','andy.obama@hotmail.com','Krakow','+4664673188','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1991','prezmek.carrey@hotmail.com','Budapest','+78851538','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1975','john.monoczki@hotmail.com','Barcelona','+349530194','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1994','miklós.salamon@yahoo.com','Barcelona','+6375024765','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1969','matthew.monoczki@yahoo.com','Barcelona','+6196753158','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1975','prezmek.obama@gmail.com','Budapest','+855503743','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1969','andy.molnár@yahoo.com','Krakow','+3574300401','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1973','giancarlo.ostafil@hotmail.com','New York','+4113899660','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1990','pál.molnár@hotmail.com','Krakow','+5362719452','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1994','tamás.monoczki@yahoo.com','Budapest','+2850082548','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1970','mateusz.monoczki@yahoo.com','New York','+282748458','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1966','mateusz.lebron@gmail.com','Krakow','+981081428','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1966','john.ostafil@gmail.com','Barcelona','+9622259391','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1968','pál.monoczki@hotmail.com','Miskolc','+4280709871','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1965','giancarlo.szodoray@yahoo.com','Miskolc','+2904908758','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1982','dániel.ciacka@yahoo.com','Krakow','+4822294179','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1992','pál.lebron@yahoo.com','Krakow','+1251634932','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1981','giancarlo.lebron@gmail.com','New York','+835298524','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1972','giancarlo.molnár@hotmail.com','New York','+8485847874','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1983','matthew.ciacka@hotmail.com','Krakow','+6352208923','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1983','sándor.lebron@gmail.com','Miskolc','+6867527549','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1991','dániel.salamon@gmail.com','Barcelona','+3341209545','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1988','tim.szodoray@hotmail.com','Miskolc','+8447926538','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1982','john.ciacka@gmail.com','Barcelona','+4166658088','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1990','mateusz.salamon@hotmail.com','New York','+5868236871','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1968','matthew.salamon@yahoo.com','New York','+6760173161','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1990','andy.tompa@gmail.com','Barcelona','+2937384081','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1989','attila.hamilton@hotmail.com','Barcelona','+2625031488','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1967','john.beöthy@yahoo.com','Barcelona','+496407742','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1992','dániel.salamon@yahoo.com','Budapest','+7002021597','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1974','sándor.fisichella@hotmail.com','Miskolc','+2990578728','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1978','tim.hamilton@hotmail.com','Budapest','+7519535971','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1990','andy.obama@hotmail.com','New York','+7152629850','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1969','matthew.lebron@yahoo.com','Krakow','+146662754','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1967','tim.szodoray@yahoo.com','Miskolc','+601996574','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1977','dániel.ostafil@gmail.com','Budapest','+6658711714','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1992','tamás.salamon@hotmail.com','Barcelona','+1816070247','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1984','mateusz.obama@hotmail.com','Budapest','+9923042338','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1989','prezmek.ciacka@hotmail.com','Miskolc','+9683472644','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1989','miklós.beöthy@yahoo.com','Miskolc','+3624026064','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1986','john.fisichella@hotmail.com','New York','+526186509','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1989','attila.tompa@gmail.com','Krakow','+560430917','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1976','sándor.molnár@hotmail.com','Budapest','+2299906737','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1986','john.lebron@gmail.com','Budapest','+2314758550','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1986','mateusz.ciacka@yahoo.com','Budapest','+6866373138','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1991','giancarlo.ciacka@gmail.com','Miskolc','+9745289991','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1969','john.lebron@yahoo.com','Krakow','+6584156911','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1984','andy.lebron@hotmail.com','Budapest','+7660179967','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1979','pál.szodoray@hotmail.com','Krakow','+877388941','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1986','giancarlo.tompa@yahoo.com','Miskolc','+545057519','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1986','giancarlo.molnár@yahoo.com','Budapest','+9995071942','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1975','pál.molnár@yahoo.com','New York','+7203401033','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1987','tamás.szodoray@gmail.com','Miskolc','+9102262507','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1976','miklós.ciacka@yahoo.com','Miskolc','+4671006644','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1969','andy.ostafil@hotmail.com','Budapest','+7460892760','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1980','john.monoczki@hotmail.com','Miskolc','+3643920145','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1969','attila.molnár@yahoo.com','New York','+3620563984','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1994','matthew.lebron@hotmail.com','Budapest','+6998181614','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1988','andy.monoczki@hotmail.com','Krakow','+2671488955','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1972','tamás.molnár@gmail.com','Miskolc','+9158585665','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1976','dániel.carrey@hotmail.com','New York','+51261516','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1976','dániel.salamon@yahoo.com','Miskolc','+1534011077','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1966','tamás.monoczki@yahoo.com','Miskolc','+9215012975','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1986','attila.carrey@hotmail.com','Budapest','+8526536308','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1987','prezmek.beöthy@gmail.com','Krakow','+5424558728','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1973','tim.ostafil@yahoo.com','Barcelona','+4498836707','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1978','andy.fisichella@hotmail.com','Barcelona','+5452339265','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1990','mateusz.ostafil@yahoo.com','New York','+4283845841','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1993','attila.obama@gmail.com','Budapest','+243532704','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1993','matthew.molnár@yahoo.com','Miskolc','+3687708645','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1979','tamás.ciacka@hotmail.com','Miskolc','+6405516045','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1985','giancarlo.lebron@yahoo.com','Barcelona','+6095166351','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1975','andy.hamilton@gmail.com','Krakow','+4697180253','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1983','tamás.ciacka@yahoo.com','Barcelona','+805982428','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1994','tamás.fisichella@hotmail.com','Miskolc','+5763768263','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1993','giancarlo.obama@yahoo.com','Budapest','+9400529955','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1973','matthew.tompa@hotmail.com','Miskolc','+3436500447','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1986','mateusz.obama@gmail.com','Budapest','+6502337283','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1968','tamás.molnár@gmail.com','New York','+2866818050','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1973','prezmek.beöthy@yahoo.com','New York','+7578660574','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1968','matthew.lebron@hotmail.com','New York','+8892157904','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1975','pál.hamilton@yahoo.com','Krakow','+7339285635','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1975','dániel.molnár@yahoo.com','Barcelona','+376087425','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1965','giancarlo.lebron@gmail.com','Krakow','+3254445468','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1986','tamás.fisichella@yahoo.com','Krakow','+954759242','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1973','tim.lebron@hotmail.com','New York','+7204789529','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1975','tim.fisichella@yahoo.com','New York','+4494425088','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1991','attila.monoczki@yahoo.com','Barcelona','+6974061667','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1980','attila.monoczki@hotmail.com','Krakow','+6947519009','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1984','mateusz.hamilton@hotmail.com','Miskolc','+2866054760','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1995','miklós.monoczki@gmail.com','Krakow','+4317429309','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1994','tamás.lebron@hotmail.com','Krakow','+2140645808','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1967','tim.ciacka@yahoo.com','Krakow','+5520118795','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1982','sándor.szodoray@hotmail.com','New York','+577205781','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1975','miklós.salamon@gmail.com','Miskolc','+528979412','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1982','pál.ciacka@gmail.com','Barcelona','+7380359186','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1991','andy.lebron@gmail.com','Krakow','+9361368164','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1966','dániel.hamilton@gmail.com','Barcelona','+7256792594','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1979','mateusz.ostafil@gmail.com','Barcelona','+6078516786','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1988','dániel.ciacka@yahoo.com','Miskolc','+481507830','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1971','john.szodoray@hotmail.com','Miskolc','+7268281258','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1995','dániel.lebron@gmail.com','Miskolc','+1799730645','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1972','tim.lebron@hotmail.com','New York','+676110541','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1976','matthew.fisichella@yahoo.com','Miskolc','+2400857318','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1993','andy.fisichella@hotmail.com','Miskolc','+9149392233','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1981','prezmek.obama@hotmail.com','Krakow','+9910847846','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1988','miklós.molnár@gmail.com','Barcelona','+7456676206','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1978','attila.ciacka@gmail.com','Miskolc','+6603883338','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1993','mateusz.salamon@gmail.com','Miskolc','+8710801614','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1972','pál.beöthy@gmail.com','Barcelona','+6027190338','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1971','pál.molnár@hotmail.com','Barcelona','+9726267486','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1968','pál.monoczki@hotmail.com','Barcelona','+6957093208','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1974','john.lebron@hotmail.com','Krakow','+2618669837','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1993','attila.beöthy@yahoo.com','Krakow','+5057716114','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1970','prezmek.ciacka@yahoo.com','Budapest','+720991070','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1980','andy.salamon@hotmail.com','Barcelona','+455802598','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1975','andy.obama@hotmail.com','Miskolc','+6055428767','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1979','matthew.beöthy@yahoo.com','Budapest','+2368695649','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1967','andy.hamilton@gmail.com','Barcelona','+5722359964','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1965','sándor.salamon@gmail.com','Budapest','+5298731795','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1973','giancarlo.ciacka@gmail.com','Barcelona','+5409368157','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1991','tim.lebron@hotmail.com','Miskolc','+7435758825','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1984','tamás.szodoray@hotmail.com','Krakow','+5188163627','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1987','tamás.monoczki@yahoo.com','Krakow','+927690828','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1979','tim.hamilton@yahoo.com','Barcelona','+3205257708','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1987','andy.salamon@gmail.com','Barcelona','+7655084714','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1989','pál.carrey@hotmail.com','New York','+6028377784','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1980','pál.szodoray@hotmail.com','Krakow','+5779335130','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1992','tim.lebron@gmail.com','New York','+3039794129','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1978','andy.ciacka@yahoo.com','Budapest','+5261791342','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1980','john.monoczki@gmail.com','New York','+3447088521','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1969','pál.salamon@gmail.com','Krakow','+4811103944','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1968','attila.tompa@yahoo.com','Budapest','+9983880807','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1990','tamás.hamilton@yahoo.com','New York','+5948837744','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1987','andy.lebron@gmail.com','Miskolc','+7618482482','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1984','giancarlo.beöthy@yahoo.com','Barcelona','+758619601','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1972','matthew.fisichella@yahoo.com','Barcelona','+791779400','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1973','tim.carrey@hotmail.com','Miskolc','+8320455475','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1992','sándor.monoczki@gmail.com','Krakow','+6012778706','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1971','sándor.obama@yahoo.com','Budapest','+8888371605','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1973','tim.ostafil@hotmail.com','Miskolc','+628205650','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1981','prezmek.tompa@yahoo.com','Krakow','+7216021749','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1985','andy.salamon@hotmail.com','Budapest','+2970780544','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1991','tamás.ostafil@gmail.com','Budapest','+1791277078','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1989','andy.salamon@yahoo.com','Budapest','+4325341712','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1993','tamás.lebron@yahoo.com','Barcelona','+1666674762','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1969','tim.lebron@gmail.com','Budapest','+1988468628','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1992','pál.molnár@yahoo.com','New York','+8073316313','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1987','attila.hamilton@gmail.com','New York','+4033253864','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1976','sándor.fisichella@hotmail.com','Miskolc','+2453787593','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1970','tamás.ostafil@yahoo.com','Barcelona','+9203692707','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1979','giancarlo.monoczki@hotmail.com','Miskolc','+6573245230','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1965','prezmek.obama@yahoo.com','Barcelona','+6930733516','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1980','tim.szodoray@hotmail.com','New York','+7014283768','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1979','prezmek.ciacka@yahoo.com','Barcelona','+4240205857','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1975','miklós.obama@hotmail.com','Miskolc','+7048088394','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1986','sándor.szodoray@gmail.com','Barcelona','+5439104361','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1967','andy.ostafil@gmail.com','Barcelona','+7446932715','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1990','prezmek.carrey@gmail.com','Miskolc','+1732501867','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1990','john.molnár@hotmail.com','Krakow','+9854155329','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1990','dániel.monoczki@yahoo.com','Barcelona','+9731059165','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1965','mateusz.obama@yahoo.com','Budapest','+8140230192','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1969','pál.salamon@hotmail.com','Budapest','+2714980542','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1973','mateusz.lebron@gmail.com','Barcelona','+7434855016','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1978','sándor.hamilton@hotmail.com','Barcelona','+6461042870','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1976','tim.szodoray@hotmail.com','New York','+9813491400','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1993','mateusz.salamon@gmail.com','New York','+8431097570','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1979','sándor.hamilton@yahoo.com','Budapest','+769311626','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1987','pál.carrey@hotmail.com','Miskolc','+7530381390','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1972','attila.szodoray@yahoo.com','New York','+9058254564','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1969','giancarlo.molnár@yahoo.com','Barcelona','+6217135580','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1986','pál.tompa@hotmail.com','Krakow','+8594727588','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1968','john.fisichella@hotmail.com','Budapest','+6460784661','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1981','sándor.molnár@gmail.com','Krakow','+1411020902','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1990','john.ciacka@yahoo.com','Barcelona','+4602436780','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1981','matthew.monoczki@yahoo.com','Budapest','+2742108536','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1995','pál.szodoray@hotmail.com','Krakow','+5245774309','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1980','miklós.fisichella@yahoo.com','Krakow','+8867520071','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1986','pál.beöthy@gmail.com','Miskolc','+670967976','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1973','dániel.lebron@yahoo.com','Krakow','+392741875','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1995','matthew.salamon@hotmail.com','New York','+6261458616','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1969','miklós.szodoray@yahoo.com','Budapest','+5245003911','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1968','john.beöthy@yahoo.com','New York','+7677215003','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1989','tamás.lebron@yahoo.com','Miskolc','+7554149279','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1979','sándor.salamon@gmail.com','Budapest','+5223942840','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1989','pál.carrey@hotmail.com','Budapest','+1631318743','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1989','miklós.szodoray@yahoo.com','New York','+8778524770','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1970','giancarlo.szodoray@hotmail.com','Miskolc','+7153214438','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1970','tamás.ciacka@gmail.com','New York','+1646151254','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1995','john.ostafil@gmail.com','Budapest','+5199962875','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1966','pál.szodoray@gmail.com','Krakow','+2659131178','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1969','prezmek.ciacka@gmail.com','Miskolc','+8406409860','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1971','matthew.szodoray@gmail.com','Miskolc','+6158842932','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1973','mateusz.fisichella@gmail.com','Budapest','+4633690262','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1990','mateusz.lebron@hotmail.com','Miskolc','+6490231513','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1972','miklós.molnár@gmail.com','Budapest','+6546579234','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1979','prezmek.tompa@hotmail.com','Krakow','+3927858594','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1967','dániel.szodoray@gmail.com','Budapest','+7456154372','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1990','tim.molnár@gmail.com','Barcelona','+1935224132','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1982','dániel.carrey@yahoo.com','Krakow','+5115586931','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1986','john.beöthy@hotmail.com','Budapest','+7962378172','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1966','pál.monoczki@yahoo.com','Barcelona','+5164613117','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1994','john.tompa@gmail.com','Budapest','+2048143971','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1967','sándor.tompa@yahoo.com','Budapest','+1099863721','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1977','matthew.fisichella@gmail.com','New York','+672181664','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1982','dániel.ostafil@hotmail.com','Barcelona','+9990063438','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1968','matthew.carrey@gmail.com','Krakow','+7240044115','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1987','tim.lebron@yahoo.com','Barcelona','+1472669116','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1981','mateusz.molnár@hotmail.com','Krakow','+2922982813','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1986','tamás.ostafil@hotmail.com','New York','+5959154114','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1972','dániel.szodoray@yahoo.com','Budapest','+6206965970','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1978','miklós.fisichella@hotmail.com','New York','+8645054560','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1969','matthew.ciacka@yahoo.com','Krakow','+1088913061','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1978','andy.molnár@yahoo.com','Barcelona','+5832626722','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1985','prezmek.szodoray@hotmail.com','New York','+3579264454','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1974','prezmek.beöthy@hotmail.com','Barcelona','+8784956907','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1982','tamás.carrey@yahoo.com','Budapest','+7066500010','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1968','matthew.ciacka@hotmail.com','Barcelona','+5552584273','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1977','dániel.fisichella@gmail.com','Miskolc','+1655921847','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1994','matthew.beöthy@hotmail.com','Budapest','+8458671882','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1990','andy.molnár@hotmail.com','Budapest','+8639718488','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1975','tim.salamon@gmail.com','Miskolc','+844346008','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1990','mateusz.fisichella@hotmail.com','Miskolc','+13870234','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1987','miklós.lebron@hotmail.com','New York','+6627337228','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1990','miklós.salamon@gmail.com','Budapest','+2959044408','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1995','tamás.lebron@gmail.com','New York','+9984682605','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1966','matthew.beöthy@yahoo.com','Budapest','+9374003966','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1968','mateusz.monoczki@yahoo.com','Barcelona','+5739488186','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1994','tamás.fisichella@hotmail.com','Miskolc','+1753664033','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1986','john.lebron@yahoo.com','Barcelona','+4529766448','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1995','matthew.hamilton@yahoo.com','Budapest','+2870720758','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1970','matthew.hamilton@yahoo.com','Krakow','+1046461202','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1968','tim.beöthy@gmail.com','Barcelona','+1521268291','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1979','andy.hamilton@yahoo.com','New York','+5358753723','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1984','john.tompa@gmail.com','Budapest','+3277518239','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1967','sándor.tompa@gmail.com','Barcelona','+5850441','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1987','tim.beöthy@yahoo.com','Miskolc','+8560979394','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1995','miklós.ciacka@hotmail.com','Miskolc','+9733748667','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1990','attila.beöthy@yahoo.com','Miskolc','+9133354083','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1967','mateusz.salamon@gmail.com','Barcelona','+6064558174','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1979','matthew.salamon@yahoo.com','Miskolc','+5737708474','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1972','john.beöthy@yahoo.com','Krakow','+3635159845','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1986','andy.ostafil@gmail.com','Krakow','+1428845427','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1971','prezmek.monoczki@yahoo.com','Miskolc','+9515301398','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1980','attila.carrey@hotmail.com','Barcelona','+8943528285','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1989','pál.ostafil@hotmail.com','Miskolc','+3446037734','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1994','giancarlo.ostafil@hotmail.com','Budapest','+6836247716','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1977','mateusz.monoczki@gmail.com','Budapest','+4870970459','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1991','matthew.tompa@gmail.com','Krakow','+1286658460','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1990','andy.ciacka@hotmail.com','Budapest','+1783574178','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1995','dániel.ostafil@gmail.com','New York','+438896579','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1987','sándor.lebron@hotmail.com','Miskolc','+4375784026','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1966','dániel.beöthy@hotmail.com','Budapest','+724627245','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1971','tim.obama@gmail.com','Barcelona','+800685539','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1977','john.carrey@yahoo.com','New York','+9969143686','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1984','andy.beöthy@gmail.com','Krakow','+3982210310','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1967','matthew.lebron@hotmail.com','Krakow','+2050721648','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1990','andy.szodoray@yahoo.com','New York','+1216544655','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1969','giancarlo.carrey@yahoo.com','Miskolc','+2075941849','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1980','giancarlo.hamilton@yahoo.com','Barcelona','+6898218096','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1968','andy.szodoray@gmail.com','Miskolc','+3213944845','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1976','mateusz.lebron@hotmail.com','Barcelona','+206895219','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1988','andy.salamon@yahoo.com','Barcelona','+2000768953','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1975','john.obama@gmail.com','Barcelona','+9609406224','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1984','pál.szodoray@yahoo.com','Budapest','+5221730899','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1982','mateusz.hamilton@gmail.com','Barcelona','+8355837262','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1966','tamás.lebron@hotmail.com','Barcelona','+5755325837','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1993','andy.hamilton@hotmail.com','New York','+2634371692','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1986','andy.beöthy@hotmail.com','Miskolc','+4456428563','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1970','dániel.tompa@hotmail.com','Miskolc','+4431512486','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1982','giancarlo.monoczki@hotmail.com','Krakow','+232519267','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1994','mateusz.monoczki@yahoo.com','Barcelona','+553767280','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1969','andy.ostafil@gmail.com','Miskolc','+1115650202','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1971','giancarlo.ciacka@yahoo.com','Krakow','+979446613','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1987','attila.salamon@yahoo.com','Krakow','+8024086531','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1995','mateusz.ostafil@yahoo.com','Krakow','+4191411882','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1966','prezmek.molnár@hotmail.com','Krakow','+2349263089','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1984','prezmek.lebron@yahoo.com','Miskolc','+4467542962','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1973','sándor.hamilton@gmail.com','Barcelona','+7421449858','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1967','sándor.monoczki@gmail.com','Budapest','+2799337995','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1985','john.beöthy@hotmail.com','Barcelona','+409491980','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1969','mateusz.szodoray@yahoo.com','New York','+272951849','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1965','attila.ciacka@hotmail.com','Budapest','+4735269734','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1965','matthew.ostafil@yahoo.com','Budapest','+6515814726','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1988','mateusz.beöthy@hotmail.com','Barcelona','+7910756546','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1993','dániel.hamilton@hotmail.com','Miskolc','+9409979742','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1987','miklós.tompa@yahoo.com','Budapest','+7647809594','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1993','tamás.hamilton@hotmail.com','Miskolc','+6751518998','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1966','john.fisichella@gmail.com','New York','+5502784482','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1995','andy.ostafil@hotmail.com','Barcelona','+1830577422','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1972','john.beöthy@hotmail.com','Miskolc','+6189392381','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1976','dániel.ciacka@yahoo.com','Barcelona','+2808172188','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1967','miklós.lebron@yahoo.com','New York','+7140476115','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1986','miklós.ostafil@yahoo.com','Barcelona','+3295878262','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1983','mateusz.ostafil@yahoo.com','Miskolc','+5312718787','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1978','prezmek.salamon@yahoo.com','Budapest','+2731872445','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1989','mateusz.carrey@yahoo.com','Budapest','+6607388288','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1988','pál.ciacka@gmail.com','New York','+5427974523','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1972','pál.ciacka@hotmail.com','Krakow','+2063916007','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1980','sándor.obama@yahoo.com','Budapest','+131204724','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1974','prezmek.lebron@yahoo.com','Barcelona','+6024867829','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1967','dániel.monoczki@hotmail.com','Miskolc','+5190897847','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1972','attila.ostafil@yahoo.com','Miskolc','+2353344926','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1972','sándor.tompa@hotmail.com','Barcelona','+5037866573','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1969','miklós.fisichella@yahoo.com','Krakow','+7095853701','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1993','andy.obama@yahoo.com','Barcelona','+1824263258','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1973','andy.molnár@yahoo.com','New York','+5973825956','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1985','giancarlo.tompa@yahoo.com','New York','+5268549332','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1976','tamás.fisichella@gmail.com','New York','+7151292994','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1971','miklós.szodoray@yahoo.com','New York','+2583474075','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1977','tim.beöthy@hotmail.com','Budapest','+7171614500','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1966','andy.lebron@hotmail.com','Barcelona','+9099287616','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1970','john.lebron@hotmail.com','Barcelona','+1040928203','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1967','sándor.ciacka@gmail.com','Budapest','+5136580547','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1992','attila.molnár@gmail.com','New York','+6363981320','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1989','tamás.lebron@hotmail.com','Krakow','+7089836676','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1980','matthew.monoczki@gmail.com','New York','+9323605588','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1979','dániel.obama@yahoo.com','Miskolc','+1084613380','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1977','giancarlo.tompa@hotmail.com','Barcelona','+2925196011','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1984','john.szodoray@hotmail.com','Krakow','+8274126405','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1992','attila.ciacka@gmail.com','Budapest','+825541118','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1986','john.carrey@yahoo.com','Barcelona','+5869081498','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1970','giancarlo.szodoray@yahoo.com','Budapest','+7503806610','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1983','pál.szodoray@yahoo.com','New York','+2081860890','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1968','matthew.molnár@hotmail.com','New York','+675771452','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1975','tim.carrey@yahoo.com','Miskolc','+8131606646','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1971','miklós.obama@yahoo.com','Miskolc','+7901250250','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1982','sándor.lebron@hotmail.com','Budapest','+2152986190','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1984','sándor.fisichella@gmail.com','Barcelona','+2832073742','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1969','andy.obama@gmail.com','Krakow','+1043500268','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1980','pál.hamilton@hotmail.com','Budapest','+8709848190','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1971','sándor.ciacka@yahoo.com','Miskolc','+5232271248','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1974','sándor.fisichella@hotmail.com','New York','+5257564041','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1981','attila.beöthy@hotmail.com','Budapest','+5743115840','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1988','pál.molnár@gmail.com','Barcelona','+2084905772','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1995','dániel.molnár@hotmail.com','New York','+6910566272','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1984','john.beöthy@gmail.com','New York','+2913358999','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1982','pál.molnár@hotmail.com','Krakow','+722379687','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1969','sándor.tompa@yahoo.com','New York','+4679499252','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1994','sándor.obama@yahoo.com','Miskolc','+5081590986','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1994','tamás.salamon@yahoo.com','Barcelona','+1571289189','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1993','matthew.monoczki@gmail.com','Krakow','+1811242217','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1985','tim.salamon@hotmail.com','Miskolc','+8183854492','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1973','john.carrey@gmail.com','Miskolc','+3443043428','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1972','pál.ciacka@gmail.com','Budapest','+5921893364','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1977','andy.tompa@hotmail.com','New York','+7252776288','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1967','attila.szodoray@hotmail.com','Krakow','+7642776557','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1985','tim.hamilton@yahoo.com','Barcelona','+559299348','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1983','prezmek.tompa@gmail.com','Budapest','+565459978','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1982','john.obama@yahoo.com','Krakow','+9746513290','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1965','miklós.ciacka@gmail.com','Barcelona','+2604399346','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1994','attila.beöthy@hotmail.com','Budapest','+4898295119','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1992','prezmek.molnár@yahoo.com','Miskolc','+8961489341','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1978','mateusz.monoczki@gmail.com','Krakow','+8712165064','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1994','sándor.beöthy@gmail.com','Miskolc','+7825635866','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1983','sándor.ostafil@hotmail.com','Miskolc','+5099222336','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1977','mateusz.molnár@gmail.com','Barcelona','+6906204082','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1972','dániel.ostafil@hotmail.com','New York','+2831381358','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1994','miklós.salamon@gmail.com','Budapest','+1943524308','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1966','john.monoczki@yahoo.com','Budapest','+2057992190','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1967','tamás.ciacka@hotmail.com','Budapest','+9101124509','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1981','matthew.szodoray@gmail.com','Budapest','+6220406474','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1974','prezmek.obama@gmail.com','Miskolc','+3421106888','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1989','tim.monoczki@gmail.com','Barcelona','+6364044205','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1970','giancarlo.beöthy@yahoo.com','Krakow','+134441314','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1973','dániel.ostafil@hotmail.com','Krakow','+1623382379','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1976','dániel.obama@gmail.com','New York','+9238918389','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1970','john.molnár@gmail.com','Krakow','+3666811770','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1972','dániel.monoczki@gmail.com','Krakow','+6310541524','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1969','giancarlo.ostafil@hotmail.com','Miskolc','+7025495344','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1985','giancarlo.molnár@hotmail.com','Budapest','+6031459309','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1977','miklós.ostafil@yahoo.com','Krakow','+749357031','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1982','mateusz.lebron@gmail.com','Barcelona','+6120278334','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1972','pál.tompa@gmail.com','Barcelona','+8591123680','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1979','matthew.lebron@gmail.com','Budapest','+9504802733','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1986','john.hamilton@gmail.com','Budapest','+5373923508','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1971','dániel.ciacka@yahoo.com','Budapest','+5588756479','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1985','sándor.salamon@hotmail.com','Miskolc','+695635034','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1989','matthew.hamilton@gmail.com','Miskolc','+3127709720','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1969','mateusz.lebron@gmail.com','New York','+9725485588','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1985','john.ciacka@hotmail.com','Budapest','+9517496258','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1975','mateusz.beöthy@gmail.com','Krakow','+3240170128','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1981','tim.obama@hotmail.com','Krakow','+9549016279','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1979','tamás.ciacka@yahoo.com','Budapest','+8487200664','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1970','dániel.molnár@gmail.com','Barcelona','+7557666451','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1985','andy.szodoray@yahoo.com','Budapest','+3499662004','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1969','sándor.szodoray@hotmail.com','Budapest','+477710350','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1984','mateusz.carrey@gmail.com','Barcelona','+6167192531','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1973','tamás.fisichella@gmail.com','Krakow','+2470842032','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1990','prezmek.lebron@yahoo.com','Krakow','+7916791120','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1972','pál.beöthy@yahoo.com','Budapest','+5296601394','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1972','pál.obama@yahoo.com','Miskolc','+5640216911','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1981','sándor.ciacka@hotmail.com','Budapest','+7765423938','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1995','tim.szodoray@gmail.com','New York','+6896309972','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1992','john.ostafil@hotmail.com','Miskolc','+3802621672','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1965','attila.beöthy@yahoo.com','New York','+8691724441','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1980','andy.tompa@hotmail.com','Barcelona','+8718658285','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1972','tamás.hamilton@gmail.com','Miskolc','+9818954934','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1994','john.fisichella@hotmail.com','Krakow','+2786365888','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1986','mateusz.obama@hotmail.com','Krakow','+9464312122','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1965','giancarlo.salamon@yahoo.com','Miskolc','+1287407449','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1975','andy.hamilton@yahoo.com','New York','+4399927520','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1966','pál.tompa@yahoo.com','Budapest','+5790986412','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1966','sándor.ostafil@yahoo.com','Krakow','+7973600420','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1985','dániel.carrey@yahoo.com','Barcelona','+193314704','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1991','dániel.ostafil@gmail.com','Budapest','+2250674586','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1978','pál.molnár@gmail.com','Budapest','+4731670803','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1967','pál.lebron@gmail.com','Krakow','+6577509004','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1966','matthew.beöthy@hotmail.com','Budapest','+4358105390','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1976','andy.szodoray@yahoo.com','Budapest','+232740024','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1974','tamás.ostafil@gmail.com','Barcelona','+4811941436','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1969','attila.molnár@gmail.com','Budapest','+1126519116','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1984','john.fisichella@yahoo.com','New York','+9705332962','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1967','giancarlo.hamilton@gmail.com','New York','+930790208','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1989','mateusz.molnár@yahoo.com','Budapest','+8248234380','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1968','matthew.fisichella@yahoo.com','Miskolc','+695600654','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1967','dániel.szodoray@yahoo.com','Barcelona','+1785911630','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1970','pál.hamilton@yahoo.com','Barcelona','+7868833777','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1986','andy.ciacka@gmail.com','Budapest','+9289830867','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1989','attila.ciacka@hotmail.com','Krakow','+8107095670','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1986','tamás.lebron@yahoo.com','Miskolc','+2825914515','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1990','dániel.carrey@hotmail.com','Miskolc','+7695731525','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1965','sándor.monoczki@hotmail.com','Krakow','+1692228325','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1992','giancarlo.obama@yahoo.com','New York','+8716995577','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1981','pál.ciacka@yahoo.com','Miskolc','+8130329326','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1991','giancarlo.carrey@gmail.com','Krakow','+7528855482','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1987','prezmek.beöthy@gmail.com','Miskolc','+8835073196','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1973','pál.beöthy@gmail.com','Miskolc','+6676139205','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1974','andy.fisichella@gmail.com','Krakow','+4075684234','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1992','tim.monoczki@gmail.com','Barcelona','+1874254818','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1994','dániel.beöthy@hotmail.com','Barcelona','+7593357483','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1983','andy.beöthy@yahoo.com','New York','+5783983456','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1971','matthew.obama@yahoo.com','Krakow','+8906489742','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1968','matthew.carrey@yahoo.com','Krakow','+1123373040','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1975','pál.carrey@yahoo.com','Budapest','+314720145','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1982','attila.hamilton@hotmail.com','New York','+9061068555','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1988','attila.hamilton@gmail.com','New York','+6758138615','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1992','tamás.carrey@gmail.com','Barcelona','+9521627584','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1989','john.beöthy@hotmail.com','New York','+2946433482','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1966','tamás.monoczki@hotmail.com','Barcelona','+5723406982','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1993','tim.obama@yahoo.com','Barcelona','+1733110117','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1967','dániel.fisichella@gmail.com','Krakow','+3763669210','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1966','john.obama@gmail.com','New York','+3383513182','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1979','tim.salamon@hotmail.com','Miskolc','+9229075250','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1975','andy.ciacka@gmail.com','Barcelona','+7866524203','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1975','mateusz.fisichella@hotmail.com','Miskolc','+8461142534','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1972','andy.tompa@yahoo.com','Budapest','+4336844839','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1983','andy.ciacka@hotmail.com','New York','+3980622','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1993','tim.ciacka@yahoo.com','Krakow','+2018984541','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1986','sándor.szodoray@hotmail.com','New York','+6516342390','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1987','dániel.monoczki@yahoo.com','Barcelona','+4925625660','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1977','tamás.carrey@gmail.com','Miskolc','+2038748223','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1991','tamás.molnár@hotmail.com','Krakow','+9293041173','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1990','prezmek.obama@hotmail.com','Budapest','+36278875','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1992','miklós.carrey@hotmail.com','Barcelona','+6713769743','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1988','attila.carrey@yahoo.com','Barcelona','+5086728161','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1983','matthew.beöthy@yahoo.com','New York','+6439765782','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1986','andy.ostafil@yahoo.com','Budapest','+3567673646','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1978','andy.obama@yahoo.com','Krakow','+1885929918','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1995','dániel.fisichella@gmail.com','Miskolc','+7877688894','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1982','andy.ostafil@yahoo.com','Budapest','+8154452935','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1975','john.lebron@gmail.com','Barcelona','+5368648941','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1973','tamás.lebron@hotmail.com','Barcelona','+9212223031','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1967','sándor.fisichella@yahoo.com','New York','+4969579954','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1975','giancarlo.salamon@gmail.com','Budapest','+7366621323','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1977','tim.molnár@gmail.com','Barcelona','+6148067289','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1966','tamás.hamilton@hotmail.com','New York','+5149450612','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1974','prezmek.monoczki@hotmail.com','Budapest','+9999980766','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1988','tamás.hamilton@hotmail.com','Budapest','+5999718339','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1981','miklós.salamon@hotmail.com','Barcelona','+4554996305','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1989','prezmek.beöthy@yahoo.com','Budapest','+1499470115','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1990','tamás.monoczki@gmail.com','Miskolc','+7588323384','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1981','dániel.obama@yahoo.com','Miskolc','+7245256103','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1989','miklós.salamon@gmail.com','New York','+6348235026','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1986','pál.ciacka@gmail.com','Barcelona','+8263006987','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1989','attila.szodoray@yahoo.com','Krakow','+8304908296','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1967','pál.ciacka@gmail.com','New York','+7297760713','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1976','tim.ostafil@yahoo.com','Budapest','+1932364141','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1992','john.hamilton@gmail.com','Budapest','+5392692823','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1994','prezmek.fisichella@hotmail.com','Miskolc','+6637447798','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1980','giancarlo.szodoray@hotmail.com','Barcelona','+7857028702','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1967','prezmek.tompa@gmail.com','New York','+4517260192','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1981','giancarlo.salamon@gmail.com','Krakow','+4751777204','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1985','matthew.lebron@gmail.com','Miskolc','+2477888211','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1979','sándor.lebron@hotmail.com','New York','+9199495313','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1972','giancarlo.tompa@hotmail.com','New York','+6403251090','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1969','mateusz.lebron@yahoo.com','New York','+1394639029','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1982','pál.obama@yahoo.com','Barcelona','+7959682014','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1975','prezmek.salamon@yahoo.com','Krakow','+4520092456','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1980','mateusz.beöthy@yahoo.com','Budapest','+6539239330','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1981','miklós.hamilton@hotmail.com','Miskolc','+4486323351','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1995','mateusz.salamon@gmail.com','Budapest','+1284436318','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1981','attila.salamon@hotmail.com','Barcelona','+9795405846','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1970','mateusz.molnár@gmail.com','Krakow','+9375039978','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1977','dániel.ciacka@yahoo.com','Budapest','+4019616483','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1984','tim.molnár@yahoo.com','Barcelona','+4696262570','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1968','dániel.carrey@hotmail.com','Budapest','+1618775613','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1967','mateusz.carrey@gmail.com','Krakow','+380556385','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1965','miklós.monoczki@hotmail.com','Krakow','+5284030477','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1972','attila.monoczki@yahoo.com','Barcelona','+976168196','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1970','sándor.monoczki@gmail.com','Budapest','+5279889953','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1967','sándor.beöthy@yahoo.com','Barcelona','+9566254990','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1983','andy.fisichella@hotmail.com','New York','+844869795','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1969','mateusz.carrey@gmail.com','Krakow','+6630239819','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1966','andy.szodoray@yahoo.com','New York','+6917881855','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1973','andy.hamilton@hotmail.com','Krakow','+5916631435','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1974','giancarlo.molnár@hotmail.com','Budapest','+4765839373','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1977','miklós.beöthy@gmail.com','New York','+9235811704','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1972','john.szodoray@hotmail.com','Budapest','+5383276989','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1982','prezmek.lebron@yahoo.com','Budapest','+1543991767','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1973','tamás.monoczki@yahoo.com','New York','+7256596079','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1987','miklós.beöthy@gmail.com','New York','+9661199900','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1969','miklós.ciacka@yahoo.com','New York','+251092724','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1982','tim.fisichella@hotmail.com','Miskolc','+1520791657','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1979','miklós.salamon@gmail.com','Budapest','+4328142021','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1983','tim.salamon@gmail.com','Miskolc','+4419515542','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1980','sándor.ostafil@hotmail.com','Krakow','+1229802872','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1973','matthew.beöthy@gmail.com','Miskolc','+7780349905','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1976','dániel.obama@hotmail.com','Barcelona','+5099768987','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1966','prezmek.lebron@yahoo.com','New York','+1459062745','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1968','miklós.beöthy@hotmail.com','New York','+7156102212','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1989','tim.tompa@hotmail.com','Krakow','+6186837968','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1983','andy.lebron@hotmail.com','Miskolc','+157330743','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1973','tamás.molnár@yahoo.com','Miskolc','+5291484949','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1982','prezmek.ciacka@hotmail.com','Barcelona','+9833346619','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1985','andy.fisichella@hotmail.com','Barcelona','+2710797941','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1986','matthew.fisichella@hotmail.com','Krakow','+5096435480','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1990','pál.fisichella@gmail.com','New York','+3243389319','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1988','mateusz.hamilton@yahoo.com','Miskolc','+3723579660','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1990','matthew.lebron@yahoo.com','Krakow','+6497436022','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1988','prezmek.monoczki@yahoo.com','Miskolc','+2676866315','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1967','john.hamilton@yahoo.com','Miskolc','+8526280683','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1989','tamás.beöthy@yahoo.com','Miskolc','+1004073254','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1980','mateusz.hamilton@gmail.com','Barcelona','+47561728','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1965','sándor.carrey@gmail.com','Budapest','+6170904377','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1978','mateusz.fisichella@yahoo.com','Krakow','+686319733','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1967','pál.tompa@yahoo.com','Barcelona','+808655441','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1983','tim.hamilton@gmail.com','New York','+8444822392','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1972','prezmek.monoczki@yahoo.com','New York','+8827101533','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1989','dániel.hamilton@gmail.com','Krakow','+1327346009','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1994','sándor.ostafil@yahoo.com','Budapest','+8123921344','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1974','mateusz.obama@yahoo.com','New York','+2534945734','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1986','sándor.molnár@yahoo.com','Miskolc','+5267377785','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1995','prezmek.beöthy@gmail.com','Krakow','+842088852','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1992','matthew.salamon@yahoo.com','Barcelona','+8076826329','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1995','dániel.molnár@yahoo.com','New York','+3085828771','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1992','pál.salamon@gmail.com','Budapest','+3646698143','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1994','tamás.lebron@yahoo.com','New York','+6140987765','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1987','attila.tompa@hotmail.com','Miskolc','+7880721418','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1975','pál.ostafil@hotmail.com','Miskolc','+3516324950','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1973','andy.hamilton@gmail.com','New York','+689154514','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1986','john.ciacka@yahoo.com','Budapest','+414849569','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1974','matthew.lebron@hotmail.com','Miskolc','+735170086','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1977','miklós.szodoray@hotmail.com','Budapest','+8857009542','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1979','dániel.hamilton@gmail.com','Miskolc','+5650018794','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1965','mateusz.ostafil@gmail.com','New York','+674704745','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1965','mateusz.obama@yahoo.com','Barcelona','+5809976763','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1978','andy.tompa@gmail.com','Budapest','+5805857964','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1990','tamás.tompa@yahoo.com','New York','+2168748652','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1968','dániel.tompa@yahoo.com','Krakow','+1068623269','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1993','andy.monoczki@gmail.com','New York','+1482636490','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1985','giancarlo.salamon@gmail.com','Budapest','+991131988','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1982','pál.monoczki@gmail.com','Miskolc','+7608580940','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1973','mateusz.beöthy@hotmail.com','Budapest','+4917131300','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1987','mateusz.hamilton@gmail.com','Miskolc','+4662875106','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1984','matthew.lebron@gmail.com','Miskolc','+5018003262','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1973','tamás.lebron@gmail.com','Budapest','+8503253513','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1989','pál.beöthy@hotmail.com','New York','+4057830608','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1990','john.carrey@gmail.com','Barcelona','+9843403760','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1983','andy.tompa@yahoo.com','Barcelona','+3239559318','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1965','pál.fisichella@gmail.com','Barcelona','+2301612459','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1972','mateusz.obama@gmail.com','Krakow','+237798803','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1982','attila.obama@hotmail.com','Krakow','+8518485055','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1995','giancarlo.molnár@yahoo.com','Budapest','+8603065297','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1991','john.ciacka@yahoo.com','New York','+8212087985','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1971','andy.obama@gmail.com','Barcelona','+6329480912','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1987','attila.ciacka@hotmail.com','Krakow','+5190397640','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1984','miklós.carrey@yahoo.com','Barcelona','+7832189282','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1986','john.lebron@hotmail.com','Miskolc','+9469092541','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1970','sándor.hamilton@gmail.com','Budapest','+5994148819','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1967','matthew.monoczki@yahoo.com','Miskolc','+5179989500','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1987','matthew.ostafil@gmail.com','New York','+4053735166','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1993','mateusz.hamilton@yahoo.com','Barcelona','+3885225112','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1972','tamás.tompa@hotmail.com','Budapest','+3911832625','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1981','tamás.salamon@hotmail.com','Miskolc','+7383403706','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1975','dániel.carrey@gmail.com','Krakow','+4232349533','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1991','sándor.tompa@gmail.com','New York','+9192983886','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1972','sándor.tompa@yahoo.com','Barcelona','+1457162637','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1971','prezmek.beöthy@gmail.com','Krakow','+532123132','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1965','attila.lebron@gmail.com','Barcelona','+1997276683','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1983','andy.monoczki@yahoo.com','Budapest','+4436335861','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1976','tamás.ostafil@hotmail.com','Budapest','+2000031770','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1985','tamás.monoczki@gmail.com','Miskolc','+2464567544','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1974','giancarlo.lebron@yahoo.com','Barcelona','+7118893165','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1990','mateusz.molnár@gmail.com','New York','+4978268051','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1970','giancarlo.tompa@yahoo.com','Budapest','+3137413999','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1975','attila.hamilton@gmail.com','New York','+1140628261','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1982','dániel.ciacka@gmail.com','Budapest','+5961763450','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1982','attila.tompa@hotmail.com','Barcelona','+5304490009','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1985','attila.salamon@yahoo.com','Budapest','+8542062292','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1987','sándor.carrey@gmail.com','Budapest','+4406650244','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1971','pál.ciacka@yahoo.com','Krakow','+7118375696','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1970','andy.obama@gmail.com','Budapest','+687587407','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1968','mateusz.fisichella@gmail.com','Krakow','+7471525616','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1994','sándor.lebron@hotmail.com','Krakow','+796450113','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1969','attila.lebron@gmail.com','Krakow','+6271243056','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1985','john.carrey@yahoo.com','Krakow','+8500346185','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1986','matthew.beöthy@yahoo.com','Barcelona','+2308282327','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1979','pál.carrey@yahoo.com','Budapest','+7323463835','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1968','sándor.monoczki@yahoo.com','Budapest','+7499915944','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1991','pál.monoczki@hotmail.com','Barcelona','+2854932083','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1994','sándor.beöthy@yahoo.com','Budapest','+4490056548','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1990','dániel.szodoray@yahoo.com','Barcelona','+6178468117','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1975','mateusz.obama@gmail.com','New York','+712919148','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1989','tamás.molnár@hotmail.com','New York','+7448932817','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1990','giancarlo.hamilton@gmail.com','Miskolc','+1187377468','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1975','pál.monoczki@yahoo.com','Barcelona','+2808803973','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1967','pál.carrey@hotmail.com','Miskolc','+4772802245','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1988','john.molnár@gmail.com','Miskolc','+1228726071','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1980','sándor.ostafil@gmail.com','Miskolc','+1229249101','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1979','sándor.carrey@gmail.com','Budapest','+9844467960','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1991','tim.salamon@yahoo.com','Barcelona','+4277715641','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1984','pál.lebron@yahoo.com','New York','+7886537385','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1972','matthew.hamilton@hotmail.com','Budapest','+3460098248','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1978','andy.monoczki@hotmail.com','Budapest','+3058046391','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1987','tamás.szodoray@yahoo.com','Krakow','+6193726121','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1967','miklós.tompa@yahoo.com','New York','+7538025584','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1994','andy.monoczki@hotmail.com','Miskolc','+5659866438','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1965','giancarlo.hamilton@yahoo.com','Budapest','+9925624419','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1967','tim.tompa@gmail.com','Budapest','+9792758117','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1973','dániel.beöthy@gmail.com','Budapest','+5406277657','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1977','andy.monoczki@hotmail.com','Miskolc','+4911019693','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1976','sándor.carrey@yahoo.com','Budapest','+3430205152','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1987','andy.ciacka@gmail.com','Budapest','+7983595090','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1982','giancarlo.molnár@gmail.com','Krakow','+7896666981','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1978','tim.carrey@gmail.com','Barcelona','+3235838126','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1976','pál.molnár@gmail.com','Miskolc','+6660758534','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1993','giancarlo.lebron@hotmail.com','Krakow','+2184046511','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1979','tim.molnár@yahoo.com','Miskolc','+2082613235','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1979','tim.carrey@hotmail.com','New York','+9964525365','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1993','giancarlo.lebron@hotmail.com','New York','+9684482303','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1984','prezmek.szodoray@yahoo.com','Barcelona','+1431307898','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1992','prezmek.beöthy@gmail.com','New York','+8709046838','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1992','prezmek.carrey@gmail.com','Barcelona','+9712042084','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1969','giancarlo.hamilton@gmail.com','Budapest','+9550269598','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1967','tamás.obama@hotmail.com','Miskolc','+1387276574','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1981','sándor.beöthy@gmail.com','Barcelona','+5351834750','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1982','attila.tompa@yahoo.com','New York','+2236844762','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1995','attila.ostafil@yahoo.com','Barcelona','+8691850490','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1968','prezmek.hamilton@hotmail.com','Krakow','+9529235615','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1976','tim.fisichella@gmail.com','Budapest','+7767314184','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1971','tamás.monoczki@gmail.com','New York','+394517246','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1975','matthew.obama@hotmail.com','Budapest','+5917746910','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1966','mateusz.szodoray@gmail.com','Krakow','+461973322','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1976','matthew.ostafil@yahoo.com','Barcelona','+9128325998','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1978','prezmek.ostafil@gmail.com','Budapest','+9860897959','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1984','andy.szodoray@yahoo.com','Barcelona','+6026891811','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1969','attila.fisichella@yahoo.com','Krakow','+1113473273','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1984','pál.salamon@yahoo.com','New York','+4328972366','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1993','matthew.beöthy@gmail.com','New York','+2134300783','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1977','dániel.szodoray@gmail.com','New York','+1366839316','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1974','pál.salamon@gmail.com','New York','+5803972787','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1988','andy.ostafil@hotmail.com','Miskolc','+527431907','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1977','tim.beöthy@yahoo.com','Barcelona','+4850546131','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1983','prezmek.salamon@hotmail.com','Budapest','+1112854580','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1969','john.ostafil@gmail.com','Barcelona','+7515740028','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1987','john.fisichella@hotmail.com','Miskolc','+7619465897','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1990','tim.beöthy@hotmail.com','Miskolc','+4762765293','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1976','andy.monoczki@hotmail.com','Barcelona','+7663767724','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1986','sándor.szodoray@yahoo.com','New York','+5646517997','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1983','prezmek.molnár@yahoo.com','Krakow','+6820651191','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1985','mateusz.szodoray@gmail.com','Miskolc','+5897066576','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1972','tim.hamilton@hotmail.com','Barcelona','+386474900','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1965','dániel.lebron@gmail.com','Miskolc','+7914596874','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1981','tamás.fisichella@hotmail.com','Barcelona','+7305438469','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1990','mateusz.carrey@yahoo.com','Miskolc','+1828414952','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1979','attila.carrey@gmail.com','Barcelona','+7775566840','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1988','dániel.fisichella@gmail.com','New York','+4495717072','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1984','attila.hamilton@hotmail.com','Budapest','+2290167688','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1990','sándor.obama@yahoo.com','Miskolc','+6793447641','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1979','matthew.ciacka@gmail.com','Miskolc','+4175813628','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1970','prezmek.ciacka@hotmail.com','New York','+8591569289','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1977','prezmek.fisichella@hotmail.com','Krakow','+7299133296','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1990','dániel.ostafil@gmail.com','New York','+8401982236','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1978','dániel.ciacka@gmail.com','Budapest','+265536971','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1978','mateusz.tompa@gmail.com','Budapest','+1713271604','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1979','tamás.ostafil@yahoo.com','Krakow','+3756934276','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1981','andy.monoczki@yahoo.com','Miskolc','+1134285733','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1985','tamás.obama@yahoo.com','New York','+1309345890','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1975','attila.monoczki@hotmail.com','Krakow','+6954083297','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1975','andy.lebron@gmail.com','Miskolc','+5528752431','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1988','miklós.monoczki@hotmail.com','Miskolc','+6070331526','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1975','john.lebron@yahoo.com','New York','+3688096905','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1979','tim.molnár@gmail.com','New York','+930128874','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1995','tamás.fisichella@gmail.com','Barcelona','+6453911308','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1980','andy.monoczki@yahoo.com','Krakow','+6013303418','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1974','dániel.ciacka@gmail.com','Krakow','+6139897342','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1989','tamás.salamon@yahoo.com','Miskolc','+8456737816','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1982','sándor.obama@gmail.com','Miskolc','+4962863356','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1990','john.fisichella@gmail.com','Miskolc','+9092982316','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1992','john.salamon@hotmail.com','New York','+5655569342','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1972','prezmek.obama@gmail.com','Budapest','+5211485387','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1988','tim.hamilton@yahoo.com','Barcelona','+5845371851','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1972','andy.carrey@yahoo.com','Krakow','+1302905164','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1978','miklós.obama@gmail.com','Barcelona','+2803410426','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1966','tim.monoczki@hotmail.com','Miskolc','+9842129198','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1990','attila.tompa@yahoo.com','New York','+7450752993','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1973','giancarlo.molnár@hotmail.com','Barcelona','+9847067515','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1976','andy.carrey@hotmail.com','Miskolc','+7819968615','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1974','attila.molnár@gmail.com','Miskolc','+7267790816','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1988','attila.salamon@gmail.com','Budapest','+3840039039','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1989','tim.monoczki@gmail.com','Miskolc','+1673143345','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1989','pál.tompa@hotmail.com','Barcelona','+1224311014','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1984','mateusz.tompa@yahoo.com','Barcelona','+8291081735','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1982','prezmek.monoczki@yahoo.com','Miskolc','+7958576738','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1965','miklós.obama@yahoo.com','Budapest','+8745702315','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1983','mateusz.ciacka@gmail.com','New York','+3492070839','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1989','tim.tompa@hotmail.com','New York','+6925991482','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1966','miklós.monoczki@hotmail.com','Miskolc','+635145239','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1991','miklós.obama@yahoo.com','Barcelona','+3890856277','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1991','miklós.hamilton@hotmail.com','Krakow','+4698597477','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1973','sándor.ostafil@gmail.com','New York','+7490783973','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1992','sándor.monoczki@yahoo.com','Budapest','+5543311336','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1973','tamás.lebron@yahoo.com','Barcelona','+7607095936','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1987','pál.lebron@hotmail.com','Budapest','+4561671244','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1993','andy.monoczki@gmail.com','New York','+6862882035','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1981','tamás.tompa@gmail.com','Krakow','+5656575977','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1991','tim.salamon@yahoo.com','Budapest','+5875382781','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1979','andy.fisichella@yahoo.com','Miskolc','+5557511874','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1969','attila.fisichella@yahoo.com','Krakow','+2290712944','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1969','matthew.ostafil@yahoo.com','New York','+7088770592','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1974','pál.ciacka@yahoo.com','Budapest','+9660384134','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1980','dániel.beöthy@hotmail.com','Barcelona','+1853468772','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1965','tamás.ostafil@hotmail.com','Budapest','+5168298497','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1991','matthew.ciacka@yahoo.com','New York','+2930329331','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1981','dániel.monoczki@yahoo.com','Miskolc','+1993768570','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1972','giancarlo.szodoray@hotmail.com','Barcelona','+8618069411','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1978','miklós.lebron@yahoo.com','Krakow','+3031396483','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1982','prezmek.fisichella@gmail.com','Miskolc','+337355860','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1968','pál.hamilton@hotmail.com','Barcelona','+7187649236','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1992','matthew.obama@hotmail.com','Barcelona','+4129731738','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1968','matthew.hamilton@gmail.com','Krakow','+8268291305','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1985','sándor.carrey@hotmail.com','Krakow','+2154197779','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1987','mateusz.monoczki@gmail.com','Krakow','+9057555815','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1979','tim.lebron@yahoo.com','Barcelona','+9596930335','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1986','attila.salamon@gmail.com','Krakow','+6606435591','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1994','dániel.obama@yahoo.com','Krakow','+5297891346','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1989','tim.szodoray@hotmail.com','Krakow','+3706957354','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1989','matthew.monoczki@gmail.com','Krakow','+8174051904','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1971','dániel.ostafil@hotmail.com','Miskolc','+3130582802','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1967','giancarlo.szodoray@gmail.com','New York','+6673527748','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1990','attila.tompa@hotmail.com','Barcelona','+4670933525','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1994','tamás.ostafil@gmail.com','New York','+7206355781','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1969','attila.molnár@yahoo.com','Barcelona','+9480641773','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1979','andy.ostafil@yahoo.com','New York','+2588490812','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1995','tamás.monoczki@yahoo.com','Miskolc','+3986598296','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1965','prezmek.ciacka@hotmail.com','New York','+644767328','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1992','tamás.beöthy@gmail.com','New York','+2493193848','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1988','andy.obama@yahoo.com','Miskolc','+2411789187','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1972','giancarlo.salamon@yahoo.com','Budapest','+7573371497','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1989','miklós.obama@hotmail.com','Miskolc','+5463356884','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1969','matthew.obama@gmail.com','Krakow','+220537279','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1967','prezmek.fisichella@hotmail.com','New York','+9391517492','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1982','prezmek.fisichella@hotmail.com','Barcelona','+2203540281','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1973','matthew.lebron@yahoo.com','Barcelona','+2767555721','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1985','tim.monoczki@hotmail.com','Krakow','+4777101575','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1975','attila.lebron@hotmail.com','Budapest','+6358009419','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1968','tamás.lebron@hotmail.com','Budapest','+5683298665','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1983','mateusz.lebron@gmail.com','Barcelona','+6431058428','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1979','mateusz.hamilton@hotmail.com','Krakow','+3212799026','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1972','attila.fisichella@yahoo.com','Miskolc','+2341937013','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1992','john.ostafil@yahoo.com','Budapest','+7508690979','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1993','dániel.salamon@gmail.com','Krakow','+5664072562','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1967','mateusz.ciacka@hotmail.com','Miskolc','+8052718982','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1992','john.ostafil@hotmail.com','Krakow','+3446442401','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1979','prezmek.lebron@yahoo.com','Miskolc','+8854564832','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1995','prezmek.szodoray@hotmail.com','Miskolc','+657606496','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1989','matthew.ciacka@yahoo.com','Barcelona','+1189552219','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1978','tim.lebron@hotmail.com','Budapest','+2417782047','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1967','miklós.beöthy@gmail.com','Barcelona','+2819652747','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1966','pál.beöthy@hotmail.com','Budapest','+2803428420','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1995','mateusz.ostafil@gmail.com','Budapest','+3674094472','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1968','tamás.ostafil@gmail.com','Budapest','+9600980249','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1979','sándor.carrey@yahoo.com','Barcelona','+6863025571','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1984','pál.szodoray@yahoo.com','Miskolc','+7283950998','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1995','giancarlo.hamilton@yahoo.com','Barcelona','+7998169590','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1976','tamás.beöthy@gmail.com','Krakow','+6351443101','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1990','dániel.hamilton@hotmail.com','Barcelona','+4760868806','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1980','sándor.hamilton@hotmail.com','Miskolc','+6615331678','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1973','miklós.hamilton@hotmail.com','Budapest','+7577007862','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1975','mateusz.tompa@gmail.com','Budapest','+5696712252','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1976','tamás.fisichella@gmail.com','Miskolc','+632367461','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1974','sándor.lebron@gmail.com','Miskolc','+22855775','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1984','tim.beöthy@hotmail.com','Barcelona','+121000045','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1982','sándor.tompa@hotmail.com','Miskolc','+3578793561','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1992','dániel.beöthy@hotmail.com','Krakow','+4670302443','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1994','tim.lebron@gmail.com','New York','+603904814','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1995','sándor.tompa@gmail.com','Miskolc','+8153699239','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1989','sándor.tompa@yahoo.com','New York','+4188077789','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1969','tim.szodoray@yahoo.com','Barcelona','+6374276886','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1991','pál.hamilton@yahoo.com','Miskolc','+6356715550','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1986','pál.salamon@gmail.com','Budapest','+7913896287','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1979','sándor.salamon@yahoo.com','Budapest','+7452796984','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1984','mateusz.fisichella@yahoo.com','New York','+5736105838','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1981','prezmek.tompa@yahoo.com','Budapest','+8906414960','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1966','dániel.ciacka@hotmail.com','Budapest','+177894589','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1971','prezmek.hamilton@gmail.com','Budapest','+2878690880','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1971','giancarlo.obama@hotmail.com','Miskolc','+85805040','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1988','john.carrey@yahoo.com','Budapest','+4500880506','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1974','john.obama@yahoo.com','Miskolc','+1042079376','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1977','dániel.carrey@gmail.com','Krakow','+6371213761','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1986','tamás.lebron@gmail.com','Barcelona','+9437403287','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1973','john.szodoray@gmail.com','Krakow','+5927348050','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1969','tamás.tompa@gmail.com','Miskolc','+7258455663','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1986','tim.ostafil@hotmail.com','New York','+2948940801','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1972','sándor.ostafil@gmail.com','Krakow','+7680128306','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1965','andy.obama@gmail.com','Budapest','+6421443566','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1973','matthew.lebron@yahoo.com','New York','+3254222612','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1980','miklós.beöthy@gmail.com','Barcelona','+6701509363','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1971','miklós.salamon@hotmail.com','Miskolc','+6819390930','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1988','attila.ciacka@yahoo.com','New York','+1170021765','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1967','miklós.lebron@yahoo.com','Miskolc','+8958166457','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1978','prezmek.hamilton@yahoo.com','Miskolc','+9305250551','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1978','pál.carrey@yahoo.com','Budapest','+8907983255','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1981','andy.tompa@hotmail.com','New York','+4965047411','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1972','tim.tompa@hotmail.com','New York','+4994654393','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1967','attila.obama@hotmail.com','Barcelona','+145227905','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1971','matthew.obama@gmail.com','Budapest','+4266298894','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1966','miklós.hamilton@yahoo.com','Miskolc','+4044620761','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1995','attila.fisichella@gmail.com','New York','+1207097776','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1995','sándor.hamilton@hotmail.com','Miskolc','+826732039','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1972','mateusz.ciacka@yahoo.com','Budapest','+9893427064','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1993','tamás.monoczki@hotmail.com','Miskolc','+868303606','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1969','andy.hamilton@gmail.com','Barcelona','+7801865094','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1977','mateusz.ciacka@hotmail.com','Barcelona','+3953334594','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1968','john.salamon@yahoo.com','Krakow','+3593735076','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1970','matthew.tompa@hotmail.com','Barcelona','+4372998866','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1972','tim.obama@hotmail.com','New York','+4885405802','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1988','dániel.salamon@gmail.com','Krakow','+3488533503','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1983','mateusz.molnár@hotmail.com','New York','+115682556','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1979','matthew.ciacka@yahoo.com','Barcelona','+8461620368','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1991','attila.obama@yahoo.com','Miskolc','+3984089839','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1967','tim.molnár@gmail.com','Barcelona','+5300248027','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1994','tim.fisichella@gmail.com','New York','+8018515406','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1995','matthew.monoczki@hotmail.com','Budapest','+1798523719','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1990','john.molnár@yahoo.com','Miskolc','+4027395108','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1972','miklós.tompa@hotmail.com','Barcelona','+8201393074','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1971','andy.hamilton@hotmail.com','Barcelona','+3697254643','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1965','attila.obama@yahoo.com','Barcelona','+9491999496','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1969','matthew.beöthy@yahoo.com','New York','+3319140648','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1979','andy.salamon@gmail.com','Barcelona','+272350898','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1974','mateusz.szodoray@yahoo.com','Miskolc','+53749818','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1968','attila.monoczki@gmail.com','Budapest','+8466431445','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1976','prezmek.szodoray@yahoo.com','Barcelona','+4980065906','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1979','dániel.molnár@hotmail.com','Krakow','+1752205764','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1993','attila.monoczki@gmail.com','Krakow','+6466427292','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1976','giancarlo.salamon@yahoo.com','New York','+6176301707','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1995','dániel.carrey@yahoo.com','Budapest','+9975596695','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1970','sándor.hamilton@yahoo.com','Budapest','+204009749','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1975','pál.monoczki@hotmail.com','New York','+9580891313','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1968','sándor.molnár@yahoo.com','New York','+382255558','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1993','mateusz.obama@yahoo.com','Krakow','+5635519490','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1992','andy.lebron@hotmail.com','Budapest','+8591616931','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1974','giancarlo.ciacka@gmail.com','Miskolc','+8405518945','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1971','tim.hamilton@gmail.com','Barcelona','+8299099182','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1969','john.lebron@yahoo.com','Miskolc','+4880402327','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1965','dániel.tompa@gmail.com','Krakow','+1426055811','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1968','sándor.hamilton@yahoo.com','New York','+8434962020','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1989','prezmek.szodoray@hotmail.com','Miskolc','+2671415983','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1986','sándor.carrey@yahoo.com','Miskolc','+881198480','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1990','mateusz.molnár@gmail.com','Krakow','+5824974616','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1974','pál.fisichella@yahoo.com','Barcelona','+814770367','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1968','giancarlo.hamilton@hotmail.com','New York','+8251207198','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1973','mateusz.fisichella@hotmail.com','Miskolc','+9279812547','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1977','mateusz.molnár@hotmail.com','Budapest','+2553439658','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1990','john.fisichella@hotmail.com','New York','+5421015091','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1971','andy.lebron@yahoo.com','Budapest','+9361377762','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1972','sándor.ostafil@hotmail.com','Miskolc','+7636587455','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1967','john.molnár@gmail.com','Budapest','+1981292940','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1965','sándor.ciacka@gmail.com','New York','+6754749183','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1987','tim.hamilton@hotmail.com','Krakow','+3867959786','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1990','john.salamon@gmail.com','Miskolc','+8549975539','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1970','matthew.szodoray@hotmail.com','Barcelona','+3854708295','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1981','giancarlo.ciacka@yahoo.com','Budapest','+241375914','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1976','john.salamon@hotmail.com','New York','+1129958871','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1969','miklós.szodoray@hotmail.com','Budapest','+4932450519','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1969','andy.salamon@yahoo.com','Budapest','+5568807854','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1989','dániel.salamon@hotmail.com','Miskolc','+6894486402','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1987','miklós.hamilton@hotmail.com','New York','+6935809573','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1969','tim.monoczki@gmail.com','Barcelona','+9447192792','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1993','miklós.hamilton@gmail.com','New York','+1705786679','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1990','mateusz.tompa@gmail.com','New York','+5762349608','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1981','tim.hamilton@yahoo.com','Barcelona','+8622528014','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1970','miklós.ostafil@gmail.com','New York','+2714389512','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1977','miklós.carrey@hotmail.com','Miskolc','+9868955211','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1967','tamás.beöthy@yahoo.com','Miskolc','+6163942116','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1986','john.molnár@yahoo.com','New York','+3022686003','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1988','mateusz.fisichella@yahoo.com','Miskolc','+2722739772','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1983','mateusz.lebron@gmail.com','New York','+7448231267','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1974','attila.beöthy@gmail.com','Budapest','+4289298390','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1965','miklós.salamon@yahoo.com','New York','+5063864897','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1991','tim.ciacka@hotmail.com','Barcelona','+1184123496','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1966','dániel.carrey@gmail.com','Barcelona','+4995101034','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1972','sándor.fisichella@hotmail.com','Budapest','+637379713','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1983','miklós.szodoray@hotmail.com','Miskolc','+5764182576','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1978','miklós.monoczki@yahoo.com','Budapest','+7247130165','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1995','tamás.salamon@yahoo.com','Miskolc','+1651836361','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1968','giancarlo.fisichella@hotmail.com','Miskolc','+1576927766','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1973','john.ciacka@hotmail.com','New York','+1243538433','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1981','andy.fisichella@hotmail.com','Krakow','+462399659','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1989','prezmek.lebron@hotmail.com','Budapest','+5525584826','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1970','sándor.szodoray@yahoo.com','Budapest','+7509664675','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1966','matthew.carrey@yahoo.com','Budapest','+5197358257','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1986','attila.szodoray@gmail.com','Krakow','+1264421071','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1995','dániel.obama@hotmail.com','Budapest','+6911851833','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1967','miklós.carrey@yahoo.com','Krakow','+696368447','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1983','john.carrey@yahoo.com','Budapest','+4921796200','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1972','miklós.tompa@yahoo.com','Krakow','+5238853653','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1969','prezmek.tompa@yahoo.com','New York','+9584485865','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1965','sándor.tompa@yahoo.com','New York','+6579249466','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1982','tamás.szodoray@yahoo.com','Miskolc','+802007828','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1983','tim.carrey@gmail.com','Barcelona','+133554278','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1993','pál.fisichella@yahoo.com','New York','+1929723910','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1967','giancarlo.szodoray@gmail.com','Budapest','+6527010538','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1975','attila.beöthy@yahoo.com','Budapest','+431383933','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1976','tim.lebron@hotmail.com','New York','+2717868873','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1970','matthew.ciacka@yahoo.com','Budapest','+6488093963','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1992','pál.ostafil@yahoo.com','Krakow','+8729022106','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1981','matthew.molnár@yahoo.com','Budapest','+4020254777','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1995','sándor.lebron@hotmail.com','Budapest','+3854645043','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1992','dániel.beöthy@hotmail.com','Barcelona','+2951060430','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1966','sándor.fisichella@hotmail.com','Krakow','+6566211724','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1987','tim.monoczki@gmail.com','Budapest','+6608304947','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1995','attila.ciacka@gmail.com','Budapest','+7665398258','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1974','mateusz.szodoray@yahoo.com','Miskolc','+8620351978','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1966','dániel.beöthy@hotmail.com','Miskolc','+7915103900','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1986','attila.hamilton@yahoo.com','Miskolc','+3470994813','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1966','matthew.beöthy@gmail.com','New York','+5649686309','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1972','tim.ostafil@hotmail.com','Budapest','+8411011349','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1987','miklós.lebron@gmail.com','Budapest','+8299327234','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1989','giancarlo.szodoray@yahoo.com','Barcelona','+5707781017','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1974','giancarlo.carrey@gmail.com','Krakow','+716180381','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1968','sándor.szodoray@hotmail.com','Budapest','+4109849636','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1982','tim.hamilton@yahoo.com','Budapest','+9904287049','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1978','dániel.beöthy@hotmail.com','Miskolc','+5885325391','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1969','dániel.carrey@hotmail.com','Miskolc','+1065922514','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1985','prezmek.beöthy@hotmail.com','Barcelona','+1800840108','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1965','pál.obama@yahoo.com','Barcelona','+3489378432','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1979','sándor.fisichella@hotmail.com','Budapest','+860731918','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1980','john.carrey@hotmail.com','New York','+7533396760','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1977','dániel.ciacka@yahoo.com','Krakow','+3529619148','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1965','miklós.szodoray@gmail.com','Krakow','+1811987814','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1995','pál.tompa@yahoo.com','Miskolc','+1114789270','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1994','tim.molnár@yahoo.com','Barcelona','+7733360','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1978','john.molnár@hotmail.com','Budapest','+7996670396','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1979','tim.ciacka@hotmail.com','Krakow','+2648106877','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1979','tamás.tompa@hotmail.com','Miskolc','+3851081307','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1982','tamás.obama@gmail.com','Krakow','+1202068915','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1973','prezmek.salamon@gmail.com','Krakow','+9625801412','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1968','tamás.monoczki@gmail.com','New York','+6272903779','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1982','miklós.ostafil@yahoo.com','New York','+3624127509','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1988','andy.hamilton@gmail.com','Miskolc','+5061770867','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1978','matthew.hamilton@gmail.com','Budapest','+6897653290','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1987','mateusz.fisichella@gmail.com','Budapest','+18890265','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1986','tim.ciacka@yahoo.com','Barcelona','+4465902917','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1973','tim.beöthy@hotmail.com','Budapest','+4316963552','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1975','sándor.monoczki@gmail.com','Krakow','+83620652','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1978','john.obama@hotmail.com','Barcelona','+6863526407','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1974','giancarlo.salamon@gmail.com','Barcelona','+324413195','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1977','sándor.tompa@hotmail.com','Krakow','+6154471099','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1977','attila.lebron@hotmail.com','Krakow','+2670840234','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1972','sándor.lebron@yahoo.com','Miskolc','+3505380542','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1980','pál.molnár@yahoo.com','Budapest','+5909560736','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1966','miklós.molnár@hotmail.com','Barcelona','+4849424966','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1985','tim.ostafil@hotmail.com','Krakow','+2361653483','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1982','sándor.hamilton@hotmail.com','New York','+1414001794','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1990','tamás.fisichella@gmail.com','Krakow','+3073848230','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1974','mateusz.molnár@hotmail.com','Budapest','+4189696631','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1972','tamás.monoczki@gmail.com','Budapest','+7284479763','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1988','mateusz.hamilton@yahoo.com','Krakow','+8230194470','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1975','pál.szodoray@gmail.com','Budapest','+9314920097','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1986','miklós.hamilton@gmail.com','Budapest','+3473679599','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1984','tamás.lebron@yahoo.com','Krakow','+4756036940','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1981','matthew.hamilton@yahoo.com','Krakow','+989186652','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1975','miklós.tompa@hotmail.com','Miskolc','+2135936338','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1981','tim.molnár@gmail.com','New York','+7780560440','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1989','pál.lebron@hotmail.com','New York','+5882604551','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1982','prezmek.monoczki@gmail.com','Miskolc','+86242394','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1985','sándor.monoczki@hotmail.com','New York','+4025516007','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1993','andy.ostafil@yahoo.com','Miskolc','+2809035202','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1972','miklós.fisichella@gmail.com','Barcelona','+2605232458','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1995','giancarlo.lebron@yahoo.com','Budapest','+7044553931','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1988','giancarlo.obama@hotmail.com','Miskolc','+6026381121','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1993','tamás.molnár@gmail.com','New York','+7886526322','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1982','attila.carrey@gmail.com','Krakow','+2400464721','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1988','sándor.lebron@hotmail.com','Krakow','+2319290539','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1995','giancarlo.ostafil@yahoo.com','Budapest','+8349381642','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1982','prezmek.molnár@yahoo.com','New York','+2429753597','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1965','dániel.szodoray@yahoo.com','New York','+8430763353','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1986','pál.monoczki@gmail.com','New York','+3997813094','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1976','mateusz.szodoray@yahoo.com','New York','+6967511460','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1965','miklós.beöthy@hotmail.com','Krakow','+4386943706','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1995','dániel.szodoray@gmail.com','Krakow','+7360630304','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1967','prezmek.salamon@hotmail.com','Krakow','+748108540','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1967','giancarlo.salamon@yahoo.com','New York','+3268990983','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1990','miklós.fisichella@gmail.com','New York','+4243232756','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1981','sándor.obama@yahoo.com','Miskolc','+3737841128','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1995','miklós.beöthy@gmail.com','Barcelona','+4178780060','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1965','giancarlo.obama@hotmail.com','Miskolc','+403103920','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1991','john.beöthy@gmail.com','Miskolc','+7605649874','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1969','andy.tompa@hotmail.com','New York','+4635741432','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1982','miklós.molnár@gmail.com','New York','+2912400928','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1970','tamás.fisichella@yahoo.com','Budapest','+1513259319','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1970','giancarlo.tompa@yahoo.com','New York','+171463473','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1973','attila.szodoray@gmail.com','New York','+977017244','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1982','john.carrey@hotmail.com','Barcelona','+2350298207','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1966','matthew.ciacka@yahoo.com','Budapest','+6772256108','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1983','andy.tompa@yahoo.com','Miskolc','+476721499','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1979','prezmek.monoczki@gmail.com','Budapest','+4697428435','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1967','sándor.carrey@gmail.com','New York','+3241627190','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1987','tamás.lebron@hotmail.com','Krakow','+8933136781','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1977','prezmek.lebron@hotmail.com','Miskolc','+9424454008','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1987','attila.beöthy@yahoo.com','Barcelona','+7889431171','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1984','john.tompa@gmail.com','Miskolc','+7960780307','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1991','tamás.lebron@yahoo.com','Budapest','+100027905','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1986','andy.molnár@hotmail.com','Miskolc','+4134017169','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1965','tamás.monoczki@hotmail.com','Budapest','+1327992520','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1985','john.beöthy@yahoo.com','Budapest','+8862792097','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1965','matthew.szodoray@hotmail.com','Krakow','+1824337730','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1987','attila.molnár@gmail.com','Budapest','+2248786804','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1979','sándor.szodoray@hotmail.com','Budapest','+7440018671','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1976','pál.ciacka@hotmail.com','Miskolc','+5201011','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1968','pál.tompa@hotmail.com','New York','+8216898962','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1982','dániel.lebron@hotmail.com','Barcelona','+1960069336','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1975','dániel.hamilton@yahoo.com','Barcelona','+9993056219','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1979','miklós.szodoray@yahoo.com','New York','+3013066078','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1972','sándor.lebron@hotmail.com','Miskolc','+671170370','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1968','john.lebron@gmail.com','New York','+8602408329','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1975','john.salamon@yahoo.com','New York','+9164219744','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1980','mateusz.salamon@hotmail.com','New York','+8840453636','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1973','prezmek.beöthy@yahoo.com','New York','+5870800138','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1979','prezmek.salamon@hotmail.com','Krakow','+188403389','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1972','attila.monoczki@hotmail.com','Budapest','+5364608185','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1966','andy.monoczki@gmail.com','Budapest','+797452201','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1975','pál.tompa@hotmail.com','Krakow','+2059287256','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1984','tamás.lebron@yahoo.com','Krakow','+3036355187','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1995','john.hamilton@yahoo.com','New York','+1506959826','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1990','tim.hamilton@yahoo.com','Budapest','+6781602339','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1984','attila.ostafil@yahoo.com','New York','+5857374628','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1988','attila.ostafil@yahoo.com','Krakow','+9500567047','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1987','mateusz.ostafil@hotmail.com','Miskolc','+3146445153','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1978','matthew.molnár@hotmail.com','New York','+9507460166','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1984','john.szodoray@gmail.com','Miskolc','+4439519306','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1983','miklós.carrey@yahoo.com','Miskolc','+1526466620','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1992','attila.molnár@hotmail.com','New York','+4403663112','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1970','dániel.salamon@yahoo.com','Budapest','+329994396','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1983','sándor.salamon@yahoo.com','Miskolc','+7268856707','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1976','matthew.beöthy@gmail.com','Krakow','+4713247143','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1985','matthew.beöthy@yahoo.com','Miskolc','+6984575596','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1986','matthew.molnár@gmail.com','New York','+7184541132','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1965','miklós.fisichella@hotmail.com','Budapest','+5904769477','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1991','andy.beöthy@gmail.com','Miskolc','+6953604306','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1980','mateusz.tompa@yahoo.com','Krakow','+9027581025','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1993','tamás.ciacka@hotmail.com','New York','+7773364381','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1972','mateusz.carrey@hotmail.com','Budapest','+3420984023','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1989','matthew.obama@yahoo.com','Budapest','+8905839574','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1989','giancarlo.hamilton@hotmail.com','New York','+3423668744','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1970','miklós.hamilton@hotmail.com','Barcelona','+3918286949','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1993','miklós.lebron@hotmail.com','Krakow','+6742650432','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1979','dániel.ciacka@gmail.com','Krakow','+5376165977','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1977','andy.szodoray@hotmail.com','Budapest','+6154555676','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1968','sándor.ciacka@hotmail.com','Barcelona','+5507514492','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1990','attila.tompa@hotmail.com','Miskolc','+8358448457','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1983','dániel.obama@hotmail.com','Budapest','+4813647063','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1985','prezmek.ciacka@gmail.com','Budapest','+4827482989','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1992','prezmek.obama@gmail.com','Krakow','+2709067256','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1987','prezmek.beöthy@gmail.com','New York','+2623346533','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1991','matthew.beöthy@yahoo.com','Krakow','+153730528','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1981','prezmek.szodoray@yahoo.com','Miskolc','+5780531323','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1979','sándor.fisichella@hotmail.com','Budapest','+4732093900','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1983','tim.szodoray@hotmail.com','New York','+1739298896','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1988','andy.hamilton@hotmail.com','Budapest','+3255593789','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1995','pál.salamon@yahoo.com','Budapest','+6155600383','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1972','miklós.hamilton@hotmail.com','New York','+8961353860','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1976','andy.szodoray@gmail.com','Krakow','+9457407430','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1979','prezmek.ciacka@hotmail.com','Krakow','+1869808512','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1988','tamás.lebron@hotmail.com','Krakow','+851473340','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1966','attila.salamon@yahoo.com','Krakow','+7330955102','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1988','prezmek.monoczki@yahoo.com','Krakow','+5420113100','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1969','giancarlo.molnár@yahoo.com','Krakow','+6926427665','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1977','tamás.molnár@yahoo.com','Budapest','+2971965732','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1968','sándor.fisichella@hotmail.com','Miskolc','+7421429102','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1978','prezmek.molnár@hotmail.com','Miskolc','+2975405889','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1990','sándor.ciacka@yahoo.com','Budapest','+5795677376','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1968','pál.molnár@yahoo.com','New York','+9414895379','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1965','giancarlo.carrey@hotmail.com','New York','+7239664464','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1973','giancarlo.monoczki@gmail.com','Budapest','+309513721','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1985','sándor.salamon@yahoo.com','Miskolc','+1682182612','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1967','giancarlo.ciacka@hotmail.com','Miskolc','+2612210437','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1974','tim.tompa@gmail.com','Krakow','+5998769085','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1988','attila.salamon@hotmail.com','New York','+9170223415','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1967','mateusz.beöthy@hotmail.com','Barcelona','+7560853035','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1990','sándor.salamon@hotmail.com','Barcelona','+2346345732','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1969','john.salamon@hotmail.com','Barcelona','+1489190954','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1981','giancarlo.ostafil@gmail.com','New York','+7793530059','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1968','andy.tompa@yahoo.com','Krakow','+7486329973','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1972','sándor.monoczki@hotmail.com','Budapest','+1876942877','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1991','andy.ciacka@yahoo.com','Krakow','+7342296036','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1969','prezmek.szodoray@hotmail.com','New York','+127822920','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1992','dániel.monoczki@yahoo.com','Barcelona','+4473964635','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1985','matthew.obama@gmail.com','Budapest','+4357297401','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1969','pál.hamilton@gmail.com','Krakow','+7555181783','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1969','dániel.tompa@gmail.com','New York','+8502201347','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1965','matthew.lebron@yahoo.com','Barcelona','+5386433868','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1993','mateusz.carrey@gmail.com','Krakow','+5848039081','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1976','matthew.obama@yahoo.com','Barcelona','+5462297628','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1990','john.tompa@yahoo.com','Budapest','+2339399419','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1971','dániel.beöthy@yahoo.com','Barcelona','+8150154601','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1983','john.obama@gmail.com','Krakow','+8370337848','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1971','tamás.obama@hotmail.com','Krakow','+469769152','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1974','matthew.lebron@yahoo.com','Budapest','+9077811766','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1971','tim.monoczki@hotmail.com','New York','+811912283','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1994','matthew.monoczki@yahoo.com','Krakow','+4984094021','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1975','tim.obama@hotmail.com','Barcelona','+2657034178','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1974','mateusz.szodoray@gmail.com','Budapest','+6246577155','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1977','john.carrey@hotmail.com','Miskolc','+2095448585','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1982','john.tompa@yahoo.com','New York','+6895681630','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1967','matthew.tompa@gmail.com','Barcelona','+6117226552','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1971','tamás.obama@hotmail.com','Barcelona','+5416943412','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1982','john.ostafil@hotmail.com','Barcelona','+7590827416','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1995','andy.molnár@yahoo.com','Miskolc','+3282097269','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1974','tim.tompa@yahoo.com','Miskolc','+3749640263','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1965','mateusz.obama@hotmail.com','Krakow','+5209111962','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1974','john.carrey@gmail.com','Miskolc','+1363139884','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1981','matthew.beöthy@gmail.com','New York','+4886424819','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1979','pál.lebron@yahoo.com','Miskolc','+8684370052','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1993','matthew.ciacka@yahoo.com','New York','+7542697877','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1982','andy.fisichella@yahoo.com','Miskolc','+1134032197','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1967','attila.carrey@hotmail.com','Krakow','+3157769174','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1966','john.fisichella@yahoo.com','Budapest','+3528165095','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1980','miklós.carrey@gmail.com','Krakow','+5049561672','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1980','john.beöthy@gmail.com','New York','+3702992987','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1969','prezmek.carrey@yahoo.com','New York','+9907335493','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1969','dániel.lebron@gmail.com','New York','+195384107','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1980','miklós.carrey@yahoo.com','Krakow','+3442799477','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1971','attila.hamilton@yahoo.com','Miskolc','+9163154823','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1969','matthew.tompa@gmail.com','Krakow','+3059332834','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1994','giancarlo.szodoray@gmail.com','Barcelona','+530457659','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1987','miklós.tompa@hotmail.com','New York','+9890850601','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1989','mateusz.fisichella@hotmail.com','Budapest','+5613208672','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1984','mateusz.ostafil@hotmail.com','Miskolc','+749398888','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1977','miklós.salamon@gmail.com','Barcelona','+4552538523','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1989','john.salamon@hotmail.com','Krakow','+430327467','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1995','john.ostafil@hotmail.com','Miskolc','+4305817660','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1975','dániel.ciacka@hotmail.com','New York','+978969780','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1986','tim.szodoray@gmail.com','Barcelona','+8625179546','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1980','sándor.obama@gmail.com','Miskolc','+1668868758','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1973','prezmek.monoczki@yahoo.com','Miskolc','+7187999193','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1993','dániel.ostafil@hotmail.com','Budapest','+8463994847','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1968','mateusz.szodoray@yahoo.com','Budapest','+1005708666','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1988','giancarlo.monoczki@gmail.com','Barcelona','+1336222546','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1989','mateusz.carrey@yahoo.com','Barcelona','+1991412761','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1978','john.szodoray@gmail.com','Miskolc','+1960373984','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1973','matthew.ostafil@yahoo.com','Krakow','+9568243330','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1993','matthew.ostafil@hotmail.com','Krakow','+8002174835','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1993','john.ciacka@yahoo.com','Barcelona','+9383536116','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1983','miklós.tompa@gmail.com','New York','+2462157095','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1976','matthew.fisichella@gmail.com','Budapest','+7884998697','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1978','andy.obama@hotmail.com','Miskolc','+9368547366','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1971','tamás.tompa@hotmail.com','Barcelona','+8004869366','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1984','matthew.ostafil@yahoo.com','Krakow','+3054088422','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1966','attila.ostafil@hotmail.com','New York','+4557939535','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1995','andy.molnár@hotmail.com','Miskolc','+5581085342','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1968','attila.obama@gmail.com','Miskolc','+3530823525','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1991','tim.fisichella@gmail.com','Krakow','+673865149','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1987','sándor.ostafil@hotmail.com','Budapest','+5756316010','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1980','matthew.fisichella@gmail.com','Barcelona','+4468179402','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1985','tamás.carrey@gmail.com','Barcelona','+6203422946','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1984','andy.lebron@gmail.com','Barcelona','+9128468541','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1967','dániel.lebron@yahoo.com','Krakow','+5859309887','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1993','mateusz.ostafil@yahoo.com','Barcelona','+3240300671','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1987','tim.ostafil@gmail.com','Krakow','+7419789898','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1971','tamás.lebron@hotmail.com','Barcelona','+9020264888','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1986','dániel.ostafil@hotmail.com','New York','+8345096951','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1986','miklós.molnár@hotmail.com','Krakow','+3410375791','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1970','tim.molnár@gmail.com','Miskolc','+484206417','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1983','tamás.monoczki@yahoo.com','New York','+8262744703','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1995','john.ostafil@hotmail.com','Miskolc','+6159153060','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1982','attila.salamon@gmail.com','Barcelona','+5698766269','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1987','mateusz.szodoray@yahoo.com','Barcelona','+8221100743','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1978','matthew.beöthy@hotmail.com','Miskolc','+1887761802','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1979','mateusz.ostafil@hotmail.com','New York','+823917918','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1983','tim.tompa@gmail.com','Krakow','+308173424','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1994','tim.carrey@yahoo.com','New York','+525140444','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1977','mateusz.szodoray@yahoo.com','New York','+7574104903','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1971','pál.fisichella@hotmail.com','Barcelona','+7191404693','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1981','giancarlo.monoczki@gmail.com','New York','+1044075260','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1972','pál.obama@hotmail.com','Miskolc','+3007729027','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1965','andy.obama@hotmail.com','Miskolc','+5566411067','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1977','miklós.szodoray@yahoo.com','Krakow','+2379249928','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1986','prezmek.carrey@yahoo.com','Krakow','+5767500699','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1968','tamás.szodoray@gmail.com','Miskolc','+4302272423','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1985','tamás.monoczki@hotmail.com','Budapest','+7954806228','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1987','john.molnár@gmail.com','Budapest','+1749361111','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1971','tamás.szodoray@gmail.com','Budapest','+9541294741','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1991','attila.lebron@hotmail.com','Budapest','+9521307580','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1994','matthew.ostafil@gmail.com','Barcelona','+7787416104','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1981','prezmek.carrey@hotmail.com','Miskolc','+8801072570','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1989','john.molnár@hotmail.com','Miskolc','+9971821360','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1990','tim.lebron@hotmail.com','Barcelona','+9715911880','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1985','giancarlo.lebron@yahoo.com','Barcelona','+9164921828','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1991','prezmek.obama@hotmail.com','New York','+5511992410','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1989','pál.molnár@yahoo.com','Budapest','+1406736054','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1974','andy.molnár@hotmail.com','Miskolc','+5327196047','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1976','sándor.molnár@hotmail.com','Miskolc','+9651476417','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1970','dániel.carrey@gmail.com','Budapest','+7820126239','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1966','dániel.fisichella@gmail.com','New York','+1821493983','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1965','miklós.lebron@yahoo.com','Krakow','+7245513200','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1974','pál.salamon@gmail.com','Budapest','+1566761321','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1979','andy.hamilton@hotmail.com','Budapest','+9100797681','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1977','mateusz.szodoray@yahoo.com','Krakow','+2118762880','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1971','matthew.ostafil@gmail.com','Budapest','+93974046','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1971','tim.hamilton@gmail.com','Barcelona','+3377730761','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1973','prezmek.ostafil@gmail.com','Krakow','+7785861850','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1975','prezmek.carrey@yahoo.com','New York','+6338548551','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1971','matthew.molnár@gmail.com','Miskolc','+7334019032','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1989','mateusz.lebron@yahoo.com','Krakow','+7906475770','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1967','john.ostafil@hotmail.com','New York','+6380703117','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1984','tim.ostafil@hotmail.com','Krakow','+9490260297','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1983','prezmek.monoczki@yahoo.com','Barcelona','+7556778014','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1984','giancarlo.beöthy@hotmail.com','New York','+3939134403','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1965','attila.beöthy@hotmail.com','Miskolc','+4678094524','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1986','attila.szodoray@yahoo.com','Barcelona','+3827415321','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1992','tamás.salamon@hotmail.com','Miskolc','+1524671561','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1967','miklós.ostafil@yahoo.com','New York','+1066402977','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1981','tim.obama@gmail.com','New York','+4972143232','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1975','attila.lebron@gmail.com','Barcelona','+1184186137','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1966','matthew.tompa@hotmail.com','Barcelona','+2295963959','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1971','sándor.fisichella@hotmail.com','Miskolc','+9639651477','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1969','sándor.monoczki@yahoo.com','Miskolc','+2227770215','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1969','miklós.obama@gmail.com','New York','+2022727798','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1994','giancarlo.hamilton@gmail.com','Miskolc','+9561451113','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1971','matthew.carrey@gmail.com','Krakow','+4870066418','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1965','miklós.hamilton@gmail.com','Barcelona','+9977335750','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1974','tim.ostafil@hotmail.com','Krakow','+6827111143','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1990','john.beöthy@gmail.com','New York','+481058454','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1974','tim.molnár@yahoo.com','Barcelona','+6230472295','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1966','miklós.fisichella@gmail.com','Budapest','+3266663749','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1991','prezmek.carrey@gmail.com','Barcelona','+7095893871','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1982','tamás.fisichella@hotmail.com','Budapest','+4066700337','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1985','matthew.tompa@yahoo.com','Budapest','+6994730044','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1976','miklós.obama@yahoo.com','Krakow','+6517983740','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1974','tamás.hamilton@yahoo.com','Krakow','+6460116100','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1971','andy.salamon@yahoo.com','Barcelona','+983293056','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1965','tamás.lebron@hotmail.com','Budapest','+7960790375','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1971','dániel.lebron@gmail.com','Barcelona','+1575548710','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1985','miklós.fisichella@gmail.com','Miskolc','+7820333251','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1978','sándor.beöthy@yahoo.com','Krakow','+9406230216','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1973','tim.szodoray@hotmail.com','Miskolc','+4628248065','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1970','dániel.tompa@gmail.com','Barcelona','+2021948050','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1990','matthew.monoczki@gmail.com','New York','+2270698311','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1970','miklós.hamilton@yahoo.com','New York','+2439033407','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1969','pál.hamilton@yahoo.com','Budapest','+2757620217','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1985','dániel.szodoray@yahoo.com','Miskolc','+5510219494','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1975','mateusz.obama@hotmail.com','Budapest','+9328390142','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1974','prezmek.ostafil@gmail.com','Miskolc','+4127751522','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1973','tamás.hamilton@hotmail.com','New York','+3340030382','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1972','prezmek.hamilton@yahoo.com','Krakow','+5586079611','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1979','tim.carrey@gmail.com','Budapest','+2083575386','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1980','tamás.fisichella@yahoo.com','Barcelona','+6416391278','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1993','miklós.szodoray@gmail.com','Miskolc','+9234403986','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1965','matthew.fisichella@hotmail.com','New York','+1140685352','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1990','miklós.ostafil@yahoo.com','Budapest','+7958246090','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1990','andy.hamilton@gmail.com','Krakow','+1830137724','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1991','dániel.lebron@yahoo.com','Budapest','+3262238305','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1994','matthew.molnár@yahoo.com','Barcelona','+1893491819','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1966','john.hamilton@yahoo.com','Miskolc','+3003575876','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1979','dániel.lebron@gmail.com','Budapest','+3927222318','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1965','pál.fisichella@gmail.com','Miskolc','+7295616073','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1988','attila.fisichella@gmail.com','Krakow','+8369879960','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1982','prezmek.monoczki@yahoo.com','Budapest','+6046079719','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1993','andy.ciacka@hotmail.com','Miskolc','+6201692246','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1967','tamás.hamilton@gmail.com','Krakow','+7289556042','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1987','mateusz.lebron@hotmail.com','Krakow','+6366530997','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1990','miklós.szodoray@yahoo.com','Krakow','+7841735409','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1965','giancarlo.monoczki@hotmail.com','Miskolc','+9619972693','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1992','mateusz.lebron@hotmail.com','Krakow','+3192548904','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1988','mateusz.hamilton@yahoo.com','Budapest','+840515622','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1970','giancarlo.carrey@yahoo.com','Krakow','+2264856070','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1993','andy.molnár@gmail.com','Krakow','+6577369922','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1967','miklós.tompa@hotmail.com','New York','+4631354142','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1965','tim.fisichella@hotmail.com','Budapest','+8694951190','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1973','tim.obama@yahoo.com','Miskolc','+3556741538','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1989','sándor.salamon@yahoo.com','Miskolc','+9153920057','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1979','pál.beöthy@yahoo.com','Budapest','+3640141198','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1982','john.szodoray@gmail.com','Budapest','+7149688505','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1982','attila.tompa@hotmail.com','Krakow','+207833475','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1991','matthew.lebron@hotmail.com','Barcelona','+3895301162','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1976','attila.hamilton@gmail.com','Krakow','+1500271123','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1965','matthew.tompa@hotmail.com','Krakow','+855118145','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1969','sándor.hamilton@yahoo.com','Budapest','+3745201106','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1970','matthew.beöthy@gmail.com','New York','+9460481241','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1974','miklós.carrey@gmail.com','Krakow','+400564215','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1979','tim.obama@gmail.com','Budapest','+1211351536','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1979','matthew.beöthy@yahoo.com','Barcelona','+9685257054','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1972','attila.lebron@hotmail.com','Krakow','+5286223288','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1987','tamás.ostafil@yahoo.com','Barcelona','+5725653502','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1972','prezmek.ostafil@yahoo.com','New York','+2612480257','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1994','mateusz.ostafil@yahoo.com','New York','+7302563175','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1981','tim.beöthy@hotmail.com','Barcelona','+2568601676','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1992','matthew.tompa@hotmail.com','Krakow','+6795308216','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1970','sándor.szodoray@hotmail.com','Budapest','+3881992919','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1968','tamás.szodoray@yahoo.com','Barcelona','+664450932','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1987','john.ciacka@yahoo.com','Miskolc','+8926082073','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1979','tamás.tompa@gmail.com','Miskolc','+6689843921','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1979','dániel.beöthy@hotmail.com','Miskolc','+1308407564','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1994','pál.fisichella@gmail.com','Krakow','+9089520866','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1972','tim.szodoray@gmail.com','Budapest','+2177980208','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1992','pál.ciacka@yahoo.com','Miskolc','+5969552288','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1985','miklós.szodoray@yahoo.com','Miskolc','+9064065585','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1977','giancarlo.monoczki@hotmail.com','New York','+2482640370','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1974','matthew.fisichella@yahoo.com','New York','+3561370231','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1982','miklós.monoczki@gmail.com','New York','+4965500589','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1982','tim.carrey@hotmail.com','Barcelona','+3360252211','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1969','john.lebron@gmail.com','Budapest','+3634881911','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1985','matthew.beöthy@yahoo.com','Miskolc','+7218306333','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1986','tim.ciacka@gmail.com','New York','+2910330125','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1982','sándor.molnár@hotmail.com','Miskolc','+9143699659','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1977','john.beöthy@yahoo.com','Krakow','+9982859149','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1966','mateusz.ciacka@hotmail.com','New York','+7802001865','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1984','miklós.ciacka@hotmail.com','New York','+4163730958','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1965','mateusz.ostafil@gmail.com','Barcelona','+5782112171','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1995','pál.tompa@yahoo.com','Barcelona','+8836982634','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1981','prezmek.molnár@gmail.com','New York','+4825609474','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1988','john.carrey@hotmail.com','Miskolc','+358376505','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1972','attila.ostafil@yahoo.com','New York','+9170565800','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1981','prezmek.carrey@gmail.com','Barcelona','+3834385409','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1984','mateusz.molnár@gmail.com','Budapest','+3530500492','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1995','sándor.szodoray@yahoo.com','New York','+2846475315','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1976','mateusz.molnár@gmail.com','Krakow','+7153082233','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1988','dániel.ostafil@yahoo.com','Barcelona','+3755317131','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1991','giancarlo.carrey@gmail.com','Miskolc','+2040263333','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1967','dániel.tompa@hotmail.com','New York','+5494211532','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1994','giancarlo.fisichella@gmail.com','New York','+3950257409','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1969','sándor.carrey@gmail.com','Miskolc','+7131732809','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1982','matthew.szodoray@gmail.com','Barcelona','+5261230181','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1990','john.ciacka@hotmail.com','Budapest','+3896125135','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1994','dániel.fisichella@yahoo.com','Krakow','+2757129443','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1975','matthew.molnár@hotmail.com','Budapest','+9280771304','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1966','tim.monoczki@hotmail.com','Budapest','+1299312605','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1966','tim.obama@yahoo.com','New York','+1229999410','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1980','miklós.ciacka@gmail.com','Budapest','+8380538458','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1993','sándor.obama@hotmail.com','Barcelona','+8068686949','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1994','mateusz.ostafil@hotmail.com','Budapest','+3811101244','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1972','matthew.ostafil@gmail.com','Barcelona','+8314997782','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1975','attila.szodoray@gmail.com','Miskolc','+2844865201','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1967','attila.salamon@gmail.com','Miskolc','+9733443033','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1986','tamás.beöthy@yahoo.com','Miskolc','+5434771738','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1995','attila.ciacka@hotmail.com','Krakow','+7062279880','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1992','miklós.monoczki@yahoo.com','Krakow','+26705480','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1991','tamás.hamilton@gmail.com','Miskolc','+651619327','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1989','mateusz.carrey@yahoo.com','Krakow','+5504798803','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1971','miklós.monoczki@gmail.com','Barcelona','+2745263362','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1995','matthew.fisichella@hotmail.com','Barcelona','+2495859760','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1988','mateusz.carrey@gmail.com','New York','+4263341618','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1965','miklós.tompa@gmail.com','New York','+1982395151','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1994','tamás.obama@hotmail.com','Miskolc','+150916249','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1985','dániel.obama@hotmail.com','Budapest','+9379204981','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1979','prezmek.lebron@gmail.com','Barcelona','+7751104711','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1980','miklós.fisichella@gmail.com','New York','+9834411976','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1967','dániel.tompa@hotmail.com','Krakow','+5844960311','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1988','attila.ciacka@gmail.com','Krakow','+356652240','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1975','attila.hamilton@yahoo.com','Miskolc','+3143332190','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1979','matthew.obama@yahoo.com','Barcelona','+865420786','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1986','tamás.monoczki@yahoo.com','Krakow','+9077591785','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1984','prezmek.monoczki@gmail.com','Krakow','+8668767067','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1976','mateusz.beöthy@gmail.com','Budapest','+3218224736','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1969','giancarlo.szodoray@yahoo.com','Barcelona','+4964603411','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1995','tamás.tompa@yahoo.com','Krakow','+9981630961','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1987','tamás.ostafil@yahoo.com','Barcelona','+6722673575','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1979','tim.ciacka@yahoo.com','Miskolc','+7881746994','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1986','john.carrey@yahoo.com','Budapest','+4727792802','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1984','giancarlo.obama@yahoo.com','Barcelona','+7015230586','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1967','prezmek.tompa@hotmail.com','Miskolc','+6623391530','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1991','attila.beöthy@hotmail.com','New York','+4213643887','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1995','mateusz.molnár@gmail.com','Barcelona','+8642347191','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1984','prezmek.carrey@hotmail.com','Barcelona','+8218044074','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1993','tamás.ciacka@hotmail.com','Miskolc','+9321797999','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1992','john.fisichella@hotmail.com','Miskolc','+1339810062','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1973','john.salamon@gmail.com','Krakow','+4750059655','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1978','john.tompa@hotmail.com','New York','+1592538175','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1983','andy.beöthy@yahoo.com','Budapest','+5977612832','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1965','tamás.szodoray@yahoo.com','Miskolc','+9012889919','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1991','matthew.ciacka@hotmail.com','Barcelona','+949459239','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1975','dániel.szodoray@yahoo.com','New York','+7155366790','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1976','giancarlo.ciacka@yahoo.com','Krakow','+6751117849','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1970','dániel.beöthy@hotmail.com','Krakow','+1319356838','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1977','giancarlo.obama@hotmail.com','New York','+4849066458','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1965','giancarlo.tompa@gmail.com','Barcelona','+8060989912','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1971','tim.ciacka@yahoo.com','New York','+9046283123','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1978','sándor.beöthy@yahoo.com','Budapest','+3959604307','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1982','pál.hamilton@hotmail.com','New York','+4578505266','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1971','matthew.salamon@yahoo.com','Miskolc','+3382445439','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1985','mateusz.molnár@yahoo.com','Barcelona','+4833470166','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1971','prezmek.tompa@yahoo.com','New York','+736692490','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1970','mateusz.ciacka@hotmail.com','Budapest','+4344204124','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1970','matthew.fisichella@hotmail.com','Barcelona','+3056331679','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1993','pál.tompa@hotmail.com','Barcelona','+5322440942','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1967','john.hamilton@gmail.com','Budapest','+1027457407','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1976','john.szodoray@gmail.com','Krakow','+6934970886','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1966','tim.hamilton@hotmail.com','Budapest','+4448308332','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1969','pál.ciacka@hotmail.com','New York','+4261849061','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1974','miklós.lebron@yahoo.com','New York','+9242368533','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1984','mateusz.hamilton@gmail.com','Budapest','+7043748396','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1978','dániel.salamon@yahoo.com','Barcelona','+8962450495','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1976','miklós.fisichella@gmail.com','Krakow','+5505725564','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1965','andy.hamilton@hotmail.com','Barcelona','+3262377797','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1982','andy.fisichella@gmail.com','Barcelona','+9562311434','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1991','sándor.carrey@gmail.com','Miskolc','+4312624753','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1985','mateusz.lebron@yahoo.com','Budapest','+4167506926','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1972','andy.hamilton@hotmail.com','Budapest','+7046360667','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1970','andy.monoczki@gmail.com','Budapest','+8442342817','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1970','pál.salamon@yahoo.com','Krakow','+5389334578','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1991','miklós.salamon@hotmail.com','Krakow','+631987711','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1985','attila.beöthy@yahoo.com','Budapest','+6668378718','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1986','attila.obama@yahoo.com','Krakow','+7283166230','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1979','dániel.szodoray@yahoo.com','Krakow','+288997046','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1985','prezmek.ostafil@hotmail.com','Krakow','+3469507803','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1972','giancarlo.fisichella@yahoo.com','New York','+9651711690','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1977','tamás.molnár@yahoo.com','Barcelona','+1378889323','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1991','john.beöthy@gmail.com','Barcelona','+3653038141','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1966','tamás.obama@hotmail.com','Miskolc','+2565919424','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1993','attila.lebron@hotmail.com','New York','+1091883651','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1984','pál.tompa@yahoo.com','Budapest','+4383975341','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1984','giancarlo.fisichella@yahoo.com','Miskolc','+1880398696','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1991','tamás.salamon@gmail.com','Krakow','+9180552915','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1974','attila.molnár@gmail.com','Budapest','+7288890513','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1972','andy.fisichella@gmail.com','Miskolc','+2933263146','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1985','sándor.ciacka@yahoo.com','Barcelona','+4006378121','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1993','miklós.szodoray@yahoo.com','Krakow','+3817736305','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1995','giancarlo.beöthy@yahoo.com','New York','+6763428763','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1979','john.salamon@hotmail.com','New York','+6656552749','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1972','tamás.salamon@gmail.com','Budapest','+1264599346','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1973','tamás.ciacka@hotmail.com','Krakow','+3658650533','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1982','sándor.ostafil@hotmail.com','Krakow','+8431399503','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1969','sándor.szodoray@gmail.com','Budapest','+3405728164','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1985','attila.carrey@yahoo.com','Miskolc','+6523424818','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1986','pál.beöthy@hotmail.com','Miskolc','+2003456819','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1966','tamás.ciacka@hotmail.com','Krakow','+7001961828','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1990','pál.monoczki@gmail.com','Krakow','+6871609022','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1971','mateusz.ostafil@hotmail.com','Barcelona','+2832675929','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1979','dániel.carrey@gmail.com','Miskolc','+6192460656','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1975','attila.tompa@hotmail.com','Miskolc','+4431404566','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1968','pál.fisichella@yahoo.com','Miskolc','+8004361391','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1979','sándor.carrey@gmail.com','Krakow','+4606422212','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1971','pál.monoczki@gmail.com','Budapest','+480321192','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1978','john.ciacka@gmail.com','Barcelona','+7801489025','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1984','tamás.obama@gmail.com','Krakow','+3974153648','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1985','attila.beöthy@yahoo.com','Miskolc','+3656415362','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1988','mateusz.beöthy@gmail.com','Barcelona','+6173225171','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1971','john.tompa@gmail.com','New York','+3531443260','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1989','andy.ostafil@gmail.com','New York','+1850824803','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1966','john.carrey@hotmail.com','Krakow','+7913047055','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1984','matthew.szodoray@yahoo.com','New York','+2474632355','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1976','attila.tompa@hotmail.com','Miskolc','+481028941','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1983','dániel.salamon@yahoo.com','Budapest','+6176280404','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1993','john.szodoray@gmail.com','Krakow','+417051600','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1981','john.monoczki@hotmail.com','Barcelona','+9383946398','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1992','matthew.tompa@gmail.com','Barcelona','+5549059434','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1966','mateusz.fisichella@hotmail.com','Krakow','+6804690968','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1976','sándor.salamon@gmail.com','New York','+1364299178','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1989','pál.szodoray@yahoo.com','Barcelona','+9038745236','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1970','prezmek.beöthy@yahoo.com','New York','+875268185','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1972','tamás.obama@gmail.com','Miskolc','+1584108525','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1980','tim.ciacka@yahoo.com','New York','+1139651554','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1994','andy.ostafil@yahoo.com','Budapest','+9562098020','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1969','andy.lebron@hotmail.com','Krakow','+5546788780','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1965','attila.tompa@hotmail.com','Barcelona','+260285095','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1976','dániel.monoczki@gmail.com','Barcelona','+393308838','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1970','pál.molnár@gmail.com','Barcelona','+636007793','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1993','sándor.obama@hotmail.com','New York','+9759998686','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1984','tim.ostafil@hotmail.com','Miskolc','+9554405427','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1979','pál.szodoray@hotmail.com','Barcelona','+1502648519','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1971','andy.carrey@hotmail.com','New York','+8804047030','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1982','giancarlo.ostafil@gmail.com','Krakow','+562656944','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1976','andy.szodoray@yahoo.com','Barcelona','+86429948','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1979','john.ciacka@gmail.com','Budapest','+1193722180','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1968','mateusz.szodoray@yahoo.com','Krakow','+8814588351','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1981','matthew.lebron@gmail.com','Krakow','+9768359173','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1991','attila.szodoray@yahoo.com','Miskolc','+6502112927','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1987','dániel.fisichella@yahoo.com','Barcelona','+4336319007','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1979','john.carrey@yahoo.com','New York','+3997259502','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1969','dániel.ciacka@gmail.com','Budapest','+7396887966','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1992','matthew.molnár@gmail.com','Barcelona','+5467161919','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1995','matthew.ciacka@yahoo.com','Miskolc','+6519165916','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1978','sándor.hamilton@yahoo.com','Krakow','+845916177','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1992','tamás.ostafil@yahoo.com','Barcelona','+5700086584','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1977','giancarlo.hamilton@yahoo.com','Miskolc','+8025128447','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1987','dániel.carrey@gmail.com','Krakow','+4959921691','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1976','tamás.fisichella@gmail.com','Budapest','+965684614','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1974','giancarlo.monoczki@hotmail.com','New York','+3344308355','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1983','attila.hamilton@gmail.com','Budapest','+6959343800','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1977','tamás.obama@yahoo.com','Budapest','+645648165','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1965','mateusz.ciacka@gmail.com','Barcelona','+4861478560','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1975','prezmek.beöthy@yahoo.com','Krakow','+5796445447','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1981','dániel.szodoray@yahoo.com','Krakow','+2690436077','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1982','sándor.szodoray@yahoo.com','Miskolc','+5253993124','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1988','andy.salamon@yahoo.com','Krakow','+8911498121','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1995','prezmek.hamilton@gmail.com','Miskolc','+6818693423','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1984','tamás.hamilton@yahoo.com','New York','+4717895443','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1986','tamás.lebron@gmail.com','Budapest','+3584696638','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1991','prezmek.beöthy@gmail.com','Barcelona','+2900569926','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1986','sándor.ostafil@hotmail.com','Krakow','+8097950951','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1973','john.lebron@hotmail.com','Krakow','+5034863638','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1969','dániel.ciacka@gmail.com','New York','+8051556030','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1977','tim.molnár@yahoo.com','Krakow','+9954539369','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1978','tim.salamon@yahoo.com','Barcelona','+8482282520','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1988','prezmek.ciacka@yahoo.com','Barcelona','+3200831970','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1965','giancarlo.obama@hotmail.com','Krakow','+23236806','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1968','prezmek.salamon@yahoo.com','New York','+8905359290','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1967','pál.monoczki@yahoo.com','Krakow','+444921862','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1994','dániel.ciacka@gmail.com','Krakow','+4321504710','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1994','attila.ostafil@hotmail.com','Krakow','+5594203837','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1989','attila.lebron@gmail.com','Barcelona','+9521790399','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1983','pál.salamon@gmail.com','New York','+6072071766','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1994','mateusz.beöthy@gmail.com','New York','+2223380259','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1988','andy.salamon@gmail.com','New York','+926691619','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1974','matthew.fisichella@hotmail.com','New York','+1400192437','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1975','giancarlo.ciacka@yahoo.com','Budapest','+4679670672','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1971','tim.beöthy@gmail.com','New York','+7128223715','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1976','matthew.beöthy@gmail.com','New York','+9120705690','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1973','sándor.ciacka@hotmail.com','New York','+8739458293','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1970','attila.lebron@hotmail.com','Barcelona','+2708014576','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1969','miklós.carrey@yahoo.com','New York','+6896088191','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1983','john.carrey@yahoo.com','Miskolc','+632738193','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1979','dániel.beöthy@gmail.com','Miskolc','+6449723057','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1983','miklós.hamilton@gmail.com','New York','+3388647798','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1970','mateusz.tompa@yahoo.com','Miskolc','+2301034710','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1974','prezmek.beöthy@gmail.com','Barcelona','+265318885','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1994','giancarlo.szodoray@yahoo.com','New York','+3868910357','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1988','pál.monoczki@yahoo.com','Budapest','+6239610235','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1985','pál.ciacka@hotmail.com','Miskolc','+1629625769','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1980','dániel.monoczki@yahoo.com','Krakow','+4200457043','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1983','pál.hamilton@gmail.com','Krakow','+5860799235','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1986','miklós.tompa@hotmail.com','Budapest','+1152102159','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1965','matthew.hamilton@yahoo.com','Miskolc','+6754660192','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1968','miklós.ostafil@yahoo.com','Krakow','+4783960891','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1972','tim.hamilton@gmail.com','New York','+6347765057','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1972','mateusz.molnár@yahoo.com','Miskolc','+5382790857','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1992','prezmek.hamilton@yahoo.com','Budapest','+167070131','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1973','dániel.obama@yahoo.com','New York','+3884514876','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1991','dániel.monoczki@yahoo.com','New York','+9721475687','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1982','john.obama@yahoo.com','New York','+5020605826','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1979','tamás.szodoray@gmail.com','Budapest','+780393139','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1986','andy.ciacka@hotmail.com','Miskolc','+117975919','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1982','tamás.molnár@yahoo.com','Budapest','+4408814563','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1975','andy.carrey@hotmail.com','Miskolc','+3927619058','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1986','john.szodoray@gmail.com','New York','+3902232674','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1966','pál.monoczki@gmail.com','New York','+6027727747','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1985','tim.fisichella@hotmail.com','Budapest','+9174446145','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1981','matthew.szodoray@hotmail.com','Budapest','+6983642689','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1985','prezmek.tompa@gmail.com','Barcelona','+1070338620','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1993','miklós.ostafil@yahoo.com','Krakow','+621246291','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1971','pál.carrey@yahoo.com','Miskolc','+9256548027','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1974','mateusz.molnár@hotmail.com','New York','+8951932571','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1973','miklós.ciacka@yahoo.com','New York','+4213487161','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1993','matthew.ciacka@yahoo.com','Miskolc','+9798461489','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1969','john.molnár@gmail.com','New York','+2875940753','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1968','matthew.hamilton@yahoo.com','Miskolc','+11840294','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1982','andy.fisichella@gmail.com','New York','+3759935260','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1992','prezmek.beöthy@yahoo.com','New York','+9052459961','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1974','tamás.tompa@yahoo.com','Krakow','+3830821818','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1982','pál.ostafil@gmail.com','Krakow','+6803732246','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1969','andy.molnár@yahoo.com','Miskolc','+5184337750','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1994','andy.lebron@hotmail.com','Budapest','+7234103481','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1986','pál.obama@gmail.com','New York','+9015818349','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1979','matthew.tompa@gmail.com','Miskolc','+6932718428','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1985','tamás.szodoray@gmail.com','Miskolc','+1656190479','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1972','prezmek.carrey@yahoo.com','New York','+2737129296','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1992','giancarlo.ostafil@hotmail.com','Miskolc','+5314217098','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1981','prezmek.ostafil@hotmail.com','Miskolc','+946669217','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1993','andy.obama@hotmail.com','Krakow','+4453419300','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1981','dániel.beöthy@hotmail.com','Miskolc','+3830477684','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1995','attila.ostafil@yahoo.com','Budapest','+2278947542','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1987','attila.hamilton@yahoo.com','Krakow','+8052385106','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1984','tim.tompa@hotmail.com','New York','+7435208936','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1972','dániel.salamon@hotmail.com','Krakow','+4930061434','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1965','giancarlo.tompa@hotmail.com','Barcelona','+7038804688','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1994','pál.molnár@yahoo.com','New York','+4008992390','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1980','attila.beöthy@gmail.com','Budapest','+3364201001','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1970','pál.molnár@gmail.com','Budapest','+6662468663','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1995','tamás.lebron@gmail.com','Budapest','+4805971942','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1988','tim.obama@hotmail.com','Krakow','+7105038964','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1973','attila.szodoray@gmail.com','Krakow','+3984951060','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1966','mateusz.carrey@yahoo.com','Barcelona','+7399163311','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1992','sándor.salamon@hotmail.com','Barcelona','+5651904483','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1984','sándor.carrey@yahoo.com','Miskolc','+8257699350','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1988','tamás.tompa@gmail.com','Krakow','+4296542791','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1980','tamás.szodoray@gmail.com','Krakow','+6115700531','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1980','attila.carrey@hotmail.com','Budapest','+3180998642','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1980','sándor.monoczki@gmail.com','Krakow','+1429050023','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1986','andy.lebron@yahoo.com','Barcelona','+4260521048','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1974','tim.monoczki@hotmail.com','Budapest','+2495039724','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1994','giancarlo.lebron@gmail.com','New York','+7455990924','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1979','tim.lebron@yahoo.com','New York','+3554889894','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1985','giancarlo.fisichella@hotmail.com','New York','+1940752910','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1985','miklós.salamon@gmail.com','Budapest','+5556450968','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1987','andy.molnár@hotmail.com','Barcelona','+4639893422','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1966','mateusz.molnár@gmail.com','Krakow','+9526010145','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1976','tim.tompa@gmail.com','New York','+3701131187','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1966','miklós.fisichella@hotmail.com','Budapest','+7972848267','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1985','andy.ciacka@yahoo.com','Krakow','+8869070949','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1982','miklós.fisichella@yahoo.com','Budapest','+6647018307','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1986','giancarlo.ciacka@gmail.com','New York','+2800884507','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1974','sándor.tompa@hotmail.com','Budapest','+5982440221','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1986','miklós.beöthy@hotmail.com','Barcelona','+8178041931','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1995','miklós.obama@hotmail.com','Krakow','+9497415908','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1990','andy.ciacka@hotmail.com','Krakow','+4939793363','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1988','dániel.carrey@hotmail.com','Krakow','+6420820258','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1986','miklós.lebron@gmail.com','Barcelona','+8652278920','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1975','andy.salamon@yahoo.com','Miskolc','+3844549345','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1991','giancarlo.obama@yahoo.com','Barcelona','+3366318886','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1991','tim.monoczki@gmail.com','Krakow','+6424859292','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1976','attila.beöthy@yahoo.com','Barcelona','+6533783682','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1969','miklós.hamilton@gmail.com','Miskolc','+3882823775','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1989','dániel.lebron@gmail.com','Barcelona','+4297446351','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1978','pál.lebron@gmail.com','New York','+8361725036','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1978','prezmek.carrey@gmail.com','Barcelona','+561952355','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1984','prezmek.beöthy@gmail.com','Barcelona','+1132628190','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1974','miklós.tompa@yahoo.com','New York','+8287156102','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1975','attila.molnár@gmail.com','Budapest','+3644022050','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1979','miklós.monoczki@hotmail.com','Budapest','+3350710339','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1980','tim.szodoray@yahoo.com','Barcelona','+2799158995','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1988','prezmek.fisichella@gmail.com','New York','+3951564076','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1990','andy.carrey@gmail.com','Krakow','+9710469756','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1995','giancarlo.lebron@yahoo.com','Krakow','+1254716364','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1976','prezmek.obama@gmail.com','Budapest','+6690237510','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1992','prezmek.hamilton@hotmail.com','Miskolc','+1095226673','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1995','dániel.obama@hotmail.com','Budapest','+610165271','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1973','tim.ostafil@yahoo.com','Budapest','+3919446848','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1975','dániel.tompa@hotmail.com','Miskolc','+2397997324','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1994','sándor.tompa@hotmail.com','Krakow','+2286998127','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1975','pál.ciacka@hotmail.com','Krakow','+1732201704','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1995','matthew.molnár@hotmail.com','Barcelona','+964842377','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1984','pál.fisichella@yahoo.com','Barcelona','+5440223397','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1973','attila.lebron@hotmail.com','New York','+8681832579','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1985','mateusz.salamon@yahoo.com','Krakow','+5365232965','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1983','giancarlo.beöthy@yahoo.com','Budapest','+3666541071','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1977','matthew.molnár@gmail.com','Barcelona','+7642891808','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1976','tim.szodoray@gmail.com','Barcelona','+821053022','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1969','matthew.fisichella@yahoo.com','Budapest','+9081635121','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1985','dániel.szodoray@yahoo.com','Barcelona','+3253275103','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1976','attila.carrey@yahoo.com','Barcelona','+6039353713','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1972','tamás.ciacka@gmail.com','Budapest','+1949702315','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1974','sándor.monoczki@gmail.com','Barcelona','+1295255956','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1974','mateusz.szodoray@hotmail.com','Budapest','+3653626572','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1965','tim.lebron@yahoo.com','Miskolc','+1905176661','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1995','giancarlo.obama@gmail.com','Krakow','+2467770993','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1974','mateusz.obama@gmail.com','Miskolc','+5810406900','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1982','dániel.ostafil@gmail.com','New York','+5485234109','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1972','dániel.salamon@gmail.com','Barcelona','+330434717','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1984','dániel.monoczki@hotmail.com','Barcelona','+7171295260','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1988','dániel.hamilton@yahoo.com','Miskolc','+6063755028','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1971','matthew.szodoray@gmail.com','New York','+7940078884','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1987','tamás.fisichella@gmail.com','New York','+2725921906','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1965','sándor.salamon@yahoo.com','Budapest','+6485396045','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1988','matthew.salamon@gmail.com','Budapest','+3500139202','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1975','miklós.fisichella@gmail.com','Barcelona','+4317666035','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1995','giancarlo.ostafil@hotmail.com','Krakow','+4770230678','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1980','tamás.obama@yahoo.com','New York','+3163462445','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1985','sándor.ostafil@hotmail.com','Miskolc','+4474690324','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1978','dániel.molnár@yahoo.com','New York','+4282827394','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1992','dániel.molnár@gmail.com','Barcelona','+2477469555','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1974','attila.carrey@hotmail.com','Budapest','+7922686837','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1979','giancarlo.beöthy@hotmail.com','Barcelona','+9338039464','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1973','dániel.szodoray@gmail.com','Budapest','+9940942296','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1983','sándor.ostafil@yahoo.com','New York','+917599561','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1967','john.carrey@hotmail.com','Miskolc','+7483243586','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1974','tamás.obama@gmail.com','Budapest','+8516089055','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1993','miklós.molnár@gmail.com','Miskolc','+5533828163','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1994','pál.salamon@yahoo.com','Budapest','+5107530619','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1966','john.obama@yahoo.com','Budapest','+7099569004','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1981','john.szodoray@yahoo.com','Budapest','+2424049808','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1965','matthew.obama@hotmail.com','Barcelona','+977835234','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1981','prezmek.ostafil@hotmail.com','Miskolc','+8475061614','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1981','dániel.lebron@yahoo.com','Barcelona','+5663314385','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1993','matthew.ostafil@gmail.com','Krakow','+4049612877','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1969','john.fisichella@yahoo.com','Krakow','+5565011810','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1984','john.carrey@gmail.com','Barcelona','+2905345083','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1984','prezmek.fisichella@yahoo.com','Krakow','+3300440557','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1969','tamás.salamon@gmail.com','Budapest','+8050477320','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1965','john.monoczki@hotmail.com','Barcelona','+7654579467','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1993','miklós.fisichella@yahoo.com','Barcelona','+5034280681','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1967','miklós.hamilton@gmail.com','Krakow','+7629953763','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1974','giancarlo.carrey@gmail.com','Miskolc','+9883373582','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1971','john.ciacka@gmail.com','New York','+3167965340','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1993','john.fisichella@yahoo.com','Budapest','+9335793464','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1980','dániel.hamilton@yahoo.com','Krakow','+524391819','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1978','tamás.tompa@hotmail.com','New York','+3663589991','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1972','pál.monoczki@hotmail.com','Budapest','+3135577789','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1970','dániel.obama@hotmail.com','Budapest','+8890217968','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1970','giancarlo.hamilton@gmail.com','Budapest','+4379079573','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1991','dániel.salamon@hotmail.com','Budapest','+6901287316','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1967','john.ostafil@gmail.com','Budapest','+2752299424','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1994','sándor.molnár@gmail.com','Miskolc','+250961473','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1977','prezmek.hamilton@hotmail.com','Krakow','+573327868','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1985','pál.obama@hotmail.com','Miskolc','+2030896551','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1969','sándor.molnár@hotmail.com','Budapest','+121152340','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1970','andy.obama@yahoo.com','New York','+7156445703','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1983','giancarlo.salamon@yahoo.com','Krakow','+6400918826','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1985','miklós.szodoray@yahoo.com','Miskolc','+8913426004','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1987','john.carrey@yahoo.com','Miskolc','+43781774','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1966','matthew.hamilton@yahoo.com','Krakow','+6702536509','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1972','pál.lebron@gmail.com','Barcelona','+3710102932','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1976','giancarlo.szodoray@gmail.com','Krakow','+3792924133','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1977','giancarlo.salamon@hotmail.com','Krakow','+498775449','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1965','tamás.molnár@hotmail.com','Krakow','+5943860629','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1978','attila.salamon@hotmail.com','Barcelona','+127133605','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1988','dániel.obama@hotmail.com','New York','+306906794','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1974','mateusz.fisichella@gmail.com','Krakow','+8346082284','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1971','mateusz.molnár@hotmail.com','New York','+7189595454','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1985','mateusz.lebron@yahoo.com','Barcelona','+4120498781','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1995','tamás.hamilton@hotmail.com','Krakow','+8643604962','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1971','giancarlo.beöthy@gmail.com','Barcelona','+3102490438','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1972','sándor.salamon@gmail.com','Miskolc','+3067720831','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1984','john.obama@gmail.com','Barcelona','+6858398994','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1980','mateusz.obama@yahoo.com','Miskolc','+9261732149','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1968','pál.salamon@yahoo.com','Barcelona','+836608698','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1984','pál.tompa@hotmail.com','New York','+4174662022','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1976','mateusz.obama@hotmail.com','Miskolc','+1682456054','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1969','andy.salamon@hotmail.com','New York','+1904802138','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1973','sándor.salamon@gmail.com','Krakow','+4641738209','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1971','matthew.beöthy@yahoo.com','Krakow','+4970936314','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1988','attila.monoczki@hotmail.com','Krakow','+7772878451','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1990','sándor.ostafil@gmail.com','Miskolc','+679535417','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1990','mateusz.fisichella@hotmail.com','Krakow','+9732823120','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1995','andy.ciacka@gmail.com','Miskolc','+5518354279','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1987','miklós.hamilton@yahoo.com','Miskolc','+101115540','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1984','giancarlo.tompa@yahoo.com','Miskolc','+3709594271','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1986','andy.hamilton@gmail.com','Miskolc','+2852822364','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1969','dániel.tompa@yahoo.com','Krakow','+7300098065','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1986','pál.tompa@gmail.com','New York','+8077166364','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1990','miklós.salamon@yahoo.com','Budapest','+8594759487','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1969','sándor.carrey@yahoo.com','Budapest','+7801869403','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1989','tim.szodoray@hotmail.com','Krakow','+9344808646','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1991','tim.ostafil@yahoo.com','Miskolc','+366479879','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1994','pál.salamon@yahoo.com','Krakow','+4860755159','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1973','attila.obama@hotmail.com','Budapest','+3692673574','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1986','dániel.obama@gmail.com','Budapest','+5516408356','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1977','attila.carrey@hotmail.com','Krakow','+7262466145','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1973','sándor.obama@gmail.com','Miskolc','+2783927877','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1989','tamás.hamilton@gmail.com','New York','+1233052408','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1987','dániel.tompa@gmail.com','Barcelona','+6472381046','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1989','andy.hamilton@hotmail.com','Krakow','+7439319367','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1981','mateusz.monoczki@yahoo.com','Miskolc','+335960750','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1975','sándor.szodoray@hotmail.com','Budapest','+1209011584','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1974','prezmek.molnár@yahoo.com','Krakow','+7347445924','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1975','matthew.monoczki@hotmail.com','Miskolc','+7738689890','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1972','attila.carrey@hotmail.com','Barcelona','+9245061065','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1975','andy.fisichella@gmail.com','Miskolc','+3811810249','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1989','mateusz.salamon@hotmail.com','Barcelona','+99947100','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1993','tim.salamon@hotmail.com','New York','+5216344308','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1993','sándor.obama@yahoo.com','New York','+5075910822','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1983','prezmek.obama@yahoo.com','Budapest','+970169208','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1967','attila.ostafil@gmail.com','New York','+2042236474','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1994','andy.beöthy@hotmail.com','Krakow','+4338790254','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1977','tamás.szodoray@yahoo.com','Barcelona','+9447950961','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1973','andy.ciacka@hotmail.com','Barcelona','+2711970610','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1967','pál.beöthy@yahoo.com','Budapest','+7682017260','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1965','attila.ostafil@yahoo.com','Budapest','+6992382715','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1965','pál.szodoray@yahoo.com','Barcelona','+8858659567','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1992','prezmek.monoczki@hotmail.com','Barcelona','+5032944881','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1971','pál.obama@gmail.com','Miskolc','+9231102969','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1981','dániel.szodoray@yahoo.com','Budapest','+5428982993','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1994','sándor.tompa@yahoo.com','Krakow','+3326835525','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1973','giancarlo.ciacka@gmail.com','Barcelona','+1838712428','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1994','pál.monoczki@gmail.com','New York','+6124159866','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1971','prezmek.carrey@gmail.com','Barcelona','+8812669666','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1972','tim.szodoray@gmail.com','New York','+1282748376','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1969','andy.salamon@yahoo.com','Barcelona','+3114700738','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1974','sándor.salamon@yahoo.com','Budapest','+2087426353','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1980','prezmek.szodoray@hotmail.com','Krakow','+6745686360','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1968','miklós.ciacka@hotmail.com','Barcelona','+8064982212','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1982','tamás.obama@hotmail.com','Miskolc','+1638153585','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1979','attila.fisichella@hotmail.com','Barcelona','+6816329135','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1970','andy.obama@gmail.com','Barcelona','+8305078308','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1979','prezmek.beöthy@yahoo.com','Miskolc','+9267145644','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1965','matthew.ostafil@yahoo.com','Barcelona','+8616291946','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1988','tim.ciacka@hotmail.com','Miskolc','+1034581393','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1994','giancarlo.carrey@hotmail.com','Krakow','+5665611817','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1993','mateusz.obama@hotmail.com','New York','+1075203682','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1966','andy.carrey@hotmail.com','Barcelona','+6393691691','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1988','giancarlo.fisichella@yahoo.com','Budapest','+3196554204','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1986','giancarlo.szodoray@yahoo.com','New York','+6662251893','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1971','giancarlo.szodoray@yahoo.com','Miskolc','+1070935702','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1983','dániel.carrey@hotmail.com','Barcelona','+7189149671','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1971','andy.ostafil@hotmail.com','Krakow','+2336755413','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1987','mateusz.carrey@gmail.com','Miskolc','+2162079433','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1984','miklós.ciacka@hotmail.com','Miskolc','+6497622438','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1966','matthew.hamilton@hotmail.com','Budapest','+846027815','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1987','tamás.fisichella@gmail.com','Budapest','+7410283494','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1984','mateusz.lebron@gmail.com','Krakow','+7524497523','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1995','sándor.hamilton@hotmail.com','Budapest','+5882322850','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1969','john.hamilton@gmail.com','Krakow','+5474497824','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1975','pál.carrey@yahoo.com','Budapest','+9460840153','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1968','dániel.tompa@yahoo.com','Barcelona','+970401061','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1980','tim.hamilton@gmail.com','Miskolc','+4055172414','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1965','andy.carrey@yahoo.com','Krakow','+8038785129','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1965','miklós.tompa@yahoo.com','New York','+778692865','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1984','pál.tompa@gmail.com','Krakow','+4784613191','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1969','matthew.lebron@yahoo.com','Krakow','+9281294425','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1983','pál.ciacka@yahoo.com','Budapest','+1950087889','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1986','miklós.monoczki@hotmail.com','Budapest','+4490345584','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1981','attila.molnár@yahoo.com','Krakow','+2315103852','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1973','john.lebron@hotmail.com','Budapest','+6028602469','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1965','attila.fisichella@hotmail.com','Miskolc','+6069305920','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1968','mateusz.ostafil@gmail.com','Barcelona','+7035264453','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1979','andy.ciacka@yahoo.com','Budapest','+6444280628','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1973','tamás.salamon@gmail.com','Budapest','+4907895820','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1965','matthew.obama@gmail.com','Krakow','+7382713565','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1984','john.molnár@hotmail.com','New York','+1602541608','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1966','john.salamon@yahoo.com','Budapest','+322495482','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1994','pál.szodoray@gmail.com','Krakow','+3159659508','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1995','mateusz.ostafil@gmail.com','Miskolc','+910162327','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1975','tim.obama@gmail.com','Budapest','+6114086236','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1982','attila.ostafil@gmail.com','Krakow','+8565298814','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1985','giancarlo.fisichella@hotmail.com','Krakow','+8146762651','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1981','prezmek.ostafil@hotmail.com','New York','+7093686952','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1983','sándor.beöthy@hotmail.com','Krakow','+5228800018','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1978','dániel.ciacka@hotmail.com','Miskolc','+9215218487','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1980','mateusz.ostafil@hotmail.com','New York','+3011240626','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1990','tim.tompa@gmail.com','Budapest','+8831184885','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1966','miklós.szodoray@yahoo.com','Budapest','+923264646','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1977','prezmek.ciacka@yahoo.com','Krakow','+9309590848','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1991','giancarlo.hamilton@yahoo.com','New York','+3242597876','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1973','john.szodoray@yahoo.com','Miskolc','+3328792267','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1986','sándor.hamilton@hotmail.com','Barcelona','+4615202347','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1985','tim.ostafil@yahoo.com','Budapest','+9778952536','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1975','andy.ciacka@hotmail.com','Krakow','+8556209491','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1995','john.fisichella@hotmail.com','Miskolc','+3093722582','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1979','attila.fisichella@yahoo.com','Barcelona','+3116923597','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1968','mateusz.salamon@yahoo.com','Krakow','+2430412059','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1965','mateusz.hamilton@hotmail.com','New York','+7180981840','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1994','mateusz.salamon@gmail.com','Krakow','+3224104854','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1989','andy.ostafil@hotmail.com','Budapest','+4812989917','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1978','mateusz.lebron@hotmail.com','Barcelona','+3026444319','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1985','mateusz.ostafil@gmail.com','New York','+2778078854','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1976','miklós.lebron@gmail.com','Budapest','+5630868198','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1991','prezmek.carrey@hotmail.com','New York','+9274914021','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1965','tim.molnár@hotmail.com','Miskolc','+3623319248','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1981','matthew.ostafil@hotmail.com','New York','+7609879391','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1983','pál.carrey@gmail.com','Budapest','+8041915347','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1971','mateusz.fisichella@yahoo.com','New York','+4955479444','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1983','prezmek.carrey@yahoo.com','Miskolc','+2351597966','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1992','attila.lebron@yahoo.com','Miskolc','+9276542837','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1970','prezmek.monoczki@gmail.com','Krakow','+1950116864','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1972','tamás.tompa@yahoo.com','New York','+5202809658','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1973','miklós.monoczki@gmail.com','Miskolc','+6658856753','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1966','dániel.hamilton@yahoo.com','New York','+405741341','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1993','prezmek.beöthy@hotmail.com','Krakow','+7733054044','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1990','miklós.ostafil@yahoo.com','Krakow','+5586856015','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1981','giancarlo.ostafil@yahoo.com','Krakow','+1188148542','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1968','dániel.molnár@hotmail.com','Miskolc','+9607911346','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1970','prezmek.lebron@hotmail.com','Krakow','+3164412521','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1965','tim.ciacka@hotmail.com','Barcelona','+4183219651','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1972','dániel.salamon@gmail.com','New York','+4987156655','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1984','mateusz.tompa@yahoo.com','Miskolc','+7448442379','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1975','tim.szodoray@hotmail.com','Krakow','+7031322412','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1968','matthew.molnár@yahoo.com','Barcelona','+1546819184','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1977','sándor.obama@yahoo.com','Miskolc','+5149774395','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1974','matthew.ciacka@gmail.com','Barcelona','+2865142313','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1986','andy.ostafil@gmail.com','Krakow','+3834873102','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1968','pál.obama@gmail.com','New York','+5859651592','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1981','miklós.beöthy@yahoo.com','New York','+112937381','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1992','matthew.fisichella@yahoo.com','Miskolc','+4962672895','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1972','giancarlo.ostafil@gmail.com','Miskolc','+9386203857','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1987','mateusz.obama@gmail.com','Budapest','+7963030343','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1983','tim.szodoray@yahoo.com','Miskolc','+7947657733','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1970','giancarlo.szodoray@yahoo.com','New York','+4665640892','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1970','sándor.monoczki@yahoo.com','Miskolc','+6540656856','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1972','matthew.salamon@hotmail.com','Krakow','+1127798183','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1973','andy.ciacka@gmail.com','Barcelona','+2700185112','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1974','matthew.monoczki@yahoo.com','Budapest','+5804584264','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1979','tim.molnár@hotmail.com','Barcelona','+1820376596','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1968','prezmek.carrey@yahoo.com','Barcelona','+2686768537','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1975','attila.monoczki@yahoo.com','Miskolc','+449948898','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1989','john.obama@hotmail.com','Budapest','+6313256311','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1976','tamás.beöthy@yahoo.com','Krakow','+5423662256','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1984','matthew.monoczki@gmail.com','New York','+3172120288','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1982','john.obama@hotmail.com','Miskolc','+2602623828','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1995','tamás.beöthy@gmail.com','Miskolc','+6309295381','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1991','pál.molnár@gmail.com','Krakow','+9171697824','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1989','miklós.ciacka@gmail.com','New York','+8137845154','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1995','sándor.hamilton@hotmail.com','New York','+4749984628','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1978','john.tompa@gmail.com','Miskolc','+1772991271','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1971','prezmek.molnár@gmail.com','Barcelona','+5057377577','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1970','giancarlo.ciacka@gmail.com','New York','+4639433429','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1994','pál.monoczki@hotmail.com','Krakow','+2421718164','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1983','giancarlo.beöthy@gmail.com','Krakow','+8261294652','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1990','pál.carrey@yahoo.com','Miskolc','+2162142901','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1993','attila.hamilton@yahoo.com','Budapest','+9027755398','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1978','prezmek.beöthy@hotmail.com','Budapest','+8787093729','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1975','john.tompa@yahoo.com','Budapest','+3782201519','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1988','andy.lebron@gmail.com','Barcelona','+9378075894','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1995','sándor.salamon@yahoo.com','Krakow','+2309224333','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1990','andy.ostafil@yahoo.com','Miskolc','+3983419408','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1993','miklós.obama@yahoo.com','Miskolc','+6023198089','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1986','john.ciacka@hotmail.com','Budapest','+3202538015','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1974','tamás.fisichella@gmail.com','Barcelona','+5232663152','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1971','tim.hamilton@hotmail.com','New York','+3989971274','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1969','prezmek.salamon@hotmail.com','Krakow','+5602823655','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1988','john.obama@hotmail.com','Miskolc','+9814288246','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1967','mateusz.salamon@gmail.com','Krakow','+477255612','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1971','attila.molnár@gmail.com','Miskolc','+3844142111','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1982','prezmek.ciacka@hotmail.com','New York','+2784150053','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1982','giancarlo.monoczki@yahoo.com','Miskolc','+1612928899','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1974','john.ciacka@hotmail.com','Krakow','+7315992851','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1975','miklós.carrey@gmail.com','Budapest','+2864210075','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1967','mateusz.lebron@yahoo.com','Krakow','+942690881','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1989','andy.ciacka@yahoo.com','Budapest','+1526594633','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1966','prezmek.monoczki@hotmail.com','New York','+8756065415','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1985','prezmek.beöthy@gmail.com','Krakow','+7989128645','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1978','attila.molnár@hotmail.com','Miskolc','+471648277','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1979','prezmek.salamon@yahoo.com','New York','+1361610575','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1967','prezmek.ostafil@hotmail.com','Barcelona','+2124344505','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1970','john.ostafil@yahoo.com','Krakow','+9220035270','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1985','prezmek.lebron@gmail.com','Barcelona','+7383851796','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1991','giancarlo.obama@hotmail.com','Barcelona','+8429712010','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1974','dániel.obama@gmail.com','Barcelona','+9927848001','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1987','sándor.obama@hotmail.com','Barcelona','+6828956870','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1979','andy.salamon@gmail.com','Barcelona','+5415050736','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1989','giancarlo.fisichella@hotmail.com','New York','+8591979784','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1993','miklós.hamilton@gmail.com','Krakow','+2590386106','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1988','prezmek.beöthy@yahoo.com','Krakow','+4084585154','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1974','pál.molnár@gmail.com','New York','+3508772293','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1983','dániel.szodoray@yahoo.com','Budapest','+1255476717','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1987','dániel.fisichella@hotmail.com','New York','+9413041537','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1977','tim.tompa@gmail.com','New York','+9230561872','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1994','john.ciacka@yahoo.com','Miskolc','+4661872629','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1983','mateusz.szodoray@yahoo.com','Barcelona','+1752650547','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1976','tamás.obama@hotmail.com','Miskolc','+6656542778','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1975','matthew.salamon@gmail.com','Barcelona','+3656292955','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1987','tim.tompa@gmail.com','Barcelona','+8869355680','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1995','attila.szodoray@gmail.com','New York','+2300340483','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1994','tamás.lebron@gmail.com','Krakow','+5779147987','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1982','pál.ostafil@yahoo.com','New York','+5876908960','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1986','giancarlo.obama@gmail.com','Barcelona','+9900695596','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1969','andy.fisichella@gmail.com','Miskolc','+5698162677','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1975','john.carrey@hotmail.com','Miskolc','+1407078059','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1969','miklós.hamilton@hotmail.com','Budapest','+6841126858','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1965','tim.molnár@yahoo.com','Barcelona','+8243213133','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1978','attila.szodoray@hotmail.com','Budapest','+1036728034','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1967','matthew.monoczki@hotmail.com','Krakow','+277711410','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1990','tamás.molnár@yahoo.com','Budapest','+3114990113','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1987','attila.salamon@hotmail.com','Miskolc','+3280379145','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1972','pál.salamon@yahoo.com','Krakow','+334188200','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1988','john.carrey@hotmail.com','Barcelona','+3077316676','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1972','sándor.fisichella@gmail.com','Krakow','+6107285576','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1966','john.szodoray@yahoo.com','Budapest','+4483706007','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1977','attila.hamilton@yahoo.com','New York','+9847608861','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1986','tamás.tompa@yahoo.com','New York','+609813273','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1989','sándor.hamilton@gmail.com','Krakow','+9591952487','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1968','dániel.ostafil@yahoo.com','Krakow','+5866196752','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1986','matthew.salamon@gmail.com','Miskolc','+6879798956','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1971','sándor.tompa@yahoo.com','Miskolc','+7262267490','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1990','andy.ostafil@gmail.com','Krakow','+5747279418','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1982','tim.monoczki@yahoo.com','Budapest','+1862919739','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1995','mateusz.fisichella@hotmail.com','Barcelona','+4002576716','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1981','pál.hamilton@hotmail.com','Miskolc','+9467653086','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1990','miklós.tompa@gmail.com','Miskolc','+8061737593','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1971','andy.carrey@gmail.com','Krakow','+6067180163','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1971','giancarlo.obama@gmail.com','Krakow','+5298874509','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1981','tamás.salamon@yahoo.com','Miskolc','+3268738567','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1978','tamás.salamon@gmail.com','Krakow','+2535160153','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1985','matthew.obama@gmail.com','Krakow','+9081608097','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1983','tim.molnár@yahoo.com','Krakow','+7203664618','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1987','andy.beöthy@hotmail.com','Budapest','+7086815808','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1975','tamás.beöthy@yahoo.com','Miskolc','+9479929555','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1986','pál.szodoray@gmail.com','Miskolc','+8670510859','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1980','tamás.monoczki@hotmail.com','Budapest','+7878856930','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1978','tim.lebron@hotmail.com','Budapest','+3992525603','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1990','matthew.tompa@yahoo.com','Krakow','+158182025','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1987','sándor.molnár@yahoo.com','Budapest','+3024089545','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1988','pál.ostafil@yahoo.com','Miskolc','+7267268236','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1973','matthew.fisichella@yahoo.com','Barcelona','+968095154','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1968','prezmek.tompa@gmail.com','Krakow','+9919776483','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1977','tamás.ciacka@yahoo.com','Barcelona','+3588827067','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1970','sándor.salamon@yahoo.com','New York','+2677898200','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1988','mateusz.szodoray@hotmail.com','New York','+6691295644','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1993','mateusz.fisichella@yahoo.com','Barcelona','+4822503828','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1984','giancarlo.lebron@gmail.com','New York','+1663866788','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1993','tim.lebron@hotmail.com','Krakow','+6811207173','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1979','giancarlo.tompa@yahoo.com','Barcelona','+4825810546','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1980','prezmek.monoczki@hotmail.com','New York','+25384564','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1971','attila.ostafil@hotmail.com','Budapest','+7688978128','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1990','attila.molnár@yahoo.com','Miskolc','+4657506062','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1965','pál.salamon@gmail.com','Krakow','+4320552909','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1973','miklós.salamon@gmail.com','New York','+4291754209','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1987','dániel.carrey@yahoo.com','New York','+5322704133','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1973','giancarlo.salamon@yahoo.com','Budapest','+4647870017','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1967','prezmek.beöthy@yahoo.com','Budapest','+9974459707','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1973','andy.tompa@hotmail.com','Miskolc','+1870799253','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1971','dániel.lebron@hotmail.com','New York','+6303276677','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1970','dániel.ostafil@hotmail.com','Barcelona','+4817797735','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1987','john.ciacka@yahoo.com','New York','+1571835432','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1994','matthew.beöthy@yahoo.com','Miskolc','+8603960763','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1978','dániel.obama@yahoo.com','Barcelona','+9978834642','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1965','andy.salamon@gmail.com','Krakow','+5538265014','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1995','matthew.carrey@gmail.com','Budapest','+3015526419','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1977','mateusz.salamon@hotmail.com','New York','+594372672','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1995','giancarlo.ciacka@hotmail.com','Miskolc','+1866013411','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1977','pál.fisichella@hotmail.com','Miskolc','+7591708676','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1986','mateusz.hamilton@gmail.com','Barcelona','+662038933','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1970','giancarlo.tompa@yahoo.com','Krakow','+2189708307','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1968','sándor.salamon@gmail.com','Barcelona','+1258666835','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1970','tamás.monoczki@gmail.com','Miskolc','+8195235140','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1968','matthew.beöthy@yahoo.com','Barcelona','+5830185316','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1991','attila.fisichella@gmail.com','New York','+9356734261','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1982','sándor.molnár@yahoo.com','Miskolc','+6628594129','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1993','andy.hamilton@gmail.com','Budapest','+4144759972','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1968','andy.ostafil@hotmail.com','Barcelona','+9967698996','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1988','pál.tompa@yahoo.com','Miskolc','+8363091048','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1992','andy.monoczki@gmail.com','Budapest','+5497212123','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1976','miklós.monoczki@yahoo.com','New York','+6943926695','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1985','sándor.molnár@yahoo.com','Barcelona','+1009230837','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1974','giancarlo.salamon@hotmail.com','Budapest','+8867219475','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1970','miklós.fisichella@gmail.com','Krakow','+7215931169','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1975','tim.obama@hotmail.com','Barcelona','+5506830619','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1966','prezmek.obama@yahoo.com','Miskolc','+8559003362','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1978','attila.obama@hotmail.com','Barcelona','+9765678715','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1966','attila.beöthy@gmail.com','Krakow','+4087714125','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1983','tamás.ostafil@yahoo.com','New York','+1224537328','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1978','giancarlo.ciacka@gmail.com','Krakow','+8208578940','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1972','giancarlo.monoczki@gmail.com','New York','+1346137075','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1995','attila.beöthy@hotmail.com','Krakow','+2558062132','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1965','miklós.fisichella@hotmail.com','Miskolc','+6177470892','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1987','andy.ostafil@hotmail.com','Krakow','+9655011255','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1975','andy.hamilton@gmail.com','Budapest','+9396783037','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1974','giancarlo.salamon@gmail.com','Miskolc','+6738914274','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1988','andy.hamilton@yahoo.com','Krakow','+5815570384','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1985','dániel.tompa@gmail.com','New York','+1071764659','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1976','mateusz.monoczki@gmail.com','Budapest','+2256760076','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1978','giancarlo.hamilton@hotmail.com','Miskolc','+3780163158','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1991','prezmek.monoczki@hotmail.com','New York','+7076725269','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1967','john.tompa@yahoo.com','Krakow','+7763306161','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1976','giancarlo.fisichella@gmail.com','Barcelona','+8686548537','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1966','attila.molnár@yahoo.com','New York','+527576279','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1993','matthew.obama@gmail.com','Miskolc','+2641447714','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1991','mateusz.szodoray@yahoo.com','New York','+1286295799','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1991','attila.lebron@yahoo.com','New York','+5508105191','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1968','tim.fisichella@hotmail.com','Miskolc','+5081464519','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1973','sándor.fisichella@hotmail.com','New York','+2794971488','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1967','giancarlo.lebron@hotmail.com','Krakow','+7748899866','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1978','dániel.molnár@yahoo.com','Krakow','+7410675133','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1990','tim.ostafil@hotmail.com','Budapest','+6234207288','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1976','dániel.hamilton@gmail.com','Budapest','+366077464','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1994','attila.beöthy@yahoo.com','Miskolc','+7279020697','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1971','matthew.monoczki@gmail.com','New York','+9849628132','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1990','andy.molnár@yahoo.com','Miskolc','+3031321697','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1973','attila.tompa@hotmail.com','New York','+3476770483','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1974','giancarlo.beöthy@yahoo.com','New York','+684551035','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1987','prezmek.obama@gmail.com','Budapest','+8108657398','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1979','tamás.obama@gmail.com','New York','+4990307265','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1966','tamás.szodoray@hotmail.com','Krakow','+1774132800','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1995','john.salamon@hotmail.com','Budapest','+6660355580','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1973','mateusz.fisichella@gmail.com','New York','+9696549473','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1978','tim.salamon@hotmail.com','Barcelona','+169441752','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1986','pál.molnár@gmail.com','Miskolc','+7789902146','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1978','miklós.obama@yahoo.com','New York','+3126174357','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1988','miklós.carrey@yahoo.com','Miskolc','+3477426018','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1965','pál.salamon@yahoo.com','Krakow','+9311599252','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1972','giancarlo.hamilton@hotmail.com','Miskolc','+4571946596','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1992','prezmek.tompa@gmail.com','Miskolc','+6442643856','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1992','john.szodoray@yahoo.com','Barcelona','+3058733756','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1966','dániel.beöthy@yahoo.com','Barcelona','+2806110097','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1971','giancarlo.salamon@hotmail.com','Krakow','+48382398','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1968','mateusz.tompa@hotmail.com','Barcelona','+6629794229','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1984','miklós.monoczki@hotmail.com','New York','+2150455073','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1975','tamás.molnár@gmail.com','New York','+8945091284','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1969','matthew.hamilton@yahoo.com','Miskolc','+8590614960','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1968','sándor.beöthy@yahoo.com','Krakow','+3055488624','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1983','attila.salamon@yahoo.com','Krakow','+423359930','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1968','attila.carrey@yahoo.com','Barcelona','+182897172','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1979','attila.obama@hotmail.com','Krakow','+7614413370','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1989','andy.fisichella@yahoo.com','Miskolc','+4292380854','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1995','sándor.ostafil@yahoo.com','New York','+6800266781','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1981','john.molnár@hotmail.com','New York','+9753349825','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1977','mateusz.ostafil@gmail.com','New York','+640048803','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1976','prezmek.carrey@gmail.com','Barcelona','+1288994642','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1983','tim.lebron@hotmail.com','Miskolc','+1895242440','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1972','john.ciacka@gmail.com','Krakow','+2734994146','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1979','pál.tompa@yahoo.com','New York','+993453664','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1967','dániel.monoczki@yahoo.com','New York','+8708128732','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1976','miklós.beöthy@yahoo.com','Miskolc','+5708850796','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1968','tamás.obama@gmail.com','Miskolc','+9686132041','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1994','tamás.tompa@yahoo.com','New York','+5201263826','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1973','dániel.ostafil@yahoo.com','Barcelona','+3376171176','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1965','attila.hamilton@gmail.com','Budapest','+8655095349','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1991','pál.fisichella@gmail.com','New York','+4033060929','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1986','andy.fisichella@gmail.com','New York','+4925612977','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1975','matthew.fisichella@yahoo.com','Miskolc','+2736383420','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1976','andy.carrey@hotmail.com','Barcelona','+1242661964','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1965','tim.salamon@yahoo.com','Miskolc','+303087761','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1967','mateusz.lebron@yahoo.com','Budapest','+7675663541','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1972','dániel.monoczki@gmail.com','Barcelona','+9330099005','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1991','pál.fisichella@gmail.com','Budapest','+673351950','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1972','sándor.molnár@yahoo.com','Krakow','+5614749878','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1986','pál.ciacka@yahoo.com','Krakow','+8609226053','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1973','miklós.monoczki@yahoo.com','Budapest','+4755417592','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1987','pál.lebron@hotmail.com','Krakow','+1140023684','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1972','prezmek.ostafil@yahoo.com','Miskolc','+7958351374','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1978','miklós.szodoray@yahoo.com','Krakow','+5854591713','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1992','tim.salamon@yahoo.com','Miskolc','+8302385218','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1965','attila.szodoray@yahoo.com','Barcelona','+807845089','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1976','andy.tompa@hotmail.com','Barcelona','+4470158111','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1982','pál.ostafil@gmail.com','Budapest','+6017738955','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1986','giancarlo.carrey@yahoo.com','Budapest','+3475190182','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1979','attila.beöthy@hotmail.com','New York','+2006224635','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1992','sándor.fisichella@hotmail.com','Budapest','+6572554784','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1971','andy.ciacka@hotmail.com','Miskolc','+1858982104','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1967','miklós.salamon@gmail.com','Krakow','+1237127662','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1974','matthew.ostafil@gmail.com','Budapest','+1442011611','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1990','giancarlo.lebron@hotmail.com','Miskolc','+1734756115','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1978','miklós.ostafil@hotmail.com','New York','+2606751082','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1984','attila.salamon@gmail.com','Budapest','+3965311875','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1984','prezmek.lebron@hotmail.com','Budapest','+9749032740','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1992','mateusz.ostafil@gmail.com','Miskolc','+5328016887','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1989','john.carrey@hotmail.com','Krakow','+7594836337','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1976','andy.ostafil@hotmail.com','New York','+1582451694','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1971','dániel.molnár@yahoo.com','Barcelona','+7996689776','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1994','tim.beöthy@hotmail.com','Barcelona','+1316227806','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1980','pál.tompa@gmail.com','New York','+1587312932','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1988','john.ostafil@yahoo.com','Budapest','+6728720356','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1973','john.ciacka@hotmail.com','Krakow','+8826885820','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1979','sándor.hamilton@yahoo.com','Budapest','+7474256346','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1970','miklós.szodoray@yahoo.com','Budapest','+8584116473','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1973','matthew.hamilton@gmail.com','Budapest','+9954345202','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1985','tamás.beöthy@yahoo.com','New York','+7289222476','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1987','dániel.monoczki@hotmail.com','Budapest','+7975998989','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1987','attila.hamilton@yahoo.com','Barcelona','+1260036576','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1966','sándor.carrey@hotmail.com','Miskolc','+4694836103','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1992','matthew.molnár@gmail.com','Barcelona','+5555639287','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1989','matthew.beöthy@yahoo.com','Barcelona','+629047032','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1976','matthew.lebron@yahoo.com','Krakow','+8421713274','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1985','attila.ciacka@yahoo.com','New York','+9163953220','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1980','matthew.monoczki@yahoo.com','Budapest','+3808671077','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1987','prezmek.ciacka@gmail.com','Budapest','+6923412744','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1968','john.molnár@hotmail.com','New York','+9012492057','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1982','sándor.ciacka@hotmail.com','Miskolc','+533029003','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1985','tim.beöthy@yahoo.com','Budapest','+845571744','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1969','dániel.fisichella@gmail.com','Budapest','+316503263','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1995','andy.ciacka@gmail.com','Budapest','+49936831','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1968','tim.beöthy@hotmail.com','Miskolc','+4744655689','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1976','tamás.ciacka@yahoo.com','Barcelona','+2500604765','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1981','miklós.hamilton@gmail.com','Miskolc','+7110019645','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1969','prezmek.carrey@hotmail.com','Budapest','+4878932768','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1990','miklós.szodoray@yahoo.com','Barcelona','+9445845102','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1967','tamás.hamilton@hotmail.com','Miskolc','+3197811612','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1976','attila.lebron@yahoo.com','Krakow','+6718947484','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1966','pál.fisichella@hotmail.com','Budapest','+5967450051','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1993','dániel.fisichella@hotmail.com','Barcelona','+8127239989','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1994','miklós.fisichella@yahoo.com','Budapest','+8183666773','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1979','john.carrey@hotmail.com','New York','+988120892','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1993','giancarlo.salamon@gmail.com','Barcelona','+6980460502','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1990','giancarlo.lebron@gmail.com','Barcelona','+6863805374','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1967','matthew.molnár@yahoo.com','Miskolc','+6734049080','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1993','attila.ciacka@yahoo.com','Miskolc','+9553264444','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1991','andy.beöthy@yahoo.com','Miskolc','+9762215963','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1977','miklós.salamon@yahoo.com','Miskolc','+1991455052','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1983','tamás.obama@yahoo.com','Barcelona','+6440847940','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1980','giancarlo.salamon@hotmail.com','Krakow','+6517331238','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1979','pál.hamilton@yahoo.com','Budapest','+4217591412','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1975','dániel.carrey@gmail.com','Budapest','+3413732712','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1979','matthew.molnár@gmail.com','New York','+3478854795','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1977','tim.ostafil@hotmail.com','Miskolc','+5788371107','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1991','matthew.ciacka@yahoo.com','Krakow','+2179824117','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1971','dániel.hamilton@yahoo.com','New York','+7573409309','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1984','prezmek.hamilton@yahoo.com','Miskolc','+1614000709','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1968','tamás.szodoray@gmail.com','Krakow','+4894075998','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1977','tim.ostafil@gmail.com','Barcelona','+649914206','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1980','prezmek.monoczki@hotmail.com','Miskolc','+3937004264','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1985','tim.monoczki@gmail.com','Krakow','+9686992412','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1975','andy.beöthy@yahoo.com','Budapest','+8688502268','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1985','dániel.molnár@yahoo.com','New York','+1793066545','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1993','pál.szodoray@gmail.com','New York','+1230758125','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1980','sándor.tompa@yahoo.com','Miskolc','+4127653499','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1990','tamás.ciacka@yahoo.com','New York','+2752881513','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1973','andy.lebron@yahoo.com','Barcelona','+3547598344','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1976','tim.molnár@gmail.com','Miskolc','+3963464929','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1994','attila.fisichella@yahoo.com','New York','+1833965425','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1980','tim.beöthy@gmail.com','Miskolc','+1189849942','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1980','attila.ciacka@yahoo.com','Krakow','+6851404138','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1983','andy.lebron@gmail.com','Barcelona','+4875624847','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1969','dániel.beöthy@hotmail.com','Krakow','+3629451621','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1995','andy.fisichella@hotmail.com','Krakow','+5546024001','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1988','mateusz.monoczki@hotmail.com','Barcelona','+8975796960','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1993','dániel.szodoray@gmail.com','Barcelona','+8177944303','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1988','mateusz.monoczki@gmail.com','Miskolc','+475248178','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1973','pál.ciacka@gmail.com','Miskolc','+6875510705','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1973','attila.ciacka@yahoo.com','Barcelona','+5086858606','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1988','dániel.monoczki@hotmail.com','Krakow','+134779190','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1984','tim.fisichella@hotmail.com','Miskolc','+973421408','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1991','mateusz.carrey@yahoo.com','Barcelona','+7825620370','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1972','attila.hamilton@gmail.com','Krakow','+965392683','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1965','pál.monoczki@hotmail.com','Miskolc','+2912326557','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1992','prezmek.monoczki@yahoo.com','Krakow','+5537724275','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1974','sándor.molnár@gmail.com','Budapest','+6500808124','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1973','attila.ostafil@gmail.com','Budapest','+1176931437','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1993','john.hamilton@yahoo.com','Miskolc','+1217735746','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1968','pál.carrey@hotmail.com','Miskolc','+9190982126','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1995','sándor.lebron@yahoo.com','Miskolc','+9528612498','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1989','dániel.beöthy@gmail.com','Barcelona','+7872955782','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1970','tim.ostafil@gmail.com','New York','+7926183540','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1967','dániel.carrey@yahoo.com','Krakow','+5645655667','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1993','prezmek.beöthy@hotmail.com','Krakow','+8972631598','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1978','giancarlo.ciacka@gmail.com','Budapest','+7608920518','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1994','miklós.beöthy@gmail.com','Barcelona','+3410786657','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1972','john.lebron@yahoo.com','Miskolc','+7358869031','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1978','sándor.obama@hotmail.com','Miskolc','+6258774628','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1975','attila.szodoray@yahoo.com','Budapest','+6908849319','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1975','tim.monoczki@hotmail.com','New York','+6941073684','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1976','sándor.beöthy@hotmail.com','Budapest','+9456483730','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1987','tamás.ciacka@yahoo.com','Barcelona','+4493692059','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1986','giancarlo.obama@hotmail.com','New York','+2588812379','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1974','attila.beöthy@gmail.com','Miskolc','+7647716821','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1993','andy.hamilton@hotmail.com','Krakow','+4498927027','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1983','prezmek.beöthy@hotmail.com','New York','+434316273','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1988','andy.monoczki@gmail.com','Miskolc','+1735854693','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1972','tamás.tompa@gmail.com','Budapest','+1313914751','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1971','tim.monoczki@gmail.com','Krakow','+3046761833','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1993','prezmek.beöthy@gmail.com','Miskolc','+5930367249','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1991','giancarlo.ciacka@yahoo.com','Budapest','+644143724','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1989','miklós.tompa@gmail.com','New York','+3218673439','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1977','matthew.fisichella@yahoo.com','Miskolc','+727538707','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1987','tamás.ciacka@gmail.com','Budapest','+6277090911','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1978','giancarlo.ostafil@gmail.com','Budapest','+9068936679','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1995','giancarlo.salamon@gmail.com','Barcelona','+7915469533','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1983','john.fisichella@yahoo.com','Barcelona','+315592059','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1972','matthew.tompa@yahoo.com','Krakow','+5438741661','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1994','prezmek.salamon@hotmail.com','Krakow','+5119009645','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1981','prezmek.obama@hotmail.com','Miskolc','+9147406098','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1988','prezmek.monoczki@hotmail.com','Miskolc','+6237634853','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1972','mateusz.beöthy@yahoo.com','Budapest','+5994184999','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1988','sándor.lebron@hotmail.com','Budapest','+8740787458','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1984','sándor.carrey@yahoo.com','New York','+9941361698','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1977','matthew.obama@hotmail.com','New York','+969140688','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1988','prezmek.ostafil@hotmail.com','New York','+5643618427','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1976','andy.ostafil@gmail.com','Krakow','+950615002','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1990','prezmek.hamilton@hotmail.com','Miskolc','+1339969296','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1993','tamás.hamilton@yahoo.com','Krakow','+1836425900','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1966','tim.ciacka@hotmail.com','Krakow','+5838289341','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1989','andy.lebron@gmail.com','Barcelona','+8731708160','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1971','miklós.beöthy@yahoo.com','New York','+6785555039','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1978','attila.ciacka@gmail.com','Budapest','+3766403627','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1985','john.molnár@hotmail.com','New York','+6379840732','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1990','dániel.obama@gmail.com','Miskolc','+4835557544','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1974','sándor.molnár@hotmail.com','Miskolc','+8119935875','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1993','dániel.monoczki@hotmail.com','New York','+3906564674','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1979','miklós.tompa@yahoo.com','Krakow','+6219602608','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1983','giancarlo.obama@hotmail.com','New York','+8148200659','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1965','sándor.fisichella@gmail.com','Miskolc','+5381849071','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1987','dániel.salamon@hotmail.com','Krakow','+6595216626','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1970','dániel.salamon@hotmail.com','Budapest','+260534025','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1981','tamás.carrey@gmail.com','Krakow','+8324336751','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1987','matthew.molnár@gmail.com','Miskolc','+7094914753','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1980','john.tompa@hotmail.com','New York','+6194426255','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1988','prezmek.tompa@hotmail.com','Budapest','+7629862230','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1971','john.lebron@hotmail.com','Miskolc','+7131525866','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1966','dániel.tompa@gmail.com','Barcelona','+5571736036','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1986','giancarlo.tompa@hotmail.com','Krakow','+2792471324','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1975','mateusz.lebron@gmail.com','Budapest','+2649969117','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1994','prezmek.hamilton@yahoo.com','Budapest','+1086375441','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1978','tim.beöthy@yahoo.com','New York','+2623850348','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1987','john.lebron@yahoo.com','Budapest','+8172129933','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1992','andy.salamon@gmail.com','Miskolc','+20996697','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1991','tim.carrey@yahoo.com','Miskolc','+1985918163','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1981','prezmek.ciacka@hotmail.com','New York','+1058504249','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1983','sándor.ostafil@gmail.com','Miskolc','+2436461853','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1972','giancarlo.obama@gmail.com','Barcelona','+762799426','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1981','dániel.molnár@gmail.com','New York','+1494031176','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1978','john.beöthy@gmail.com','Budapest','+5796680829','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1986','john.beöthy@gmail.com','Barcelona','+3838690934','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1977','tim.salamon@gmail.com','Budapest','+18333078','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1968','matthew.szodoray@gmail.com','New York','+9241694071','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1992','andy.beöthy@gmail.com','Barcelona','+2671050073','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1987','giancarlo.fisichella@gmail.com','Krakow','+3912002101','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1987','tim.monoczki@hotmail.com','New York','+363164495','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1975','attila.molnár@yahoo.com','Miskolc','+9573546052','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1974','matthew.fisichella@hotmail.com','Budapest','+6664878570','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1995','attila.ostafil@gmail.com','New York','+209447255','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1979','john.salamon@yahoo.com','New York','+5201013158','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1972','tamás.szodoray@hotmail.com','Barcelona','+7578342779','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1969','giancarlo.ostafil@gmail.com','Krakow','+8131048194','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1994','john.monoczki@gmail.com','Budapest','+8488708317','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1978','john.szodoray@hotmail.com','New York','+3304534293','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1969','prezmek.monoczki@yahoo.com','Barcelona','+9448760470','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1994','tim.fisichella@gmail.com','Barcelona','+866181524','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1993','prezmek.beöthy@yahoo.com','Miskolc','+4883723555','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1986','miklós.lebron@gmail.com','New York','+1540462654','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1990','tim.ostafil@hotmail.com','New York','+1741650001','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1982','dániel.molnár@hotmail.com','New York','+4859868350','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1972','sándor.carrey@gmail.com','Miskolc','+4882041942','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1969','dániel.hamilton@gmail.com','Miskolc','+5995280728','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1980','sándor.ciacka@gmail.com','New York','+9488879389','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1995','tamás.szodoray@gmail.com','Miskolc','+824681716','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1967','mateusz.lebron@gmail.com','Krakow','+3683637257','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1991','dániel.salamon@gmail.com','New York','+7099886407','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1987','mateusz.tompa@gmail.com','Budapest','+9923348654','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1987','andy.obama@hotmail.com','New York','+5217759995','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1979','sándor.tompa@yahoo.com','Barcelona','+1782091009','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1991','andy.beöthy@gmail.com','Budapest','+4215497653','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1966','sándor.beöthy@hotmail.com','Krakow','+666321304','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1982','miklós.hamilton@gmail.com','New York','+7626453041','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1989','andy.obama@gmail.com','Miskolc','+3001640343','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1995','mateusz.ostafil@yahoo.com','Barcelona','+53148901','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1985','prezmek.monoczki@yahoo.com','Miskolc','+4434703288','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1984','dániel.monoczki@gmail.com','New York','+443457945','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1968','matthew.molnár@hotmail.com','Barcelona','+9242203562','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1978','sándor.fisichella@yahoo.com','New York','+1503184791','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1995','prezmek.monoczki@gmail.com','Miskolc','+6785715698','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1988','mateusz.ciacka@hotmail.com','New York','+2232785531','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1978','andy.carrey@gmail.com','Miskolc','+8829499132','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1969','matthew.salamon@hotmail.com','Barcelona','+293464375','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1985','tim.ostafil@yahoo.com','Miskolc','+4676914099','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1965','mateusz.carrey@hotmail.com','New York','+7746148395','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1967','miklós.ciacka@yahoo.com','Krakow','+6908546871','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1976','pál.monoczki@hotmail.com','Krakow','+3526738060','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1966','mateusz.szodoray@gmail.com','Barcelona','+6139440150','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1991','attila.beöthy@yahoo.com','New York','+6112691931','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1985','matthew.monoczki@gmail.com','New York','+4136161360','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1970','dániel.monoczki@gmail.com','Budapest','+9019189291','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1995','dániel.lebron@gmail.com','Miskolc','+2871750340','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1985','prezmek.molnár@yahoo.com','Krakow','+7030409034','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1991','attila.beöthy@gmail.com','Budapest','+3510371101','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1983','andy.monoczki@hotmail.com','Miskolc','+5612191714','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1976','dániel.carrey@yahoo.com','Budapest','+5784897388','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1976','sándor.ciacka@yahoo.com','Krakow','+5339650238','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1982','tamás.szodoray@yahoo.com','New York','+8084301598','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1966','john.lebron@hotmail.com','Krakow','+6506528623','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1973','pál.obama@gmail.com','New York','+5920897385','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1992','andy.fisichella@hotmail.com','Barcelona','+2712170696','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1994','andy.ostafil@gmail.com','Krakow','+4641484925','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1973','mateusz.fisichella@yahoo.com','New York','+7624504246','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1967','tim.szodoray@yahoo.com','New York','+94082297','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1988','sándor.ciacka@gmail.com','New York','+2838015919','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1972','mateusz.monoczki@yahoo.com','Miskolc','+3050425872','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1979','miklós.lebron@yahoo.com','Budapest','+1862107047','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1991','giancarlo.monoczki@yahoo.com','Budapest','+7488608433','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1994','andy.szodoray@yahoo.com','Krakow','+6856762020','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1974','sándor.molnár@yahoo.com','Miskolc','+1791547106','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1993','sándor.ciacka@yahoo.com','Barcelona','+9200437006','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1979','giancarlo.beöthy@gmail.com','New York','+4390951915','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1991','dániel.obama@hotmail.com','Miskolc','+7048934533','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1968','prezmek.obama@yahoo.com','New York','+2959995583','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1987','giancarlo.fisichella@hotmail.com','Krakow','+5077211815','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1982','tamás.fisichella@yahoo.com','Budapest','+3521351589','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1990','giancarlo.salamon@yahoo.com','Krakow','+6750754879','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1971','matthew.lebron@yahoo.com','Budapest','+3255464148','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1969','mateusz.obama@gmail.com','Budapest','+802485340','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1982','tamás.fisichella@gmail.com','Krakow','+1132986727','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1984','sándor.carrey@yahoo.com','Krakow','+5641351138','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1979','attila.ostafil@gmail.com','New York','+4142475672','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1992','giancarlo.fisichella@gmail.com','Krakow','+9401323265','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1987','prezmek.obama@hotmail.com','New York','+3030179158','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1978','tamás.molnár@yahoo.com','Budapest','+7475407392','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1967','attila.monoczki@hotmail.com','New York','+3887963196','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1965','matthew.ciacka@yahoo.com','Krakow','+9820688562','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1971','john.ciacka@hotmail.com','Krakow','+3436578285','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1983','attila.szodoray@gmail.com','Miskolc','+2137094836','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1967','dániel.tompa@yahoo.com','Krakow','+4256198735','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1980','giancarlo.lebron@gmail.com','Barcelona','+1872369685','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1989','dániel.lebron@yahoo.com','Budapest','+377031801','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1995','dániel.salamon@yahoo.com','Budapest','+6040956731','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1992','andy.monoczki@yahoo.com','Budapest','+250986356','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1983','prezmek.szodoray@hotmail.com','New York','+124312231','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1973','matthew.monoczki@gmail.com','Miskolc','+3430917625','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1976','sándor.beöthy@yahoo.com','Barcelona','+209646111','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1990','dániel.szodoray@hotmail.com','Budapest','+8031806319','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1971','matthew.obama@hotmail.com','New York','+2327895758','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1976','andy.fisichella@gmail.com','Budapest','+3047985636','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1965','matthew.beöthy@gmail.com','Barcelona','+6234278764','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1975','andy.fisichella@hotmail.com','Barcelona','+6826565418','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1987','sándor.molnár@hotmail.com','Miskolc','+6691942122','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1976','tim.lebron@hotmail.com','Budapest','+3539745687','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1968','giancarlo.molnár@yahoo.com','Budapest','+8504180634','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1985','giancarlo.tompa@hotmail.com','Budapest','+2532658212','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1979','prezmek.carrey@gmail.com','Budapest','+7820880264','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1979','matthew.molnár@yahoo.com','New York','+6763245830','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1976','matthew.szodoray@hotmail.com','Barcelona','+5299059552','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1982','miklós.monoczki@gmail.com','Miskolc','+4388831002','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1973','john.molnár@hotmail.com','Miskolc','+9928629030','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1967','andy.tompa@yahoo.com','Miskolc','+9226328089','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1993','miklós.hamilton@hotmail.com','Miskolc','+9296147263','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1994','mateusz.obama@gmail.com','Krakow','+598506067','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1981','tim.lebron@gmail.com','Krakow','+4271750337','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1987','dániel.monoczki@yahoo.com','Barcelona','+6894353833','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1965','john.beöthy@hotmail.com','Krakow','+8976026806','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1966','dániel.hamilton@gmail.com','Barcelona','+5498646325','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1986','tamás.fisichella@gmail.com','New York','+4382653804','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1995','mateusz.tompa@gmail.com','Krakow','+8620344236','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1967','tim.fisichella@yahoo.com','New York','+2145153615','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1984','tamás.lebron@gmail.com','Budapest','+2206363839','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1967','tim.hamilton@hotmail.com','Budapest','+6967677030','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1986','prezmek.ostafil@gmail.com','Krakow','+7718945484','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1988','miklós.monoczki@gmail.com','Budapest','+9951836915','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1989','andy.obama@gmail.com','Barcelona','+4026669569','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1989','dániel.szodoray@yahoo.com','New York','+6830190619','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1978','dániel.molnár@yahoo.com','Budapest','+2737513845','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1967','attila.fisichella@yahoo.com','Krakow','+1162125907','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1969','tamás.fisichella@gmail.com','Miskolc','+6540921597','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1983','giancarlo.molnár@hotmail.com','Miskolc','+8534900812','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1975','andy.obama@hotmail.com','Budapest','+9343658749','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1989','tamás.tompa@hotmail.com','Miskolc','+6073610622','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1976','pál.szodoray@yahoo.com','New York','+4431552464','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1981','tim.ciacka@yahoo.com','Miskolc','+4409991355','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1967','matthew.obama@hotmail.com','Barcelona','+3151709819','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1986','mateusz.ciacka@yahoo.com','Miskolc','+4339200220','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1982','dániel.lebron@yahoo.com','Miskolc','+6329373075','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1968','attila.monoczki@yahoo.com','New York','+9856779330','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1977','giancarlo.szodoray@hotmail.com','Barcelona','+4373523479','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1966','pál.fisichella@hotmail.com','Budapest','+7533120428','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1965','andy.ciacka@yahoo.com','Miskolc','+3259058973','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1984','prezmek.salamon@gmail.com','Krakow','+7729883592','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1986','miklós.salamon@yahoo.com','Krakow','+8040431452','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1971','dániel.beöthy@gmail.com','New York','+7708953966','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1992','attila.fisichella@gmail.com','Krakow','+2348827938','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1967','prezmek.beöthy@yahoo.com','New York','+3727975610','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1985','tim.salamon@hotmail.com','New York','+1679927626','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1978','prezmek.hamilton@hotmail.com','Krakow','+9238753723','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1981','john.salamon@gmail.com','Krakow','+1757265136','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1969','john.obama@hotmail.com','Budapest','+9808151288','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1991','pál.molnár@hotmail.com','Miskolc','+7656263432','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1983','matthew.hamilton@yahoo.com','Krakow','+5931438765','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1967','john.tompa@yahoo.com','Budapest','+2042544122','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1988','pál.salamon@gmail.com','Barcelona','+3461066633','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1974','giancarlo.ostafil@yahoo.com','New York','+6959593974','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1987','mateusz.szodoray@gmail.com','Budapest','+6094134809','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1982','andy.salamon@yahoo.com','Barcelona','+8650206276','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1995','sándor.carrey@gmail.com','Barcelona','+9381754027','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1967','tim.lebron@gmail.com','Barcelona','+5410057158','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1969','tim.beöthy@yahoo.com','Krakow','+4979252857','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1988','mateusz.hamilton@yahoo.com','Barcelona','+5491315220','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1979','prezmek.monoczki@hotmail.com','Barcelona','+8233777479','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1980','matthew.ciacka@gmail.com','Miskolc','+5207116874','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1984','tamás.ciacka@yahoo.com','Krakow','+2990784764','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1971','john.obama@gmail.com','Krakow','+8709459922','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1987','dániel.tompa@yahoo.com','New York','+9990283478','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1972','tamás.hamilton@hotmail.com','Barcelona','+894530490','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1972','mateusz.monoczki@yahoo.com','New York','+9562839288','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1993','pál.tompa@hotmail.com','Miskolc','+8266008290','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1992','sándor.molnár@gmail.com','New York','+7670421499','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1966','mateusz.ciacka@yahoo.com','Krakow','+1395326909','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1994','andy.szodoray@hotmail.com','Krakow','+9364813404','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1972','matthew.fisichella@gmail.com','Miskolc','+1186862365','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1995','miklós.tompa@gmail.com','Miskolc','+1499345840','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1968','giancarlo.beöthy@hotmail.com','Krakow','+1364267469','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1983','attila.salamon@hotmail.com','Barcelona','+1414254923','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1983','andy.lebron@yahoo.com','Krakow','+92769089','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1978','giancarlo.hamilton@gmail.com','New York','+3871859649','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1966','dániel.lebron@yahoo.com','Miskolc','+5447109550','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1992','tamás.szodoray@hotmail.com','Budapest','+5159622575','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1982','mateusz.beöthy@hotmail.com','Krakow','+795947937','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1985','dániel.tompa@yahoo.com','Miskolc','+938240020','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1978','tim.salamon@hotmail.com','Barcelona','+9664110271','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1995','tamás.lebron@yahoo.com','Miskolc','+1678304753','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1975','mateusz.salamon@gmail.com','Barcelona','+8872860862','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1989','miklós.carrey@hotmail.com','Barcelona','+628887165','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1993','mateusz.salamon@hotmail.com','Barcelona','+3683556152','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1983','mateusz.monoczki@gmail.com','Krakow','+8460166408','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1981','andy.lebron@hotmail.com','Miskolc','+3883473490','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1967','dániel.ciacka@yahoo.com','Budapest','+9140356822','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1985','tamás.szodoray@yahoo.com','Krakow','+839250307','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1989','john.tompa@hotmail.com','Miskolc','+6401840635','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1973','miklós.obama@hotmail.com','Krakow','+224596710','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1975','prezmek.salamon@hotmail.com','Krakow','+68186090','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1982','mateusz.carrey@gmail.com','Miskolc','+1009042044','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1972','giancarlo.ostafil@hotmail.com','Barcelona','+5568228826','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1983','sándor.salamon@hotmail.com','Miskolc','+9314667809','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1978','john.carrey@gmail.com','Budapest','+294238644','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1986','andy.monoczki@hotmail.com','Miskolc','+7016137402','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1965','giancarlo.lebron@gmail.com','New York','+3580337292','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1993','john.beöthy@gmail.com','Barcelona','+2772571578','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1991','tim.lebron@gmail.com','Budapest','+2339264198','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1984','mateusz.lebron@hotmail.com','Barcelona','+9320825684','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1990','sándor.ciacka@gmail.com','Budapest','+6780778113','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1984','tamás.molnár@yahoo.com','Barcelona','+2059295777','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1995','dániel.salamon@gmail.com','Krakow','+4803041252','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1966','john.monoczki@hotmail.com','New York','+324210209','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1978','prezmek.hamilton@yahoo.com','Krakow','+958093675','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1985','mateusz.obama@gmail.com','Krakow','+2306839573','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1989','prezmek.ostafil@yahoo.com','Budapest','+3362789276','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1989','tamás.obama@hotmail.com','Barcelona','+5217894614','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1967','pál.ciacka@gmail.com','Miskolc','+8308893534','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1980','prezmek.fisichella@yahoo.com','Budapest','+1056933695','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1970','tamás.lebron@gmail.com','New York','+8927269631','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1967','dániel.obama@yahoo.com','Krakow','+4176576045','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1983','tamás.ostafil@hotmail.com','Budapest','+2984017117','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1975','pál.monoczki@gmail.com','Miskolc','+8942066269','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1976','matthew.carrey@gmail.com','Miskolc','+8991630399','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1993','john.monoczki@yahoo.com','New York','+5344345713','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1989','andy.lebron@yahoo.com','New York','+1666598629','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1966','tamás.salamon@gmail.com','Krakow','+1887408379','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1975','miklós.lebron@gmail.com','Barcelona','+1462610','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1991','mateusz.tompa@yahoo.com','Barcelona','+3949824400','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1967','miklós.monoczki@yahoo.com','Krakow','+7174990514','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1972','andy.carrey@yahoo.com','Budapest','+6426686911','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1990','tim.szodoray@hotmail.com','Miskolc','+3296420496','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1966','prezmek.beöthy@gmail.com','Barcelona','+5010077510','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1991','sándor.molnár@gmail.com','Miskolc','+6293811023','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1976','prezmek.obama@yahoo.com','Krakow','+1579972227','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1993','giancarlo.beöthy@hotmail.com','Budapest','+7653747013','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1971','tim.tompa@yahoo.com','Miskolc','+3035253066','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1994','pál.ciacka@yahoo.com','New York','+7018033431','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1973','matthew.ciacka@yahoo.com','Krakow','+1770272175','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1978','attila.ciacka@yahoo.com','Krakow','+6425385101','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1985','dániel.ciacka@gmail.com','Barcelona','+9163271801','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1970','miklós.salamon@hotmail.com','Miskolc','+7096857513','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1977','mateusz.ciacka@yahoo.com','New York','+1378355573','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1973','giancarlo.molnár@hotmail.com','Budapest','+7295836978','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1970','tim.szodoray@hotmail.com','Budapest','+7476270711','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1987','sándor.lebron@hotmail.com','Budapest','+1619222373','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1969','john.ostafil@gmail.com','Budapest','+8564572421','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1972','sándor.beöthy@gmail.com','New York','+896504939','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1988','tamás.lebron@hotmail.com','Barcelona','+905123905','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1993','giancarlo.monoczki@hotmail.com','Krakow','+6277703655','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1978','dániel.tompa@gmail.com','New York','+9894445659','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1973','andy.molnár@yahoo.com','Budapest','+7331261844','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1991','john.salamon@yahoo.com','Budapest','+1971136881','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1987','giancarlo.hamilton@hotmail.com','Miskolc','+6353998671','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1970','dániel.szodoray@gmail.com','New York','+3937295647','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1994','matthew.monoczki@gmail.com','New York','+3031639779','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1981','matthew.ostafil@yahoo.com','Miskolc','+4175665427','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1989','pál.tompa@yahoo.com','Krakow','+5739667324','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1965','matthew.salamon@hotmail.com','New York','+3176628126','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1991','pál.ostafil@hotmail.com','Budapest','+1423213518','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1969','miklós.molnár@hotmail.com','Miskolc','+6713759397','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1968','tim.hamilton@gmail.com','Barcelona','+4522436234','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1974','dániel.fisichella@hotmail.com','Miskolc','+8180396879','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1975','miklós.ostafil@hotmail.com','Miskolc','+824732080','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1980','pál.szodoray@hotmail.com','Barcelona','+1049398602','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1982','attila.fisichella@gmail.com','New York','+7223509915','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1971','tim.tompa@yahoo.com','Miskolc','+1196474664','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1990','john.szodoray@gmail.com','Krakow','+5858848427','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1979','sándor.salamon@hotmail.com','Barcelona','+3528947382','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1984','john.hamilton@yahoo.com','Budapest','+1117362731','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1975','giancarlo.hamilton@hotmail.com','New York','+8839449501','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1993','giancarlo.fisichella@yahoo.com','Miskolc','+7993807762','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1969','pál.molnár@hotmail.com','Budapest','+4402065050','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1972','pál.carrey@hotmail.com','Budapest','+8791572361','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1995','miklós.monoczki@yahoo.com','Miskolc','+3511859559','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1967','attila.carrey@gmail.com','Krakow','+3334344001','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1980','pál.beöthy@gmail.com','Miskolc','+2832449827','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1982','matthew.ciacka@hotmail.com','Miskolc','+9895562492','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1989','matthew.ostafil@gmail.com','Barcelona','+1642261687','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1970','sándor.molnár@yahoo.com','New York','+5782521619','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1983','andy.fisichella@yahoo.com','Barcelona','+9211871140','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1974','andy.carrey@gmail.com','Budapest','+7617195105','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1977','sándor.szodoray@yahoo.com','Barcelona','+9620314398','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1995','tim.monoczki@yahoo.com','Miskolc','+4867662897','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1979','sándor.hamilton@hotmail.com','New York','+3798540122','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1991','mateusz.lebron@hotmail.com','Miskolc','+3049302791','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1978','tamás.molnár@yahoo.com','Miskolc','+1517960375','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1977','attila.molnár@gmail.com','Budapest','+7174613115','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1978','pál.szodoray@yahoo.com','Krakow','+6160343554','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1974','pál.fisichella@hotmail.com','Krakow','+3296723540','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1989','mateusz.salamon@yahoo.com','Budapest','+154572969','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1969','andy.hamilton@hotmail.com','Krakow','+7810775056','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1988','attila.hamilton@gmail.com','Barcelona','+4228877406','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1995','prezmek.molnár@gmail.com','Budapest','+4293263498','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1984','andy.ostafil@hotmail.com','Miskolc','+376604739','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1982','pál.obama@hotmail.com','New York','+774645319','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1981','matthew.obama@yahoo.com','Miskolc','+1056596414','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1974','miklós.ostafil@hotmail.com','Barcelona','+2228115352','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1974','andy.lebron@gmail.com','New York','+8610847597','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1979','prezmek.carrey@yahoo.com','Barcelona','+596786524','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1983','miklós.hamilton@yahoo.com','Barcelona','+6924750242','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1975','miklós.molnár@yahoo.com','Krakow','+4161342375','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1988','pál.obama@gmail.com','Barcelona','+5858753643','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1965','mateusz.szodoray@hotmail.com','Miskolc','+3133892955','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1994','dániel.hamilton@yahoo.com','Miskolc','+7143933522','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1966','tim.hamilton@gmail.com','Miskolc','+8806951810','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1973','dániel.hamilton@yahoo.com','Barcelona','+6596646202','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1973','mateusz.fisichella@gmail.com','Krakow','+9339062709','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1975','sándor.ostafil@gmail.com','New York','+6285769618','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1990','tim.molnár@hotmail.com','Krakow','+5908985256','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1972','attila.szodoray@gmail.com','Krakow','+1276107043','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1976','mateusz.carrey@yahoo.com','New York','+6992894656','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1981','matthew.tompa@gmail.com','Barcelona','+4991136218','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1968','dániel.beöthy@yahoo.com','Budapest','+2636625121','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1989','mateusz.salamon@hotmail.com','Krakow','+4809712144','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1995','john.ciacka@gmail.com','Barcelona','+9998147344','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1986','prezmek.beöthy@gmail.com','New York','+3143922903','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1969','tim.obama@hotmail.com','Barcelona','+5218223636','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1969','mateusz.tompa@hotmail.com','Barcelona','+4952710942','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1989','andy.lebron@hotmail.com','Miskolc','+5236933884','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1973','andy.monoczki@hotmail.com','New York','+5340345080','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1995','dániel.fisichella@yahoo.com','New York','+1481159412','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1990','dániel.monoczki@yahoo.com','Budapest','+4372807650','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1986','prezmek.obama@gmail.com','Miskolc','+7962222049','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1995','matthew.monoczki@hotmail.com','Budapest','+2919340957','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1993','tamás.molnár@gmail.com','New York','+3111508822','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1972','sándor.beöthy@hotmail.com','Barcelona','+9592732603','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1993','tamás.monoczki@hotmail.com','Barcelona','+3303925879','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1988','dániel.lebron@hotmail.com','Miskolc','+3903234969','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1993','prezmek.obama@hotmail.com','New York','+7435594828','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1968','miklós.tompa@yahoo.com','New York','+5526147322','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1992','sándor.monoczki@hotmail.com','New York','+6966371080','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1972','pál.obama@yahoo.com','Barcelona','+7241823412','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1975','mateusz.carrey@gmail.com','Krakow','+2292362535','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1995','mateusz.molnár@hotmail.com','Barcelona','+3403615823','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1970','john.molnár@gmail.com','Krakow','+6741617248','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1981','prezmek.molnár@gmail.com','Budapest','+6765038438','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1973','mateusz.carrey@gmail.com','Budapest','+2459730742','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1965','giancarlo.obama@hotmail.com','Barcelona','+232286108','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1981','andy.obama@hotmail.com','Barcelona','+4830306952','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1973','matthew.lebron@gmail.com','Miskolc','+1410903614','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1983','dániel.szodoray@gmail.com','New York','+1199937833','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1991','andy.ciacka@hotmail.com','Miskolc','+3971569517','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1974','john.ciacka@gmail.com','Krakow','+4617914571','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1982','dániel.tompa@hotmail.com','Barcelona','+1554513212','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1991','pál.salamon@hotmail.com','Barcelona','+6895808779','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1975','john.hamilton@yahoo.com','New York','+2762103338','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1994','andy.salamon@hotmail.com','New York','+334035176','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1969','miklós.fisichella@hotmail.com','Krakow','+1428109392','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1967','miklós.ciacka@yahoo.com','Budapest','+8701439615','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1973','andy.molnár@yahoo.com','New York','+1538784975','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1992','sándor.obama@gmail.com','Krakow','+9085251888','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1975','prezmek.fisichella@yahoo.com','New York','+609953025','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1991','andy.salamon@gmail.com','Barcelona','+4956439331','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1979','mateusz.carrey@hotmail.com','Krakow','+7597138395','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1970','mateusz.fisichella@gmail.com','Barcelona','+5790378301','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1989','giancarlo.ciacka@yahoo.com','New York','+1799674626','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1977','john.carrey@hotmail.com','Krakow','+9979708625','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1977','andy.hamilton@gmail.com','New York','+3641199618','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1987','pál.carrey@gmail.com','Miskolc','+8153852652','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1972','pál.fisichella@hotmail.com','Krakow','+5595756038','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1967','prezmek.ostafil@hotmail.com','Barcelona','+1447438107','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1990','mateusz.beöthy@gmail.com','Miskolc','+5036005915','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1984','prezmek.lebron@gmail.com','Barcelona','+353178262','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1965','pál.hamilton@yahoo.com','Krakow','+6591307975','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1971','dániel.beöthy@hotmail.com','Miskolc','+1592068184','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1994','dániel.carrey@yahoo.com','Barcelona','+3656818789','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1965','tim.carrey@yahoo.com','New York','+8165056810','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1986','miklós.monoczki@yahoo.com','Krakow','+5503088682','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1965','dániel.ostafil@yahoo.com','Krakow','+2960488459','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1969','dániel.lebron@yahoo.com','Barcelona','+2405504437','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1987','tamás.hamilton@gmail.com','Krakow','+6360893194','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1974','miklós.beöthy@yahoo.com','Krakow','+7017250113','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1971','andy.salamon@gmail.com','Miskolc','+9394466364','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1980','tim.szodoray@gmail.com','Budapest','+4153359621','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1987','mateusz.tompa@hotmail.com','Miskolc','+1339429023','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1981','giancarlo.ciacka@hotmail.com','Budapest','+1234859748','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1994','prezmek.tompa@gmail.com','Budapest','+2832283605','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1972','pál.salamon@gmail.com','Barcelona','+5353368137','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1985','sándor.molnár@yahoo.com','Budapest','+9233416113','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1989','andy.molnár@hotmail.com','Krakow','+5952164179','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1993','andy.carrey@yahoo.com','Barcelona','+9913574394','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1995','andy.carrey@gmail.com','Krakow','+9243303911','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1986','sándor.ostafil@gmail.com','New York','+4288620954','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1967','miklós.szodoray@hotmail.com','Krakow','+9732853321','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1965','sándor.beöthy@gmail.com','New York','+7600610541','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1988','sándor.monoczki@yahoo.com','Barcelona','+7420749340','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1985','giancarlo.salamon@hotmail.com','Miskolc','+3057794707','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1985','prezmek.lebron@hotmail.com','New York','+1977694671','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1967','miklós.carrey@hotmail.com','Barcelona','+3519958621','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1986','prezmek.fisichella@yahoo.com','New York','+8504978259','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1969','dániel.hamilton@yahoo.com','Budapest','+9023049660','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1967','attila.carrey@yahoo.com','Barcelona','+2909520486','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1972','prezmek.lebron@yahoo.com','New York','+9976637188','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1989','giancarlo.ostafil@gmail.com','Budapest','+3856054741','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1975','tamás.carrey@hotmail.com','Miskolc','+3629630017','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1965','tim.szodoray@hotmail.com','New York','+3310363122','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1978','john.salamon@gmail.com','Barcelona','+3501052385','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1994','tim.beöthy@hotmail.com','Krakow','+5023904407','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1970','dániel.monoczki@gmail.com','Miskolc','+7332229293','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1972','attila.fisichella@yahoo.com','Budapest','+9291414835','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1976','pál.obama@hotmail.com','Barcelona','+8065427489','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1986','attila.monoczki@yahoo.com','Budapest','+8745851834','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1972','pál.monoczki@hotmail.com','Krakow','+6925886169','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1975','attila.salamon@hotmail.com','Budapest','+7697828422','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1968','pál.fisichella@gmail.com','New York','+7672360293','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1979','tamás.carrey@gmail.com','Miskolc','+3398543494','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1978','john.ostafil@gmail.com','Budapest','+3303692307','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1969','matthew.monoczki@hotmail.com','Krakow','+4993305655','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1968','attila.carrey@yahoo.com','Budapest','+8554320946','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1995','giancarlo.fisichella@yahoo.com','New York','+6862125875','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1971','dániel.beöthy@gmail.com','Krakow','+2198105733','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1966','tim.ostafil@gmail.com','Budapest','+4904599614','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1984','miklós.beöthy@gmail.com','Barcelona','+9155355099','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1969','giancarlo.tompa@hotmail.com','Krakow','+5429627382','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1984','matthew.ostafil@yahoo.com','Krakow','+9312129881','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1972','pál.monoczki@yahoo.com','Miskolc','+6025980839','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1980','mateusz.molnár@yahoo.com','Miskolc','+8976749238','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1968','tim.monoczki@hotmail.com','Miskolc','+2262799698','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1994','prezmek.carrey@gmail.com','New York','+9488293971','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1967','prezmek.salamon@gmail.com','New York','+8483330169','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1966','sándor.salamon@hotmail.com','Budapest','+3035398776','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1970','miklós.ostafil@yahoo.com','Barcelona','+3663943580','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1978','prezmek.obama@gmail.com','New York','+9917125434','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1971','prezmek.hamilton@gmail.com','Budapest','+359761494','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1991','pál.obama@yahoo.com','New York','+8586998635','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1981','tim.carrey@yahoo.com','Barcelona','+3767383182','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1967','miklós.hamilton@gmail.com','Barcelona','+8114502213','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1992','sándor.monoczki@hotmail.com','Barcelona','+3414509489','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1987','mateusz.carrey@gmail.com','Budapest','+5331250512','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1977','pál.molnár@hotmail.com','Krakow','+5589836256','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1984','john.carrey@hotmail.com','Krakow','+4312956266','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1971','matthew.ostafil@yahoo.com','Budapest','+7207696335','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1983','dániel.monoczki@gmail.com','Miskolc','+8403596186','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1993','giancarlo.tompa@gmail.com','Miskolc','+9939276560','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1978','dániel.szodoray@gmail.com','New York','+3837869872','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1985','matthew.fisichella@hotmail.com','Barcelona','+9386345289','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1972','dániel.carrey@hotmail.com','New York','+828192029','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1990','mateusz.fisichella@gmail.com','Krakow','+1495488406','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1966','matthew.ciacka@gmail.com','Budapest','+9876147581','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1993','andy.tompa@yahoo.com','New York','+1332995167','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1995','miklós.molnár@hotmail.com','Budapest','+8130726081','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1982','mateusz.ostafil@gmail.com','Budapest','+2928344975','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1977','pál.lebron@yahoo.com','Krakow','+5107906161','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1994','john.molnár@gmail.com','Barcelona','+6152076817','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1984','miklós.ciacka@yahoo.com','Miskolc','+6219399732','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1967','tim.lebron@yahoo.com','New York','+9030501353','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1968','dániel.hamilton@hotmail.com','Budapest','+6413733543','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1972','john.ostafil@hotmail.com','Krakow','+8668890560','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1990','prezmek.beöthy@gmail.com','Budapest','+4352132504','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1993','giancarlo.monoczki@gmail.com','Barcelona','+3780853121','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1989','mateusz.fisichella@hotmail.com','New York','+2560193731','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1971','attila.ciacka@yahoo.com','Barcelona','+7926611593','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1971','attila.ciacka@gmail.com','Krakow','+7301567606','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1970','dániel.ciacka@hotmail.com','Barcelona','+4666627259','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1975','matthew.hamilton@gmail.com','Barcelona','+1108553169','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1991','matthew.monoczki@hotmail.com','Krakow','+1342232850','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1985','mateusz.hamilton@yahoo.com','Barcelona','+3988225717','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1986','dániel.ciacka@gmail.com','Budapest','+6023108892','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1977','attila.ciacka@hotmail.com','New York','+2717816975','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1965','tamás.ciacka@gmail.com','Barcelona','+5778259740','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1966','miklós.ciacka@gmail.com','Krakow','+224310093','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1984','sándor.hamilton@yahoo.com','Budapest','+5834718150','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1971','matthew.hamilton@yahoo.com','Budapest','+754837953','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1993','tamás.hamilton@yahoo.com','Miskolc','+6871174646','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1985','andy.carrey@yahoo.com','Miskolc','+9807764','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1965','tamás.ciacka@gmail.com','Miskolc','+5792523375','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1970','john.beöthy@yahoo.com','New York','+4835452377','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1987','dániel.ostafil@yahoo.com','Krakow','+4731910818','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1972','tamás.carrey@gmail.com','Miskolc','+6846783126','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1966','attila.monoczki@gmail.com','Barcelona','+6940334800','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1989','giancarlo.salamon@gmail.com','Krakow','+5212160587','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1976','andy.carrey@hotmail.com','New York','+2734478239','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1976','giancarlo.ciacka@yahoo.com','New York','+128893972','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1985','tim.ostafil@yahoo.com','Barcelona','+2093750397','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1978','andy.carrey@hotmail.com','Budapest','+1392311516','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1976','attila.tompa@hotmail.com','Miskolc','+9586530388','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1989','tamás.ostafil@gmail.com','Miskolc','+4875637450','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1976','giancarlo.beöthy@gmail.com','Krakow','+5216965776','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1993','matthew.ostafil@yahoo.com','Miskolc','+38655908','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1990','giancarlo.salamon@hotmail.com','Miskolc','+164324951','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1982','matthew.salamon@yahoo.com','Barcelona','+7097460193','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1970','sándor.molnár@hotmail.com','Krakow','+9184950914','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1989','sándor.fisichella@yahoo.com','Barcelona','+1987628684','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1973','giancarlo.ciacka@gmail.com','New York','+5310098322','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1975','matthew.ostafil@gmail.com','New York','+2451600286','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1971','matthew.ciacka@yahoo.com','Barcelona','+9410131684','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1989','pál.lebron@gmail.com','Budapest','+213366776','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1977','mateusz.lebron@hotmail.com','New York','+9013224250','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1975','giancarlo.carrey@yahoo.com','Budapest','+3504739866','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1995','mateusz.hamilton@hotmail.com','Budapest','+4190110262','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1990','prezmek.beöthy@yahoo.com','Barcelona','+7917939634','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1971','andy.tompa@hotmail.com','Barcelona','+6838441581','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1981','dániel.ciacka@hotmail.com','Krakow','+1281083567','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1970','dániel.hamilton@gmail.com','Krakow','+4155777285','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1991','mateusz.szodoray@yahoo.com','Budapest','+6641667621','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1972','attila.carrey@gmail.com','Budapest','+2389376709','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1993','tim.fisichella@hotmail.com','Krakow','+5896367448','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1989','miklós.lebron@hotmail.com','Barcelona','+1715112098','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1989','john.molnár@yahoo.com','Budapest','+2319169561','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1965','john.tompa@gmail.com','New York','+4322341267','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1978','matthew.szodoray@gmail.com','Barcelona','+4087835134','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1976','andy.obama@hotmail.com','Miskolc','+3038670328','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1981','pál.ostafil@hotmail.com','Miskolc','+714164174','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1988','prezmek.monoczki@hotmail.com','Barcelona','+6233439116','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1973','tamás.lebron@gmail.com','Barcelona','+4948413940','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1979','tim.monoczki@yahoo.com','Barcelona','+9410588641','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1984','andy.ostafil@yahoo.com','Barcelona','+7856037630','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1993','dániel.carrey@gmail.com','Miskolc','+1535650858','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1972','matthew.molnár@hotmail.com','Budapest','+88850742','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1983','prezmek.ciacka@gmail.com','Miskolc','+1231058758','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1976','sándor.ciacka@yahoo.com','New York','+774449474','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1995','tamás.fisichella@gmail.com','Krakow','+7381957535','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1993','prezmek.hamilton@hotmail.com','New York','+8599994681','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1971','dániel.szodoray@gmail.com','Miskolc','+5126739247','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1985','giancarlo.tompa@gmail.com','Krakow','+1691191163','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1981','prezmek.beöthy@gmail.com','Miskolc','+3545858327','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1980','john.molnár@hotmail.com','Barcelona','+3746195559','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1970','andy.ostafil@hotmail.com','Miskolc','+5515557958','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1980','john.szodoray@hotmail.com','Budapest','+876754161','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1982','mateusz.lebron@gmail.com','Budapest','+8928046556','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1987','pál.fisichella@gmail.com','Barcelona','+903608852','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1982','andy.szodoray@gmail.com','Miskolc','+1681476522','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1989','mateusz.lebron@gmail.com','Miskolc','+7539473189','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1976','tim.ostafil@gmail.com','Miskolc','+4405980713','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1993','prezmek.szodoray@yahoo.com','Krakow','+4400691616','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1989','tim.obama@hotmail.com','Krakow','+1895693377','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1966','attila.szodoray@gmail.com','Budapest','+5889833359','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1990','attila.molnár@gmail.com','Krakow','+3318528689','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1986','tamás.beöthy@yahoo.com','Miskolc','+7443376704','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1990','attila.ostafil@yahoo.com','Krakow','+3267953391','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1965','pál.salamon@hotmail.com','New York','+3660720108','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1974','tim.ostafil@hotmail.com','Budapest','+6879041149','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1965','andy.ostafil@hotmail.com','Krakow','+2676207223','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1977','prezmek.carrey@yahoo.com','New York','+9122120447','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1973','john.salamon@gmail.com','Budapest','+421880914','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1991','john.fisichella@yahoo.com','New York','+9319078234','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1972','miklós.obama@yahoo.com','Barcelona','+5492763121','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1990','giancarlo.molnár@hotmail.com','Budapest','+6376417149','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1974','giancarlo.lebron@gmail.com','Krakow','+7527751461','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1976','tim.ciacka@hotmail.com','Barcelona','+2462546492','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1990','dániel.carrey@gmail.com','New York','+5256039533','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1991','sándor.ciacka@hotmail.com','Miskolc','+457413009','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1968','john.monoczki@hotmail.com','Budapest','+8263547350','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1993','prezmek.salamon@gmail.com','Miskolc','+1935583425','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1990','pál.carrey@yahoo.com','New York','+5540490188','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1972','attila.obama@yahoo.com','New York','+9016052971','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1986','prezmek.szodoray@hotmail.com','Krakow','+6730914223','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1995','giancarlo.szodoray@hotmail.com','New York','+6602832757','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1989','matthew.tompa@yahoo.com','Miskolc','+4044354202','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1991','john.fisichella@gmail.com','Krakow','+336803629','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1987','tamás.szodoray@yahoo.com','New York','+5457787780','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1990','tim.tompa@yahoo.com','Barcelona','+64490279','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1980','pál.molnár@yahoo.com','Barcelona','+7454317735','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1976','dániel.ciacka@gmail.com','Budapest','+7375215949','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1980','john.tompa@hotmail.com','Miskolc','+5994135185','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1967','miklós.szodoray@gmail.com','Krakow','+5086244384','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1981','matthew.ciacka@hotmail.com','Krakow','+405343622','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1981','mateusz.molnár@gmail.com','Budapest','+2143728563','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1967','andy.lebron@hotmail.com','New York','+2222477593','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1994','sándor.salamon@gmail.com','Barcelona','+2462087492','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1984','tamás.molnár@hotmail.com','Krakow','+9059131951','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1988','miklós.fisichella@yahoo.com','Krakow','+1261006647','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1975','sándor.tompa@gmail.com','Krakow','+6471104594','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1968','tamás.salamon@yahoo.com','New York','+2199897203','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1986','andy.hamilton@yahoo.com','Budapest','+7436240179','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1995','giancarlo.szodoray@gmail.com','Budapest','+288146050','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1994','pál.tompa@hotmail.com','New York','+4200858257','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1969','giancarlo.szodoray@yahoo.com','Budapest','+2188808342','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1974','dániel.monoczki@gmail.com','New York','+3807449193','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1981','giancarlo.ciacka@yahoo.com','New York','+9723888406','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1980','giancarlo.ostafil@gmail.com','Barcelona','+9028203300','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1986','andy.tompa@hotmail.com','Miskolc','+9445906428','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1985','tamás.obama@yahoo.com','Budapest','+964765229','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1972','attila.obama@hotmail.com','Barcelona','+5065763823','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1969','tim.ostafil@gmail.com','Krakow','+8545331051','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1980','matthew.fisichella@yahoo.com','Barcelona','+8630286405','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1981','matthew.szodoray@gmail.com','New York','+8012161708','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1975','prezmek.obama@gmail.com','Barcelona','+7896364493','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1965','mateusz.tompa@yahoo.com','Budapest','+5266640920','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1968','mateusz.fisichella@gmail.com','Krakow','+7723316084','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1970','john.fisichella@yahoo.com','Krakow','+5038201485','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1976','andy.ciacka@gmail.com','Barcelona','+8931729632','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1986','giancarlo.ostafil@hotmail.com','Barcelona','+9476856271','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1985','miklós.lebron@yahoo.com','Krakow','+3904537552','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1989','sándor.salamon@yahoo.com','Barcelona','+4314931150','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1984','pál.molnár@hotmail.com','Budapest','+8718676198','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1975','andy.szodoray@yahoo.com','New York','+6955770804','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1980','sándor.ciacka@gmail.com','Miskolc','+5492619552','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1965','giancarlo.carrey@hotmail.com','New York','+5770993875','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1995','attila.obama@gmail.com','Krakow','+4138915595','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1972','andy.molnár@yahoo.com','Barcelona','+7204697861','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1978','tamás.tompa@yahoo.com','Krakow','+9934583796','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1979','miklós.lebron@gmail.com','Krakow','+7367832236','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1972','dániel.ciacka@gmail.com','Miskolc','+2174665540','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1970','matthew.tompa@yahoo.com','Barcelona','+4720532848','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1985','dániel.molnár@hotmail.com','Barcelona','+1179714518','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1972','miklós.ciacka@yahoo.com','Krakow','+2753489139','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1990','matthew.ostafil@yahoo.com','Krakow','+1416228726','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1993','dániel.fisichella@hotmail.com','New York','+6575408785','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1986','miklós.szodoray@gmail.com','New York','+4618951200','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1968','giancarlo.ostafil@yahoo.com','Budapest','+566771958','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1969','tim.ostafil@hotmail.com','New York','+9195214611','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1980','tamás.ostafil@yahoo.com','Krakow','+9612557682','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1982','mateusz.salamon@hotmail.com','Budapest','+1383270844','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1984','sándor.molnár@gmail.com','Krakow','+2434525991','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1976','miklós.hamilton@gmail.com','Miskolc','+1861090641','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1990','dániel.tompa@gmail.com','Krakow','+9976981275','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1989','john.obama@yahoo.com','Miskolc','+2773063869','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1992','pál.fisichella@yahoo.com','New York','+1749604742','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1973','sándor.carrey@gmail.com','Miskolc','+7079810982','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1974','sándor.molnár@gmail.com','Budapest','+1628901295','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1971','matthew.molnár@gmail.com','Budapest','+6267895533','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1987','miklós.tompa@yahoo.com','Barcelona','+2112820624','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1979','mateusz.szodoray@hotmail.com','Krakow','+1997822160','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1980','andy.tompa@hotmail.com','Budapest','+8976178651','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1982','giancarlo.fisichella@hotmail.com','Krakow','+7825146234','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1965','giancarlo.ostafil@hotmail.com','Barcelona','+8415160699','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1991','mateusz.beöthy@yahoo.com','Miskolc','+2322245608','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1977','giancarlo.hamilton@yahoo.com','Krakow','+3428513470','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1979','pál.ostafil@gmail.com','Barcelona','+4721465636','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1967','attila.monoczki@hotmail.com','Barcelona','+2169164957','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1984','john.salamon@hotmail.com','New York','+5546628861','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1977','giancarlo.monoczki@gmail.com','Krakow','+8468654520','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1977','sándor.fisichella@yahoo.com','Budapest','+6580037014','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1987','sándor.lebron@yahoo.com','Krakow','+7774572387','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1975','miklós.szodoray@yahoo.com','New York','+7803721104','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1986','john.monoczki@yahoo.com','Barcelona','+4828962732','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1975','tamás.lebron@yahoo.com','Budapest','+367315305','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1988','attila.ciacka@yahoo.com','New York','+6111692346','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1966','john.szodoray@hotmail.com','Miskolc','+9844611912','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1970','tamás.salamon@hotmail.com','New York','+4389577953','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1995','prezmek.molnár@hotmail.com','New York','+7979101735','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1976','tim.ostafil@hotmail.com','Miskolc','+5269378671','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1977','tim.fisichella@yahoo.com','Miskolc','+717770090','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1984','prezmek.obama@hotmail.com','New York','+959939680','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1968','prezmek.molnár@yahoo.com','Miskolc','+8927961756','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1976','sándor.molnár@hotmail.com','Krakow','+7789947683','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1970','mateusz.monoczki@hotmail.com','New York','+1625960732','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1979','matthew.carrey@gmail.com','Miskolc','+5769137419','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1981','giancarlo.tompa@hotmail.com','New York','+3137754891','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1994','pál.ostafil@gmail.com','Barcelona','+9769776094','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1995','miklós.salamon@yahoo.com','Miskolc','+3984954451','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1978','prezmek.monoczki@yahoo.com','Krakow','+5322057022','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1974','miklós.molnár@yahoo.com','New York','+5731553173','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1967','mateusz.szodoray@gmail.com','Budapest','+3791774721','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1983','miklós.beöthy@gmail.com','New York','+1868284994','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1967','attila.obama@hotmail.com','Miskolc','+8283299642','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1977','mateusz.obama@yahoo.com','Budapest','+7882690373','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1982','mateusz.obama@hotmail.com','New York','+8609286601','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1973','tamás.carrey@hotmail.com','New York','+1537267731','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1974','john.lebron@gmail.com','Barcelona','+9448849916','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1980','miklós.obama@gmail.com','Krakow','+2735058685','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1982','andy.lebron@gmail.com','New York','+8100994651','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1989','dániel.molnár@yahoo.com','Krakow','+9266227452','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1985','pál.ostafil@hotmail.com','Barcelona','+1653164102','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1994','mateusz.salamon@hotmail.com','Miskolc','+7602293663','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1981','tim.beöthy@hotmail.com','Miskolc','+6162897108','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1995','john.ciacka@hotmail.com','Barcelona','+7985401545','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1973','giancarlo.fisichella@hotmail.com','Barcelona','+793199847','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1968','giancarlo.monoczki@yahoo.com','Barcelona','+7203004461','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1969','matthew.ostafil@yahoo.com','New York','+105555471','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1989','pál.szodoray@hotmail.com','Barcelona','+92624076','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1974','dániel.szodoray@hotmail.com','Barcelona','+4096264418','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1971','attila.obama@yahoo.com','Barcelona','+6622608552','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1976','tamás.molnár@hotmail.com','New York','+9359216601','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1976','miklós.salamon@gmail.com','Barcelona','+9143646667','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1971','andy.beöthy@gmail.com','Krakow','+4003484216','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1990','tim.lebron@gmail.com','New York','+3706378223','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1981','prezmek.ciacka@hotmail.com','Budapest','+4988842601','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1974','tim.ciacka@gmail.com','New York','+8716199970','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1968','matthew.ostafil@hotmail.com','Barcelona','+767835367','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1989','tim.beöthy@yahoo.com','Miskolc','+8770217936','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1977','pál.obama@yahoo.com','Barcelona','+2770368703','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1966','prezmek.ciacka@hotmail.com','Barcelona','+948221957','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1981','andy.szodoray@hotmail.com','New York','+5146031721','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1965','john.tompa@hotmail.com','Budapest','+2929340849','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1965','sándor.szodoray@hotmail.com','Barcelona','+4039799682','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1984','attila.ciacka@yahoo.com','Miskolc','+1823392158','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1969','dániel.hamilton@hotmail.com','Barcelona','+6232332453','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1965','miklós.molnár@hotmail.com','New York','+509793057','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1982','john.szodoray@gmail.com','New York','+6084232407','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1974','john.salamon@yahoo.com','New York','+3858300278','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1975','sándor.obama@hotmail.com','Krakow','+5926075485','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1991','miklós.salamon@hotmail.com','Barcelona','+5561608873','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1994','john.tompa@hotmail.com','Barcelona','+9414699605','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1982','tamás.tompa@hotmail.com','Krakow','+9031016273','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1986','mateusz.szodoray@hotmail.com','Krakow','+8580827483','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1968','john.obama@gmail.com','Budapest','+3415293638','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1977','miklós.monoczki@yahoo.com','New York','+5584424261','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1976','pál.obama@gmail.com','Miskolc','+9187644077','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1976','pál.obama@yahoo.com','Barcelona','+6917198268','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1970','giancarlo.monoczki@hotmail.com','Krakow','+9829547924','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1994','matthew.tompa@gmail.com','Barcelona','+7596660294','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1969','sándor.tompa@yahoo.com','Barcelona','+6060181600','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1978','john.ciacka@hotmail.com','Miskolc','+8634641770','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1974','pál.lebron@yahoo.com','Miskolc','+887523858','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1984','matthew.carrey@yahoo.com','Barcelona','+256966009','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1973','giancarlo.salamon@gmail.com','Miskolc','+5784077445','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1974','tim.molnár@gmail.com','Budapest','+4634102482','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1987','pál.obama@hotmail.com','Budapest','+1317166920','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1983','tamás.hamilton@yahoo.com','New York','+1912272934','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1973','miklós.tompa@gmail.com','New York','+6289139975','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1983','pál.fisichella@yahoo.com','Barcelona','+8187158724','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1967','miklós.beöthy@yahoo.com','Miskolc','+2845865292','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1993','matthew.tompa@hotmail.com','Budapest','+5696427565','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1985','matthew.beöthy@yahoo.com','Barcelona','+6907332720','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1986','tamás.fisichella@yahoo.com','Krakow','+3246412664','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1974','andy.salamon@gmail.com','Barcelona','+9047500665','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1995','dániel.beöthy@gmail.com','New York','+6511580030','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1973','tim.obama@gmail.com','Krakow','+8190378801','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1980','sándor.szodoray@yahoo.com','Krakow','+4517047122','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1990','tamás.ostafil@yahoo.com','Miskolc','+2029489291','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1995','dániel.hamilton@hotmail.com','Barcelona','+4647370997','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1973','tim.lebron@gmail.com','Krakow','+8206237897','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1995','matthew.fisichella@yahoo.com','Barcelona','+1228156367','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1979','pál.obama@hotmail.com','Miskolc','+6449902340','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1978','giancarlo.molnár@hotmail.com','Krakow','+24481695','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1966','pál.lebron@hotmail.com','Miskolc','+5683111004','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1970','andy.lebron@hotmail.com','Krakow','+1869637706','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1969','tamás.tompa@yahoo.com','New York','+1322101057','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1968','tim.obama@yahoo.com','Krakow','+2032249276','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1984','sándor.hamilton@hotmail.com','Miskolc','+1810587732','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1973','matthew.fisichella@yahoo.com','Krakow','+1246281478','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1995','mateusz.obama@gmail.com','Budapest','+7476391997','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1993','giancarlo.fisichella@gmail.com','Krakow','+5957347980','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1978','attila.obama@hotmail.com','Miskolc','+2046564036','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1965','pál.salamon@gmail.com','Barcelona','+5931782171','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1992','tamás.ostafil@hotmail.com','Barcelona','+5156982422','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1981','miklós.carrey@yahoo.com','New York','+6909978875','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1967','mateusz.beöthy@hotmail.com','Miskolc','+2385035568','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1973','tamás.fisichella@yahoo.com','Krakow','+4716166312','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1965','mateusz.molnár@yahoo.com','Miskolc','+5359810103','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1974','prezmek.ciacka@yahoo.com','Barcelona','+4726628482','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1986','tim.obama@hotmail.com','Budapest','+1524461531','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1977','dániel.fisichella@yahoo.com','Barcelona','+8233249615','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1965','andy.molnár@yahoo.com','New York','+2128973256','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1984','mateusz.molnár@gmail.com','Barcelona','+4370250874','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1970','andy.beöthy@yahoo.com','Budapest','+5936739044','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1967','matthew.ciacka@yahoo.com','Budapest','+9718819075','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1989','matthew.ostafil@hotmail.com','Budapest','+4985437811','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1966','matthew.beöthy@yahoo.com','Miskolc','+3613250298','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1972','john.beöthy@gmail.com','Krakow','+878230110','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1989','miklós.ciacka@yahoo.com','Barcelona','+1273251389','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1970','john.molnár@yahoo.com','Krakow','+6578371','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1974','giancarlo.monoczki@gmail.com','Miskolc','+7132480049','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1976','andy.ostafil@gmail.com','Krakow','+2602767584','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1995','attila.ostafil@yahoo.com','New York','+3758264278','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1981','sándor.ciacka@hotmail.com','Miskolc','+6054916873','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1980','matthew.salamon@hotmail.com','Budapest','+1514715562','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1968','mateusz.hamilton@hotmail.com','Miskolc','+5950659711','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1975','tamás.szodoray@yahoo.com','Budapest','+8158422184','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1969','prezmek.lebron@yahoo.com','Barcelona','+5013042804','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1984','pál.salamon@gmail.com','Barcelona','+3104363641','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1977','prezmek.molnár@gmail.com','Krakow','+3616122092','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1986','attila.lebron@hotmail.com','New York','+3131914573','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1967','giancarlo.carrey@yahoo.com','New York','+1991631773','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1974','attila.carrey@hotmail.com','Budapest','+2217116030','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1980','dániel.fisichella@gmail.com','Miskolc','+1612578589','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1974','giancarlo.molnár@yahoo.com','Budapest','+8855190952','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1995','giancarlo.obama@yahoo.com','Krakow','+8541075136','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1969','andy.obama@gmail.com','Miskolc','+311971764','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1967','andy.molnár@hotmail.com','Barcelona','+7507932934','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1979','dániel.ciacka@yahoo.com','Budapest','+2593837843','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1970','attila.beöthy@gmail.com','Budapest','+9783447028','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1972','tim.fisichella@yahoo.com','New York','+5033997967','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1988','dániel.szodoray@yahoo.com','New York','+1177817320','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1987','dániel.hamilton@yahoo.com','Miskolc','+3407618633','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1982','tamás.molnár@gmail.com','Barcelona','+6042029507','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1975','prezmek.lebron@yahoo.com','Miskolc','+8889496657','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1991','matthew.carrey@gmail.com','Krakow','+8544208287','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1969','dániel.obama@gmail.com','Budapest','+1500916382','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1969','tamás.salamon@yahoo.com','Miskolc','+1628482661','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1994','john.ostafil@yahoo.com','Barcelona','+3214163404','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1989','dániel.salamon@gmail.com','New York','+3694667355','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1987','prezmek.tompa@gmail.com','Barcelona','+7994459640','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1969','tamás.tompa@yahoo.com','New York','+5436840353','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1988','john.salamon@yahoo.com','Krakow','+5175158544','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1975','dániel.molnár@gmail.com','Barcelona','+6774820674','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1993','miklós.carrey@hotmail.com','New York','+4187794716','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1966','giancarlo.tompa@hotmail.com','Budapest','+942592291','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1971','attila.obama@gmail.com','New York','+9452273857','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1986','tamás.carrey@yahoo.com','New York','+5959423093','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1971','pál.hamilton@yahoo.com','Budapest','+4005199824','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1992','miklós.ostafil@yahoo.com','Miskolc','+485051764','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1980','attila.monoczki@gmail.com','Budapest','+2187328271','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1977','miklós.tompa@hotmail.com','Barcelona','+8848624388','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1987','pál.ostafil@hotmail.com','Budapest','+3905394048','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1994','pál.fisichella@gmail.com','Barcelona','+6158054744','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1987','tim.lebron@hotmail.com','Budapest','+7134815132','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1967','tamás.salamon@gmail.com','Krakow','+2763119642','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1973','prezmek.monoczki@hotmail.com','Krakow','+4558771438','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1971','mateusz.monoczki@gmail.com','Krakow','+784497547','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1995','john.salamon@yahoo.com','Miskolc','+159863964','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1981','andy.monoczki@hotmail.com','New York','+7585848819','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1968','matthew.carrey@gmail.com','Barcelona','+8267262012','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1992','sándor.hamilton@gmail.com','Budapest','+2080302770','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1971','tamás.carrey@hotmail.com','Barcelona','+2586392921','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1986','matthew.carrey@gmail.com','Budapest','+684610248','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1986','prezmek.ostafil@gmail.com','New York','+1123985081','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1967','dániel.fisichella@gmail.com','Barcelona','+9805185942','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1977','john.ciacka@yahoo.com','New York','+7374650103','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1972','andy.fisichella@yahoo.com','Miskolc','+9858708563','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1984','matthew.beöthy@gmail.com','Miskolc','+7860154223','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1979','pál.salamon@gmail.com','New York','+8252225656','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1993','giancarlo.hamilton@hotmail.com','Krakow','+199971624','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1972','giancarlo.ostafil@yahoo.com','Miskolc','+7097108235','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1995','tamás.tompa@gmail.com','Krakow','+6973245881','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1974','sándor.salamon@hotmail.com','Miskolc','+1946082341','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1970','mateusz.carrey@yahoo.com','New York','+5455022469','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1976','tamás.ciacka@gmail.com','Barcelona','+9947633757','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1985','pál.hamilton@gmail.com','Budapest','+8819937332','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1981','tamás.fisichella@yahoo.com','Krakow','+749412998','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1969','giancarlo.carrey@hotmail.com','Miskolc','+6086662238','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1983','mateusz.carrey@gmail.com','Krakow','+5873972213','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1991','dániel.salamon@gmail.com','Budapest','+3368275928','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1981','tim.carrey@hotmail.com','New York','+9083121580','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1986','john.tompa@gmail.com','Budapest','+3511443155','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1994','john.molnár@hotmail.com','Krakow','+7918559684','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1970','prezmek.obama@yahoo.com','Budapest','+7013442738','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1987','attila.ciacka@yahoo.com','Budapest','+6904225115','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1989','john.szodoray@yahoo.com','Miskolc','+2089287315','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1984','matthew.ostafil@hotmail.com','New York','+5523648956','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1972','tim.beöthy@gmail.com','Miskolc','+5911230777','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1989','sándor.molnár@yahoo.com','New York','+1052983483','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1976','pál.szodoray@hotmail.com','Barcelona','+7432454862','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1977','miklós.szodoray@hotmail.com','New York','+9075153237','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1969','john.fisichella@yahoo.com','New York','+7502725713','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1973','matthew.ciacka@yahoo.com','Barcelona','+7253585333','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1989','prezmek.ciacka@hotmail.com','Barcelona','+5880042005','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1984','tim.salamon@hotmail.com','New York','+5137737164','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1968','sándor.ciacka@yahoo.com','Krakow','+3048506330','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1968','sándor.hamilton@yahoo.com','Barcelona','+5674965464','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1984','sándor.szodoray@gmail.com','Budapest','+6316661333','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1976','miklós.fisichella@gmail.com','Krakow','+2002672518','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1980','attila.szodoray@gmail.com','New York','+6173557794','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1994','attila.salamon@yahoo.com','New York','+329186205','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1985','pál.beöthy@gmail.com','Miskolc','+4014297124','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1980','tamás.carrey@yahoo.com','Budapest','+7593447394','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1983','andy.tompa@hotmail.com','New York','+9836863307','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1977','matthew.hamilton@hotmail.com','Budapest','+3281161102','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1966','matthew.beöthy@yahoo.com','Barcelona','+6251021792','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1987','tamás.salamon@hotmail.com','Krakow','+8479207686','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1985','dániel.molnár@gmail.com','Budapest','+8472973650','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1966','miklós.molnár@yahoo.com','Krakow','+9911469278','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1986','giancarlo.szodoray@hotmail.com','Budapest','+6288293505','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1968','tamás.carrey@hotmail.com','Krakow','+525539058','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1987','matthew.fisichella@gmail.com','New York','+3491100867','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1982','andy.salamon@gmail.com','Budapest','+4348970427','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1986','miklós.obama@yahoo.com','Budapest','+2795586394','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1980','john.beöthy@gmail.com','Budapest','+7278913952','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1976','attila.molnár@gmail.com','Barcelona','+9955522408','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1966','giancarlo.szodoray@gmail.com','Miskolc','+2984551894','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1970','matthew.beöthy@gmail.com','Budapest','+5445129501','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1987','tamás.tompa@hotmail.com','Miskolc','+9602017629','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1979','dániel.hamilton@hotmail.com','Miskolc','+3389534637','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1993','tamás.obama@gmail.com','Budapest','+1789108542','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1970','matthew.tompa@hotmail.com','Barcelona','+5788346174','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1966','dániel.obama@yahoo.com','Budapest','+992477753','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1967','dániel.tompa@gmail.com','New York','+6807863682','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1966','john.molnár@yahoo.com','Miskolc','+8076034166','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1981','giancarlo.fisichella@yahoo.com','Barcelona','+1804906167','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1966','prezmek.szodoray@hotmail.com','Barcelona','+4897056665','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1994','attila.tompa@yahoo.com','Krakow','+4842581503','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1978','john.ostafil@yahoo.com','Budapest','+9843995853','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1983','matthew.carrey@yahoo.com','Krakow','+5625201317','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1980','giancarlo.salamon@hotmail.com','New York','+1610225180','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1979','tamás.molnár@gmail.com','Krakow','+5022335258','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1992','attila.ostafil@gmail.com','Krakow','+3934588330','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1993','miklós.monoczki@gmail.com','Barcelona','+9836621488','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1971','sándor.salamon@yahoo.com','Krakow','+8316591556','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1995','miklós.tompa@yahoo.com','New York','+4685172852','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1988','sándor.lebron@yahoo.com','Barcelona','+197238859','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1983','andy.molnár@yahoo.com','Barcelona','+8056130420','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1983','tim.tompa@gmail.com','Miskolc','+652592956','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1965','matthew.molnár@hotmail.com','Barcelona','+7368070454','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1994','tamás.salamon@hotmail.com','Barcelona','+6487399595','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1968','dániel.ciacka@gmail.com','Miskolc','+5261350657','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1969','john.lebron@yahoo.com','New York','+2644454726','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1995','andy.molnár@hotmail.com','Krakow','+8211485243','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1973','matthew.molnár@yahoo.com','Krakow','+1747935706','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1988','mateusz.szodoray@gmail.com','New York','+469089511','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1966','john.carrey@yahoo.com','Miskolc','+8646000693','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1975','tamás.fisichella@gmail.com','New York','+9562948013','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1991','prezmek.fisichella@yahoo.com','Miskolc','+5390760949','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1977','tamás.hamilton@yahoo.com','Miskolc','+9082121008','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1985','miklós.fisichella@yahoo.com','Krakow','+6631609455','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1985','john.lebron@hotmail.com','Miskolc','+2609456085','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1969','miklós.obama@yahoo.com','Krakow','+8257074585','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1977','john.ostafil@gmail.com','New York','+3669769047','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1984','matthew.hamilton@yahoo.com','New York','+876586257','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1984','sándor.tompa@yahoo.com','Budapest','+3284071106','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1979','miklós.molnár@hotmail.com','Miskolc','+5535062231','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1986','dániel.szodoray@yahoo.com','Krakow','+3585179968','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1987','pál.molnár@gmail.com','Krakow','+697797178','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1988','tamás.ostafil@yahoo.com','Budapest','+3167952242','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1986','giancarlo.beöthy@yahoo.com','Budapest','+6335867871','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1975','attila.lebron@gmail.com','Barcelona','+5713292444','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1991','sándor.obama@hotmail.com','Miskolc','+3661369941','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1994','pál.monoczki@yahoo.com','Krakow','+276678503','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1991','john.szodoray@hotmail.com','Budapest','+3575601536','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1988','matthew.ostafil@gmail.com','Barcelona','+8678509049','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1971','matthew.ostafil@hotmail.com','Budapest','+5340695980','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1974','giancarlo.ciacka@gmail.com','Miskolc','+50777964','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1967','attila.obama@gmail.com','Miskolc','+4932988197','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1984','miklós.hamilton@yahoo.com','Krakow','+8630207419','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1974','prezmek.monoczki@gmail.com','Barcelona','+3456779669','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1990','giancarlo.tompa@yahoo.com','New York','+3154048782','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1972','john.fisichella@hotmail.com','Krakow','+5508037672','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1994','prezmek.salamon@yahoo.com','New York','+9967043152','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1993','prezmek.lebron@yahoo.com','Miskolc','+2593570600','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1982','miklós.salamon@gmail.com','Budapest','+9437673031','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1965','miklós.molnár@yahoo.com','Miskolc','+9305570719','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1966','tamás.beöthy@gmail.com','Barcelona','+8365763610','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1994','tim.ciacka@gmail.com','New York','+8509890835','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1978','john.carrey@yahoo.com','Krakow','+7242705893','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1968','pál.carrey@hotmail.com','Miskolc','+6238140199','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1985','miklós.beöthy@yahoo.com','Krakow','+2823008070','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1977','mateusz.beöthy@yahoo.com','Barcelona','+2893976525','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1972','mateusz.carrey@yahoo.com','Barcelona','+633640016','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1970','pál.monoczki@gmail.com','Miskolc','+6378022295','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1980','giancarlo.tompa@hotmail.com','New York','+653379907','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1968','pál.tompa@hotmail.com','Budapest','+778575004','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1981','dániel.carrey@gmail.com','Miskolc','+3788693704','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1966','sándor.hamilton@yahoo.com','Budapest','+2828609075','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1967','dániel.beöthy@gmail.com','Budapest','+3671241775','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1987','attila.szodoray@gmail.com','Barcelona','+235801886','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1984','tamás.molnár@hotmail.com','Barcelona','+4154692021','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1984','miklós.beöthy@gmail.com','Budapest','+9182655765','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1965','pál.szodoray@gmail.com','Budapest','+55941648','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1990','john.carrey@hotmail.com','Barcelona','+1476920197','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1992','mateusz.hamilton@hotmail.com','Krakow','+5249908202','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1982','john.hamilton@yahoo.com','New York','+2256834142','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1993','miklós.salamon@hotmail.com','Barcelona','+4778990263','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1981','giancarlo.hamilton@yahoo.com','New York','+9045569058','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1972','tamás.obama@hotmail.com','New York','+6146220418','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1982','giancarlo.beöthy@yahoo.com','Budapest','+690447162','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1982','attila.monoczki@gmail.com','Krakow','+6503303854','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1982','giancarlo.beöthy@hotmail.com','Krakow','+23785011','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1971','pál.szodoray@gmail.com','Miskolc','+6849669400','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1985','matthew.tompa@yahoo.com','New York','+8877518254','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1971','john.ostafil@hotmail.com','Budapest','+2672910190','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1969','andy.beöthy@hotmail.com','Budapest','+6265740543','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1986','attila.tompa@yahoo.com','New York','+7443518268','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1986','attila.salamon@gmail.com','Budapest','+9563144952','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1985','matthew.lebron@gmail.com','Budapest','+2206276208','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1986','andy.lebron@gmail.com','Miskolc','+6217948549','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1978','miklós.lebron@hotmail.com','Barcelona','+4934765316','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1987','mateusz.molnár@gmail.com','Barcelona','+1448223727','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1983','pál.beöthy@yahoo.com','Budapest','+8705531803','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1978','dániel.hamilton@hotmail.com','New York','+3751375631','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1975','mateusz.molnár@yahoo.com','Miskolc','+347418502','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1988','andy.ostafil@hotmail.com','New York','+6018354776','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1993','tamás.szodoray@hotmail.com','Budapest','+8571076125','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1973','giancarlo.fisichella@hotmail.com','Budapest','+1560529080','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1989','matthew.salamon@hotmail.com','New York','+6747877258','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1987','sándor.lebron@gmail.com','Barcelona','+4479645692','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1980','mateusz.obama@yahoo.com','New York','+996981769','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1986','attila.molnár@gmail.com','Barcelona','+5520176657','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1989','mateusz.carrey@yahoo.com','Budapest','+8450704071','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1987','john.tompa@yahoo.com','New York','+416388344','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1989','miklós.salamon@gmail.com','Barcelona','+1823380232','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1989','mateusz.obama@hotmail.com','New York','+344767974','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1979','mateusz.molnár@yahoo.com','Barcelona','+7483583218','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1975','andy.tompa@yahoo.com','Krakow','+7965271293','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1972','john.monoczki@gmail.com','New York','+5857075634','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1971','prezmek.ostafil@hotmail.com','Krakow','+7899815123','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1979','dániel.beöthy@yahoo.com','New York','+326777126','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1994','matthew.carrey@hotmail.com','New York','+6982205492','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1992','mateusz.obama@gmail.com','Barcelona','+8349558100','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1971','dániel.obama@yahoo.com','Miskolc','+5988847257','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1988','matthew.monoczki@yahoo.com','Barcelona','+9979166761','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1968','dániel.carrey@hotmail.com','Barcelona','+6606745051','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1979','miklós.szodoray@gmail.com','New York','+224687688','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1992','matthew.tompa@yahoo.com','Budapest','+3488969028','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1994','matthew.lebron@hotmail.com','Barcelona','+8153397958','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1983','andy.ciacka@gmail.com','Barcelona','+9750136755','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1994','tim.szodoray@yahoo.com','Barcelona','+9506817235','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1987','prezmek.ostafil@gmail.com','New York','+592466346','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1979','pál.ciacka@gmail.com','Miskolc','+4760663000','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1993','attila.fisichella@hotmail.com','Budapest','+8047440839','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1978','miklós.ostafil@gmail.com','Krakow','+6370446560','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1983','miklós.szodoray@hotmail.com','Krakow','+2996819096','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1978','andy.hamilton@yahoo.com','Budapest','+9859956059','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1995','matthew.obama@hotmail.com','Barcelona','+9770407205','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1995','andy.obama@hotmail.com','Barcelona','+3120037977','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1979','pál.obama@yahoo.com','Miskolc','+2014521330','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1985','matthew.tompa@hotmail.com','Krakow','+2202044195','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1976','attila.szodoray@hotmail.com','Miskolc','+4040426408','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1969','dániel.obama@hotmail.com','Budapest','+848512833','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1988','tamás.tompa@hotmail.com','New York','+5571877284','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1984','prezmek.lebron@hotmail.com','New York','+8250375687','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1986','tamás.carrey@gmail.com','Barcelona','+1694563305','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1981','dániel.beöthy@yahoo.com','Krakow','+7731711630','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1967','matthew.molnár@yahoo.com','New York','+4787514542','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1967','andy.lebron@yahoo.com','Barcelona','+4082893881','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1978','miklós.tompa@yahoo.com','Barcelona','+8465311638','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1966','matthew.tompa@yahoo.com','New York','+142301603','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1973','prezmek.szodoray@hotmail.com','Budapest','+1402239310','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1974','tim.molnár@gmail.com','New York','+4085907981','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1988','tim.molnár@yahoo.com','Budapest','+7418562738','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1981','mateusz.fisichella@gmail.com','Budapest','+8941592673','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1990','mateusz.tompa@yahoo.com','New York','+2840292733','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1983','john.molnár@yahoo.com','New York','+1810876603','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1965','tamás.hamilton@gmail.com','New York','+3214355276','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1969','dániel.molnár@yahoo.com','New York','+304899230','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1986','prezmek.fisichella@gmail.com','Budapest','+6492121052','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1980','sándor.beöthy@gmail.com','Miskolc','+4925032159','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1992','matthew.ostafil@gmail.com','Krakow','+3591828644','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1972','giancarlo.tompa@gmail.com','Budapest','+8996965731','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1966','attila.obama@gmail.com','Barcelona','+9086243366','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1966','andy.ciacka@yahoo.com','Krakow','+1025251147','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1993','giancarlo.ciacka@hotmail.com','Miskolc','+2148262973','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1970','miklós.molnár@yahoo.com','Budapest','+9916245623','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1980','giancarlo.szodoray@yahoo.com','Budapest','+393197315','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1983','giancarlo.szodoray@yahoo.com','Miskolc','+9220453084','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1991','giancarlo.hamilton@hotmail.com','Krakow','+6778473315','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1982','prezmek.ostafil@gmail.com','New York','+701543463','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1972','pál.hamilton@yahoo.com','Krakow','+7979344826','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1982','andy.carrey@yahoo.com','Krakow','+8796250067','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1978','prezmek.hamilton@hotmail.com','Barcelona','+3216492519','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1972','john.monoczki@yahoo.com','Krakow','+6191704032','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1990','prezmek.obama@yahoo.com','Krakow','+7621237488','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1970','dániel.szodoray@yahoo.com','New York','+3475307593','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1989','john.ciacka@hotmail.com','Barcelona','+670820541','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1980','tim.ciacka@hotmail.com','Budapest','+6843272635','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1971','pál.obama@gmail.com','Barcelona','+9980145160','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1973','dániel.monoczki@yahoo.com','Budapest','+7814803622','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1985','attila.tompa@hotmail.com','New York','+6939720248','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1977','attila.molnár@gmail.com','New York','+1510122629','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1995','miklós.fisichella@hotmail.com','Barcelona','+1714648967','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1985','giancarlo.lebron@hotmail.com','Budapest','+5816593998','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1975','miklós.lebron@hotmail.com','New York','+5452615568','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1988','andy.lebron@hotmail.com','Budapest','+1214730225','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1965','john.monoczki@yahoo.com','Barcelona','+3852480321','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1972','tamás.hamilton@hotmail.com','Krakow','+1661414841','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1975','sándor.fisichella@gmail.com','Budapest','+1864953481','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1966','matthew.molnár@gmail.com','Miskolc','+1172019028','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1985','giancarlo.lebron@gmail.com','Krakow','+350569827','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1979','mateusz.beöthy@hotmail.com','Budapest','+5578780035','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1980','sándor.beöthy@hotmail.com','New York','+4085042053','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1969','tim.hamilton@hotmail.com','Miskolc','+9198040793','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1965','prezmek.carrey@hotmail.com','Krakow','+6155053397','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1978','matthew.obama@gmail.com','Krakow','+9635059812','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1982','miklós.ostafil@yahoo.com','Miskolc','+3609947643','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1976','andy.obama@yahoo.com','New York','+4350892629','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1990','pál.molnár@hotmail.com','Krakow','+9092537362','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1973','matthew.monoczki@yahoo.com','Budapest','+8569555204','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1971','andy.ciacka@hotmail.com','Barcelona','+7689198900','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1969','attila.salamon@hotmail.com','Barcelona','+4001021363','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1988','giancarlo.szodoray@gmail.com','Barcelona','+1992874055','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1976','john.salamon@hotmail.com','Krakow','+2776944160','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1995','giancarlo.fisichella@gmail.com','Miskolc','+4949084570','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1967','prezmek.obama@yahoo.com','Barcelona','+4289017314','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1992','miklós.szodoray@yahoo.com','New York','+6797818103','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1965','john.monoczki@yahoo.com','Miskolc','+2341317052','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1965','andy.obama@gmail.com','Miskolc','+6527067366','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1973','prezmek.obama@hotmail.com','New York','+4925740119','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1985','miklós.molnár@hotmail.com','Barcelona','+8240727210','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1980','sándor.beöthy@yahoo.com','New York','+5853830424','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1992','tamás.carrey@yahoo.com','Barcelona','+2489342936','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1974','giancarlo.ciacka@yahoo.com','Budapest','+6098638796','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1995','prezmek.salamon@yahoo.com','Budapest','+6330931328','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1977','mateusz.fisichella@gmail.com','Miskolc','+7383170474','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1968','john.beöthy@hotmail.com','New York','+5180873080','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1991','dániel.molnár@yahoo.com','Krakow','+4628221485','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1980','tamás.beöthy@gmail.com','Budapest','+7771797813','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1981','giancarlo.carrey@yahoo.com','New York','+8537969053','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1987','matthew.fisichella@gmail.com','Krakow','+9790360024','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1965','dániel.lebron@hotmail.com','Miskolc','+8850050865','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1977','john.hamilton@yahoo.com','Krakow','+4484590135','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1968','mateusz.salamon@hotmail.com','Budapest','+728791378','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1969','tamás.obama@hotmail.com','Miskolc','+1793321681','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1983','mateusz.salamon@hotmail.com','Barcelona','+3977339420','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1971','mateusz.monoczki@yahoo.com','Miskolc','+2043001193','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1979','andy.hamilton@gmail.com','Budapest','+8226889851','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1972','dániel.szodoray@hotmail.com','Krakow','+4810232461','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1970','andy.ostafil@yahoo.com','New York','+7925872121','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1980','pál.lebron@gmail.com','Budapest','+4015367666','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1994','miklós.tompa@hotmail.com','Miskolc','+7239029681','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1992','attila.salamon@gmail.com','Miskolc','+8522383831','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1980','matthew.obama@hotmail.com','New York','+5672018822','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1994','andy.obama@hotmail.com','Barcelona','+9811591344','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1966','dániel.beöthy@hotmail.com','Miskolc','+1793199381','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1980','attila.fisichella@hotmail.com','New York','+9107819577','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1970','john.obama@yahoo.com','Krakow','+5628783840','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1981','tamás.beöthy@hotmail.com','Barcelona','+283615900','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1981','sándor.hamilton@gmail.com','Budapest','+3200729641','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1966','pál.lebron@hotmail.com','Barcelona','+1083345898','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1969','mateusz.lebron@yahoo.com','New York','+9948379398','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1968','tamás.szodoray@yahoo.com','Krakow','+373082855','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1969','mateusz.beöthy@hotmail.com','Barcelona','+4896300700','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1969','dániel.monoczki@yahoo.com','Krakow','+150620673','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1969','matthew.obama@yahoo.com','Budapest','+5310050364','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1974','tim.lebron@hotmail.com','Miskolc','+5384629984','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1989','mateusz.monoczki@yahoo.com','Barcelona','+2267287545','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1973','attila.ostafil@hotmail.com','New York','+6042553907','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1994','mateusz.tompa@yahoo.com','Miskolc','+128930969','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1967','attila.salamon@hotmail.com','Barcelona','+9140576786','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1985','pál.carrey@gmail.com','Miskolc','+3580144404','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1968','matthew.beöthy@hotmail.com','New York','+2651768336','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1994','andy.fisichella@hotmail.com','Krakow','+4768615032','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1986','mateusz.tompa@hotmail.com','New York','+8741801446','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1985','dániel.lebron@gmail.com','New York','+9308694876','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1981','prezmek.carrey@yahoo.com','New York','+6868934930','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1975','miklós.carrey@gmail.com','Barcelona','+7740563732','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1987','mateusz.beöthy@hotmail.com','Miskolc','+486185130','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1985','tamás.ciacka@gmail.com','Miskolc','+8072230098','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1982','mateusz.lebron@yahoo.com','New York','+7277225484','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1977','john.monoczki@yahoo.com','Krakow','+6878816288','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1969','john.fisichella@yahoo.com','Krakow','+2901756006','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1982','john.fisichella@hotmail.com','Budapest','+3257056305','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1974','andy.monoczki@hotmail.com','New York','+8776196002','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1976','dániel.salamon@gmail.com','Krakow','+872205985','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1975','giancarlo.monoczki@yahoo.com','Miskolc','+1912717897','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1968','dániel.obama@hotmail.com','New York','+2972158452','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1987','andy.beöthy@hotmail.com','New York','+4549770625','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1976','matthew.beöthy@hotmail.com','Krakow','+359528425','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1989','john.lebron@hotmail.com','Budapest','+9718815379','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1992','sándor.carrey@yahoo.com','Budapest','+9952468022','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1980','dániel.szodoray@gmail.com','Budapest','+9262392469','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1992','giancarlo.salamon@hotmail.com','Krakow','+8630069474','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1993','miklós.fisichella@hotmail.com','Barcelona','+5801535728','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1987','dániel.szodoray@yahoo.com','Miskolc','+8402042486','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1980','miklós.ciacka@gmail.com','New York','+8217868408','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1984','john.lebron@gmail.com','Krakow','+5942420461','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1980','attila.fisichella@yahoo.com','Barcelona','+8517819236','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1988','dániel.hamilton@yahoo.com','Miskolc','+785217671','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1971','john.molnár@hotmail.com','Miskolc','+6205768548','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1966','giancarlo.szodoray@gmail.com','Barcelona','+5293814544','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1975','mateusz.hamilton@gmail.com','New York','+2458815937','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1974','giancarlo.lebron@yahoo.com','Krakow','+9313362014','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1984','tim.lebron@yahoo.com','New York','+2451571789','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1978','tim.szodoray@hotmail.com','Krakow','+2765418688','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1986','tamás.fisichella@yahoo.com','Krakow','+5726092687','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1974','dániel.hamilton@gmail.com','Budapest','+7170674900','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1990','prezmek.fisichella@hotmail.com','Miskolc','+9330646409','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1969','attila.molnár@gmail.com','Budapest','+9076903782','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1993','mateusz.szodoray@hotmail.com','Barcelona','+2809809837','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1992','matthew.hamilton@hotmail.com','Miskolc','+7005036114','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1994','attila.salamon@yahoo.com','Krakow','+6974215680','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1969','dániel.ostafil@gmail.com','Barcelona','+4618932403','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1965','dániel.fisichella@gmail.com','Budapest','+9775100982','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1971','mateusz.molnár@hotmail.com','New York','+3647776860','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1995','tim.obama@hotmail.com','Barcelona','+8022434944','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1980','pál.obama@yahoo.com','Barcelona','+9062847035','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1976','dániel.beöthy@hotmail.com','Budapest','+5231498222','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1983','miklós.tompa@hotmail.com','Miskolc','+4394224581','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1969','prezmek.tompa@hotmail.com','Budapest','+2337992595','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1987','andy.szodoray@yahoo.com','New York','+3681986583','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1980','miklós.szodoray@yahoo.com','Miskolc','+70784932','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1978','sándor.ostafil@hotmail.com','Krakow','+7442355084','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1975','matthew.szodoray@hotmail.com','New York','+6086294483','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1980','tamás.ostafil@gmail.com','New York','+6295714661','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1972','miklós.beöthy@gmail.com','Budapest','+5370435812','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1965','tim.ciacka@hotmail.com','Barcelona','+8139340129','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1994','tim.carrey@hotmail.com','Budapest','+5190069664','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1967','sándor.lebron@hotmail.com','New York','+7722894311','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1975','mateusz.ostafil@gmail.com','Barcelona','+8250351350','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1988','tim.ostafil@yahoo.com','New York','+5118435606','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1983','dániel.ostafil@hotmail.com','Miskolc','+7366120675','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1978','giancarlo.molnár@gmail.com','Barcelona','+1329302652','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1968','dániel.beöthy@yahoo.com','Budapest','+7761767058','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1979','dániel.ostafil@gmail.com','Budapest','+8933388540','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1995','pál.szodoray@hotmail.com','Barcelona','+5595033524','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1977','giancarlo.fisichella@hotmail.com','Miskolc','+1315450731','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1982','attila.fisichella@gmail.com','New York','+1697906521','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1992','andy.ostafil@hotmail.com','Miskolc','+4016327229','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1990','giancarlo.ostafil@yahoo.com','Budapest','+5431554152','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1972','giancarlo.monoczki@hotmail.com','Miskolc','+1732658796','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1971','matthew.molnár@yahoo.com','Miskolc','+1954294601','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1985','dániel.tompa@yahoo.com','Miskolc','+5801272173','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1994','pál.tompa@hotmail.com','Miskolc','+945033012','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1967','dániel.ostafil@hotmail.com','Krakow','+5458422970','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1988','giancarlo.fisichella@yahoo.com','New York','+1611871291','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1972','john.lebron@hotmail.com','New York','+7010753770','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1972','pál.lebron@gmail.com','Budapest','+9510578317','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1981','matthew.salamon@hotmail.com','Miskolc','+7291444172','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1971','tamás.fisichella@yahoo.com','Budapest','+1060582549','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1972','pál.carrey@yahoo.com','Miskolc','+8774307367','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1973','tamás.szodoray@gmail.com','Krakow','+351178407','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1979','mateusz.molnár@gmail.com','Krakow','+5747068483','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1971','dániel.obama@hotmail.com','Miskolc','+6801794212','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1977','pál.beöthy@hotmail.com','New York','+5857938677','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1994','matthew.lebron@yahoo.com','Miskolc','+6574302860','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1966','john.monoczki@gmail.com','New York','+1982010974','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1972','sándor.ciacka@gmail.com','Barcelona','+7322331207','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1989','tamás.beöthy@hotmail.com','New York','+877691349','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1966','tamás.lebron@hotmail.com','Budapest','+8392710324','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1968','miklós.beöthy@hotmail.com','Barcelona','+4203526505','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1987','prezmek.ciacka@gmail.com','Budapest','+6547176595','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1992','matthew.beöthy@gmail.com','Miskolc','+5126479467','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1976','attila.salamon@yahoo.com','New York','+3832554407','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1981','tamás.lebron@hotmail.com','Barcelona','+1771831217','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1991','matthew.fisichella@yahoo.com','Budapest','+8665228907','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1970','andy.tompa@gmail.com','New York','+7130573825','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1986','sándor.hamilton@gmail.com','New York','+5706786195','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1976','matthew.hamilton@gmail.com','New York','+5906504640','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1989','giancarlo.carrey@hotmail.com','Miskolc','+5703102006','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1992','dániel.molnár@hotmail.com','Barcelona','+7491009860','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1975','pál.molnár@gmail.com','Barcelona','+2939277116','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1979','tim.fisichella@yahoo.com','New York','+1935192446','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1985','sándor.beöthy@hotmail.com','Miskolc','+9618373016','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1981','tim.hamilton@gmail.com','Budapest','+6414235471','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1991','dániel.ostafil@yahoo.com','Miskolc','+3825009878','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1966','andy.fisichella@yahoo.com','Budapest','+3645294236','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1988','andy.tompa@hotmail.com','Barcelona','+4583260636','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1992','tamás.ciacka@hotmail.com','Budapest','+5353635979','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1973','tim.tompa@gmail.com','Barcelona','+1293990534','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1988','mateusz.ostafil@hotmail.com','Krakow','+9061327568','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1981','sándor.carrey@gmail.com','Budapest','+1763743401','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1970','tim.lebron@yahoo.com','New York','+1879806204','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1973','attila.carrey@hotmail.com','New York','+2641347590','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1965','tim.obama@hotmail.com','Krakow','+8317123278','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1965','attila.hamilton@gmail.com','Budapest','+6786281281','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1984','pál.salamon@gmail.com','Miskolc','+2293367237','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1981','prezmek.molnár@hotmail.com','Budapest','+7008379004','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1966','mateusz.obama@hotmail.com','Budapest','+4276441290','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1976','pál.beöthy@gmail.com','Barcelona','+2587908118','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1984','mateusz.fisichella@gmail.com','Krakow','+2081109067','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1994','tamás.carrey@gmail.com','Budapest','+6924749801','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1988','john.salamon@hotmail.com','Miskolc','+1679652692','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1967','john.szodoray@hotmail.com','Miskolc','+4552091465','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1984','miklós.obama@gmail.com','Miskolc','+126715838','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1977','tim.szodoray@yahoo.com','Krakow','+1831331469','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1966','andy.carrey@hotmail.com','New York','+1512642849','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1966','miklós.lebron@gmail.com','New York','+6540188355','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1987','miklós.lebron@yahoo.com','Barcelona','+8180315233','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1992','pál.salamon@hotmail.com','Budapest','+6819480272','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1967','attila.hamilton@gmail.com','Krakow','+8880871590','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1976','dániel.tompa@hotmail.com','Barcelona','+6733486329','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1982','prezmek.beöthy@hotmail.com','New York','+8490091553','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1966','andy.molnár@yahoo.com','Budapest','+1911948922','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1988','miklós.hamilton@hotmail.com','New York','+6141581993','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1978','matthew.beöthy@gmail.com','Miskolc','+8693515614','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1970','tamás.obama@yahoo.com','Barcelona','+3350429671','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1980','andy.lebron@yahoo.com','Budapest','+2378142316','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1984','attila.ciacka@gmail.com','New York','+6493150266','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1979','sándor.beöthy@yahoo.com','Miskolc','+3695892656','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1969','andy.carrey@gmail.com','Barcelona','+594198740','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1990','john.carrey@yahoo.com','Budapest','+4404113396','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1978','matthew.lebron@gmail.com','Miskolc','+9854592592','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1986','mateusz.monoczki@gmail.com','New York','+3578883841','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1982','john.monoczki@yahoo.com','New York','+5879349928','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1990','attila.hamilton@yahoo.com','Barcelona','+2340108346','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1983','matthew.lebron@gmail.com','New York','+3071501746','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1978','john.hamilton@gmail.com','Miskolc','+2197464648','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1991','prezmek.salamon@hotmail.com','Krakow','+4521843146','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1989','giancarlo.fisichella@hotmail.com','Miskolc','+2716920784','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1986','prezmek.szodoray@yahoo.com','Budapest','+7232530979','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1975','dániel.ostafil@gmail.com','Barcelona','+2733023136','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1965','sándor.monoczki@gmail.com','New York','+4173889930','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1976','tim.molnár@hotmail.com','Budapest','+9235830869','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1967','miklós.ostafil@yahoo.com','Krakow','+2999511520','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1977','john.monoczki@gmail.com','Budapest','+4017318675','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1976','pál.fisichella@gmail.com','Miskolc','+1658367891','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1983','prezmek.beöthy@gmail.com','Krakow','+9375662222','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1966','mateusz.fisichella@yahoo.com','Barcelona','+4516901870','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1966','dániel.ostafil@hotmail.com','New York','+3239127593','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1968','miklós.lebron@yahoo.com','New York','+359612338','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1973','pál.lebron@gmail.com','Krakow','+1066035192','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1991','miklós.beöthy@hotmail.com','Budapest','+949123036','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1977','giancarlo.monoczki@gmail.com','New York','+2994990004','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1966','tim.hamilton@gmail.com','Miskolc','+2213106209','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1968','prezmek.fisichella@yahoo.com','Miskolc','+9737662880','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1986','attila.carrey@hotmail.com','Barcelona','+5045037691','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1991','tamás.ostafil@hotmail.com','Miskolc','+271338161','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1990','tamás.lebron@gmail.com','Miskolc','+4296805459','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1991','prezmek.lebron@yahoo.com','Krakow','+8745475410','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1968','miklós.obama@yahoo.com','Budapest','+8404198206','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1992','giancarlo.lebron@yahoo.com','New York','+5693676617','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1986','pál.ciacka@yahoo.com','Budapest','+1316630933','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1990','miklós.lebron@hotmail.com','Krakow','+8344294570','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1979','mateusz.obama@yahoo.com','Krakow','+9386242399','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1984','john.fisichella@yahoo.com','New York','+543167185','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1990','andy.monoczki@gmail.com','Barcelona','+1256179598','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1985','mateusz.salamon@yahoo.com','New York','+8824488344','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1974','andy.obama@yahoo.com','Budapest','+3781452929','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1995','matthew.molnár@hotmail.com','Krakow','+9579752570','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1979','giancarlo.lebron@gmail.com','Barcelona','+6953699834','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1984','tamás.obama@hotmail.com','Krakow','+5879247664','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1995','matthew.carrey@gmail.com','Krakow','+7911731714','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1981','giancarlo.szodoray@hotmail.com','Krakow','+1934832728','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1995','prezmek.monoczki@hotmail.com','Budapest','+7347054398','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1974','matthew.salamon@gmail.com','Miskolc','+4744931620','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1965','john.fisichella@yahoo.com','Budapest','+2396868621','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1978','attila.carrey@yahoo.com','Krakow','+35003378','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1982','tamás.beöthy@yahoo.com','Barcelona','+1281959344','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1994','giancarlo.lebron@yahoo.com','Krakow','+1898978345','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1985','matthew.fisichella@hotmail.com','Barcelona','+7280081054','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1969','matthew.beöthy@gmail.com','Miskolc','+6796573609','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1993','mateusz.tompa@yahoo.com','Krakow','+7027141127','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1994','prezmek.ostafil@yahoo.com','Barcelona','+5308550829','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1989','pál.carrey@yahoo.com','New York','+8476004747','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1967','andy.lebron@hotmail.com','Barcelona','+133691634','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1993','andy.obama@gmail.com','New York','+9644381576','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1991','sándor.szodoray@gmail.com','New York','+9976389440','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1985','attila.ciacka@hotmail.com','Budapest','+1412937633','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1979','sándor.molnár@yahoo.com','New York','+3022988158','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1975','dániel.obama@hotmail.com','Miskolc','+9948041923','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1976','attila.hamilton@gmail.com','Miskolc','+4481179899','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1989','dániel.obama@hotmail.com','New York','+4054559817','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1987','giancarlo.ciacka@gmail.com','Budapest','+7953781686','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1979','andy.szodoray@hotmail.com','Barcelona','+9182807076','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1988','attila.tompa@gmail.com','Krakow','+5151829512','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1984','miklós.lebron@gmail.com','Krakow','+5679266013','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1969','pál.molnár@gmail.com','Krakow','+1835446859','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1987','tim.lebron@hotmail.com','New York','+5698559343','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1980','sándor.ciacka@gmail.com','Barcelona','+4760050207','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1990','giancarlo.fisichella@hotmail.com','New York','+8403862715','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1987','miklós.carrey@hotmail.com','Budapest','+2812190444','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1984','tamás.molnár@yahoo.com','Barcelona','+7911982045','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1965','pál.beöthy@hotmail.com','Barcelona','+5817694244','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1983','attila.ostafil@hotmail.com','Miskolc','+3275546963','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1983','john.tompa@hotmail.com','Barcelona','+9524376452','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1979','miklós.fisichella@yahoo.com','Krakow','+8604447603','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1984','prezmek.beöthy@hotmail.com','Barcelona','+6765239179','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1993','tamás.lebron@hotmail.com','Krakow','+6463622905','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1978','matthew.szodoray@yahoo.com','Budapest','+6720094804','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1972','giancarlo.lebron@gmail.com','Krakow','+2143434586','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1981','matthew.beöthy@gmail.com','Krakow','+8556366148','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1967','miklós.beöthy@yahoo.com','New York','+1439365064','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1978','attila.salamon@yahoo.com','Budapest','+2909319476','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1983','tamás.molnár@hotmail.com','Barcelona','+8499471184','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1982','john.fisichella@yahoo.com','Barcelona','+6890357709','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1977','giancarlo.carrey@hotmail.com','Krakow','+7821788461','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1984','giancarlo.hamilton@hotmail.com','New York','+9387404742','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1984','attila.fisichella@hotmail.com','Krakow','+181272424','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1991','john.hamilton@gmail.com','Budapest','+9528164945','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1991','tamás.carrey@hotmail.com','Barcelona','+4328857879','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1989','mateusz.ciacka@yahoo.com','Barcelona','+5963011868','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1985','dániel.monoczki@hotmail.com','Miskolc','+3717986733','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1965','attila.tompa@hotmail.com','Barcelona','+5722930299','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1978','attila.ostafil@yahoo.com','Krakow','+4594952637','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1994','miklós.molnár@yahoo.com','Budapest','+3587314815','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1969','andy.ostafil@gmail.com','Budapest','+8651460044','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1987','pál.obama@gmail.com','Barcelona','+6248310690','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1978','dániel.hamilton@hotmail.com','New York','+1052323069','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1967','tamás.ostafil@yahoo.com','Barcelona','+5861168858','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1966','sándor.szodoray@yahoo.com','Krakow','+8700190206','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1981','matthew.ciacka@yahoo.com','Krakow','+4797223680','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1994','john.obama@yahoo.com','Miskolc','+7486004168','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1965','miklós.hamilton@hotmail.com','Krakow','+1470966087','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1985','pál.obama@gmail.com','Barcelona','+5717148897','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1970','dániel.szodoray@gmail.com','Miskolc','+4550686399','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1975','john.beöthy@yahoo.com','Miskolc','+8691419860','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1995','andy.carrey@yahoo.com','Budapest','+8438432405','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1965','john.monoczki@hotmail.com','Krakow','+6586119942','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1968','tamás.lebron@gmail.com','Krakow','+7626172023','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1969','dániel.szodoray@yahoo.com','Miskolc','+1153006314','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1983','tamás.molnár@hotmail.com','New York','+8033434446','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1992','sándor.szodoray@gmail.com','New York','+6188232934','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1974','pál.ciacka@gmail.com','Miskolc','+8908449617','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1978','tamás.obama@hotmail.com','Barcelona','+7517448700','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1987','miklós.monoczki@gmail.com','Miskolc','+3195311028','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1991','giancarlo.fisichella@yahoo.com','Krakow','+670072287','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1970','attila.molnár@gmail.com','Miskolc','+4184658297','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1969','tamás.szodoray@hotmail.com','New York','+5124569394','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1978','tamás.szodoray@yahoo.com','Krakow','+6237810524','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1970','tim.lebron@hotmail.com','Budapest','+1545481482','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1977','tamás.monoczki@yahoo.com','New York','+9697897004','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1965','miklós.hamilton@gmail.com','Barcelona','+8464680056','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1971','mateusz.ciacka@yahoo.com','Barcelona','+388933422','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1995','pál.ciacka@gmail.com','Miskolc','+2924327659','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1972','prezmek.hamilton@yahoo.com','New York','+2089022759','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1992','sándor.carrey@hotmail.com','Krakow','+8930722508','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1984','sándor.lebron@yahoo.com','Krakow','+5148009073','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1978','prezmek.carrey@yahoo.com','Krakow','+2938812551','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1983','attila.molnár@yahoo.com','New York','+1481813448','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1986','mateusz.fisichella@gmail.com','New York','+5612210486','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1975','john.ostafil@gmail.com','Miskolc','+5595644558','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1989','matthew.ostafil@hotmail.com','Miskolc','+7208093502','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1992','miklós.carrey@gmail.com','Krakow','+6115530363','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1983','sándor.ciacka@yahoo.com','Budapest','+3388387299','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1974','andy.salamon@gmail.com','New York','+4726383178','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1982','andy.ostafil@gmail.com','Krakow','+2012118952','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1992','tamás.molnár@hotmail.com','Barcelona','+7106857951','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1991','tim.molnár@hotmail.com','Budapest','+1243283634','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1969','prezmek.tompa@hotmail.com','Barcelona','+5910472840','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1994','giancarlo.ostafil@yahoo.com','Krakow','+9661952249','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1980','attila.hamilton@yahoo.com','Budapest','+2274134383','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1993','dániel.tompa@yahoo.com','Budapest','+6569484577','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1983','attila.salamon@gmail.com','Barcelona','+8867490975','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1965','john.ciacka@gmail.com','Miskolc','+6137118881','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1982','tamás.fisichella@gmail.com','Krakow','+922441751','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1967','prezmek.carrey@yahoo.com','Budapest','+3785070959','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1990','john.monoczki@hotmail.com','Krakow','+6764380518','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1985','giancarlo.obama@yahoo.com','Miskolc','+664972971','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1994','giancarlo.szodoray@gmail.com','Krakow','+5335263776','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1992','andy.szodoray@yahoo.com','Krakow','+9560225229','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1980','prezmek.tompa@hotmail.com','Miskolc','+3231004553','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1993','andy.salamon@gmail.com','Miskolc','+6201204180','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1966','tamás.salamon@yahoo.com','Miskolc','+6471139181','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1989','dániel.carrey@yahoo.com','New York','+1003669001','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1985','miklós.obama@hotmail.com','Miskolc','+9000768595','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1974','matthew.carrey@hotmail.com','Krakow','+6181524301','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1967','pál.obama@hotmail.com','Miskolc','+1264422301','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1971','tim.monoczki@yahoo.com','Krakow','+3195797446','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1974','sándor.salamon@hotmail.com','Miskolc','+3276805132','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1974','john.ciacka@gmail.com','Barcelona','+8702484867','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1989','dániel.ciacka@gmail.com','Barcelona','+2598740955','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1982','tamás.fisichella@hotmail.com','Krakow','+2890101033','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1967','sándor.molnár@hotmail.com','Barcelona','+776751596','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1968','john.carrey@yahoo.com','Budapest','+7171857941','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1966','attila.monoczki@yahoo.com','Barcelona','+8930051159','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1966','tim.ciacka@gmail.com','Budapest','+9059449633','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1995','sándor.carrey@gmail.com','Miskolc','+8226018741','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1972','andy.molnár@gmail.com','Barcelona','+6977474131','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1990','tim.ostafil@yahoo.com','Miskolc','+6843844577','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1977','tim.fisichella@hotmail.com','Krakow','+2723279251','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1988','mateusz.tompa@yahoo.com','Budapest','+4481775722','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1990','attila.lebron@gmail.com','Budapest','+5317217553','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1975','john.szodoray@gmail.com','Budapest','+1757957048','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1970','prezmek.beöthy@hotmail.com','Krakow','+9447822449','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1983','john.salamon@gmail.com','Budapest','+4346887171','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1976','attila.beöthy@yahoo.com','Budapest','+9482813621','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1992','matthew.hamilton@gmail.com','Krakow','+4368229823','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1981','pál.carrey@gmail.com','Krakow','+5540873299','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1977','sándor.szodoray@yahoo.com','New York','+6051897923','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1970','andy.hamilton@gmail.com','Barcelona','+7445382888','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1974','miklós.obama@hotmail.com','Barcelona','+1386212916','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1968','mateusz.carrey@hotmail.com','Miskolc','+8775921480','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1967','tim.tompa@hotmail.com','Barcelona','+2651990322','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1977','pál.molnár@gmail.com','Budapest','+7011080684','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1976','mateusz.ostafil@yahoo.com','Krakow','+7722328662','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1977','matthew.obama@hotmail.com','Miskolc','+7123755956','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1970','matthew.molnár@yahoo.com','Krakow','+9078269394','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1993','attila.carrey@yahoo.com','Barcelona','+2143482547','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1989','prezmek.beöthy@yahoo.com','Miskolc','+9893199273','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1985','john.tompa@gmail.com','Barcelona','+9787247273','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1970','miklós.ostafil@yahoo.com','Barcelona','+6269884837','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1995','tamás.obama@yahoo.com','Miskolc','+5714583211','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1983','tim.hamilton@gmail.com','Budapest','+4269490872','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1974','tim.ciacka@yahoo.com','Budapest','+59969337','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1982','giancarlo.salamon@yahoo.com','Miskolc','+6889504495','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1976','sándor.ciacka@gmail.com','Miskolc','+5302419899','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1970','sándor.salamon@gmail.com','Krakow','+16512961','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1985','matthew.ostafil@yahoo.com','Barcelona','+7688721054','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1993','tim.ciacka@yahoo.com','Miskolc','+9117350','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1981','pál.monoczki@yahoo.com','New York','+4513362745','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1975','miklós.ostafil@yahoo.com','Barcelona','+1005289613','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1968','giancarlo.salamon@gmail.com','Miskolc','+281699359','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1972','prezmek.obama@gmail.com','Budapest','+253600405','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1990','john.obama@hotmail.com','Miskolc','+1612511334','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1991','dániel.tompa@gmail.com','Barcelona','+2824987983','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1965','prezmek.obama@gmail.com','Krakow','+1558328617','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1970','mateusz.fisichella@gmail.com','New York','+3232175780','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1974','miklós.lebron@hotmail.com','Barcelona','+6685909198','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1985','tim.molnár@hotmail.com','New York','+5369777497','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1968','pál.beöthy@hotmail.com','Budapest','+691120061','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1973','mateusz.monoczki@gmail.com','Krakow','+7121413973','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1985','tim.fisichella@hotmail.com','Barcelona','+2632535031','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1968','prezmek.fisichella@yahoo.com','Budapest','+789372999','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1983','matthew.szodoray@yahoo.com','Budapest','+2889206177','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1969','prezmek.hamilton@gmail.com','Barcelona','+7111830615','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1987','mateusz.tompa@hotmail.com','Krakow','+8703713928','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1988','tamás.carrey@gmail.com','Miskolc','+5989655122','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1970','giancarlo.molnár@gmail.com','Krakow','+1237569712','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1979','attila.ciacka@yahoo.com','Budapest','+1250045763','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1968','tamás.fisichella@hotmail.com','Krakow','+4364093105','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1976','sándor.ciacka@hotmail.com','Krakow','+5529782514','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1993','dániel.carrey@hotmail.com','Barcelona','+6309772911','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1966','matthew.fisichella@gmail.com','New York','+9675820517','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1991','mateusz.ostafil@gmail.com','New York','+6788915853','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1990','tim.salamon@hotmail.com','Budapest','+662326868','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1987','sándor.obama@hotmail.com','New York','+6740156582','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1984','giancarlo.hamilton@gmail.com','Barcelona','+4297209126','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1986','andy.fisichella@yahoo.com','New York','+3263341664','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1966','john.szodoray@yahoo.com','New York','+2743848940','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1984','matthew.molnár@yahoo.com','Miskolc','+4644396265','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1972','attila.szodoray@hotmail.com','Miskolc','+4516247613','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1979','giancarlo.ciacka@gmail.com','Miskolc','+6988554741','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1975','pál.szodoray@yahoo.com','Budapest','+6975299943','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1968','pál.molnár@yahoo.com','Krakow','+8508775738','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1994','prezmek.tompa@yahoo.com','Barcelona','+2752896669','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1970','mateusz.szodoray@yahoo.com','Krakow','+5427146827','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1985','prezmek.carrey@hotmail.com','Barcelona','+961732280','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1985','miklós.ostafil@gmail.com','New York','+3136732804','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1975','matthew.molnár@yahoo.com','Budapest','+5209511055','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1981','john.fisichella@gmail.com','Miskolc','+8979370188','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1968','andy.molnár@gmail.com','Krakow','+8086283622','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1965','andy.hamilton@yahoo.com','Miskolc','+2026253464','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1989','attila.monoczki@gmail.com','New York','+8928629299','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1985','john.ciacka@hotmail.com','Krakow','+6581998206','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1995','john.szodoray@yahoo.com','Krakow','+501334048','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1990','matthew.beöthy@yahoo.com','Miskolc','+7976726628','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1975','giancarlo.hamilton@gmail.com','Barcelona','+6593357508','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1989','matthew.fisichella@yahoo.com','Barcelona','+2145004125','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1971','miklós.fisichella@gmail.com','Budapest','+7212597561','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1965','andy.salamon@hotmail.com','Krakow','+592628166','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1966','sándor.salamon@gmail.com','Barcelona','+9907226164','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1968','tim.hamilton@gmail.com','Krakow','+1990021964','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1982','matthew.hamilton@yahoo.com','New York','+6563051579','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1970','giancarlo.carrey@hotmail.com','New York','+5800273211','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1979','tim.molnár@hotmail.com','New York','+1043384575','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1971','mateusz.lebron@hotmail.com','Krakow','+6643658047','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1978','tim.ciacka@yahoo.com','Miskolc','+5015646582','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1970','andy.hamilton@yahoo.com','Krakow','+5340430394','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1975','mateusz.tompa@yahoo.com','Miskolc','+5233972099','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1987','sándor.fisichella@yahoo.com','Barcelona','+5955377265','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1985','andy.lebron@gmail.com','Miskolc','+6972460522','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1984','andy.salamon@hotmail.com','Krakow','+8121437719','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1976','giancarlo.fisichella@hotmail.com','Krakow','+3820325068','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1975','sándor.salamon@yahoo.com','Budapest','+5292312893','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1972','mateusz.obama@hotmail.com','New York','+9410645294','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1979','prezmek.lebron@yahoo.com','Budapest','+8879473507','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1983','prezmek.szodoray@gmail.com','Krakow','+4261483383','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1971','attila.ostafil@hotmail.com','Miskolc','+1999129881','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1967','miklós.hamilton@gmail.com','Krakow','+5329811056','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1990','miklós.lebron@gmail.com','Krakow','+7062563943','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1981','pál.hamilton@hotmail.com','New York','+6610449393','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1986','john.ciacka@gmail.com','Barcelona','+1809280763','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1986','sándor.ostafil@hotmail.com','New York','+2895060338','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1979','tamás.ostafil@yahoo.com','Miskolc','+1948929914','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1995','attila.fisichella@gmail.com','Miskolc','+6329346844','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1990','pál.hamilton@yahoo.com','Miskolc','+8296516156','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1981','tim.szodoray@yahoo.com','New York','+766860920','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1988','giancarlo.szodoray@gmail.com','New York','+7315309943','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1971','prezmek.ostafil@hotmail.com','Barcelona','+3192925228','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1995','tim.lebron@hotmail.com','Miskolc','+7133785813','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1966','andy.molnár@hotmail.com','Barcelona','+7508699494','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1969','mateusz.hamilton@hotmail.com','Krakow','+1898406280','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1981','sándor.szodoray@yahoo.com','Budapest','+9508861848','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1968','sándor.tompa@hotmail.com','Barcelona','+2884551147','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1975','sándor.lebron@hotmail.com','Miskolc','+6564054798','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1966','giancarlo.monoczki@hotmail.com','Budapest','+4601152699','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1990','dániel.tompa@yahoo.com','Budapest','+3874976191','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1984','tim.salamon@yahoo.com','Miskolc','+1307694428','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1994','matthew.tompa@yahoo.com','Budapest','+6212597246','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1976','attila.monoczki@hotmail.com','Miskolc','+7865700383','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1987','matthew.beöthy@hotmail.com','Miskolc','+6227625601','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1993','prezmek.obama@yahoo.com','Krakow','+3124113895','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1966','giancarlo.ciacka@hotmail.com','Budapest','+4092610260','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1984','prezmek.carrey@hotmail.com','Miskolc','+4516588341','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1972','matthew.obama@yahoo.com','New York','+6585562541','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1988','andy.szodoray@gmail.com','Miskolc','+9807507972','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1965','tamás.monoczki@gmail.com','Miskolc','+9070428580','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1982','dániel.fisichella@hotmail.com','Krakow','+8347170796','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1981','john.szodoray@hotmail.com','Budapest','+7541704301','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1965','sándor.szodoray@yahoo.com','New York','+3365802599','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1987','giancarlo.hamilton@hotmail.com','Barcelona','+4476573250','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1983','mateusz.molnár@gmail.com','Miskolc','+6723004311','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1994','dániel.monoczki@hotmail.com','New York','+626038217','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1984','attila.ciacka@gmail.com','Budapest','+8515156587','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1971','john.szodoray@gmail.com','Miskolc','+5405335009','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1982','john.ciacka@hotmail.com','Miskolc','+1204095595','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1985','dániel.carrey@hotmail.com','Budapest','+2280862659','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1986','pál.ciacka@gmail.com','Budapest','+5923412383','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1995','pál.szodoray@hotmail.com','Miskolc','+8629531692','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1990','prezmek.obama@hotmail.com','Barcelona','+7403828853','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1983','prezmek.monoczki@yahoo.com','Budapest','+8312999183','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1974','john.monoczki@hotmail.com','Krakow','+8670708167','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1995','miklós.salamon@hotmail.com','New York','+9479440111','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1975','mateusz.szodoray@gmail.com','Barcelona','+2000192061','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1984','prezmek.molnár@yahoo.com','Budapest','+102949289','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1973','dániel.obama@hotmail.com','Budapest','+8495900608','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1965','sándor.salamon@hotmail.com','New York','+9242111366','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1967','attila.monoczki@hotmail.com','Krakow','+9227149357','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1970','dániel.molnár@yahoo.com','Budapest','+5395948389','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1983','matthew.carrey@hotmail.com','New York','+4635584518','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1974','pál.carrey@gmail.com','Miskolc','+6781653161','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1975','prezmek.szodoray@gmail.com','Miskolc','+2992777857','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1973','sándor.ostafil@hotmail.com','New York','+7994858572','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1985','mateusz.fisichella@hotmail.com','New York','+7041694946','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1967','sándor.carrey@gmail.com','Budapest','+3077366902','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1985','giancarlo.carrey@yahoo.com','Barcelona','+4025081513','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1971','miklós.molnár@hotmail.com','Krakow','+2935079849','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1979','matthew.ciacka@gmail.com','Barcelona','+1853627060','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1991','pál.beöthy@hotmail.com','Budapest','+5382993017','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1989','sándor.lebron@hotmail.com','Krakow','+7087208936','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1984','prezmek.fisichella@gmail.com','New York','+5030558374','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1970','miklós.salamon@gmail.com','Krakow','+1271812257','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1983','attila.beöthy@gmail.com','Krakow','+7009535884','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1995','tim.lebron@yahoo.com','Barcelona','+9401035713','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1994','dániel.salamon@yahoo.com','Budapest','+9050864160','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1989','prezmek.hamilton@yahoo.com','Krakow','+7676677758','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1985','andy.monoczki@hotmail.com','Miskolc','+528296751','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1995','andy.carrey@hotmail.com','Miskolc','+3134311631','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1967','prezmek.lebron@yahoo.com','Budapest','+8501194839','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1983','giancarlo.salamon@hotmail.com','New York','+7224184106','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1975','miklós.molnár@hotmail.com','New York','+2713456151','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1984','dániel.fisichella@yahoo.com','Krakow','+5666828398','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1979','giancarlo.ostafil@hotmail.com','Krakow','+7080036768','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1977','attila.hamilton@hotmail.com','New York','+2849532260','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1970','attila.fisichella@hotmail.com','New York','+8596593298','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1966','tim.beöthy@gmail.com','Krakow','+4429357985','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1979','tamás.tompa@yahoo.com','Budapest','+7015110814','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1993','pál.fisichella@gmail.com','Krakow','+3804819847','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1979','miklós.beöthy@gmail.com','Miskolc','+2825464775','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1986','dániel.molnár@gmail.com','Budapest','+1882608276','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1971','attila.ostafil@hotmail.com','Miskolc','+7532556079','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1981','mateusz.fisichella@hotmail.com','Miskolc','+5644622971','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1987','tamás.salamon@gmail.com','New York','+7524616111','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1992','tim.tompa@yahoo.com','Miskolc','+4079930716','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1980','mateusz.salamon@yahoo.com','New York','+5454585670','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1978','dániel.salamon@gmail.com','Krakow','+3907883845','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1969','prezmek.carrey@hotmail.com','Miskolc','+2004909579','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1986','andy.beöthy@gmail.com','Miskolc','+7579795713','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1968','john.beöthy@gmail.com','Miskolc','+9720638373','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1971','prezmek.fisichella@gmail.com','Krakow','+3684850524','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1991','andy.beöthy@gmail.com','New York','+8543468121','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1977','miklós.molnár@gmail.com','New York','+3504112187','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1986','sándor.monoczki@yahoo.com','Miskolc','+939026269','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1972','tim.szodoray@gmail.com','New York','+4252828973','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1985','mateusz.tompa@hotmail.com','Miskolc','+8377430971','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1989','tim.obama@gmail.com','Miskolc','+227805260','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1967','tim.lebron@hotmail.com','Barcelona','+9300794089','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1969','andy.szodoray@hotmail.com','Barcelona','+1437592480','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1979','prezmek.carrey@yahoo.com','Miskolc','+4125428985','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1979','giancarlo.fisichella@yahoo.com','Miskolc','+244146335','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1977','attila.ciacka@gmail.com','Budapest','+1048057522','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1982','prezmek.hamilton@yahoo.com','Miskolc','+2219124461','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1981','sándor.carrey@yahoo.com','Miskolc','+3371095144','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1985','sándor.molnár@hotmail.com','Budapest','+6674264287','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1982','sándor.tompa@hotmail.com','Krakow','+8567574324','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1982','sándor.lebron@gmail.com','Krakow','+679003597','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1995','pál.obama@hotmail.com','Miskolc','+148777586','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1987','tamás.szodoray@gmail.com','Barcelona','+9276315417','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1987','prezmek.monoczki@yahoo.com','Miskolc','+1634828916','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1978','attila.salamon@hotmail.com','Miskolc','+7569736838','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1992','giancarlo.ciacka@hotmail.com','Budapest','+4356759706','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1967','john.szodoray@hotmail.com','Krakow','+7321120251','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1993','tamás.ostafil@yahoo.com','Miskolc','+3118304714','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1971','sándor.molnár@gmail.com','Budapest','+3730696176','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1970','miklós.ciacka@gmail.com','Barcelona','+8517330863','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1992','attila.monoczki@yahoo.com','New York','+7697770358','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1995','matthew.fisichella@hotmail.com','Miskolc','+6249837077','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1994','mateusz.tompa@gmail.com','Barcelona','+9346093335','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1967','prezmek.obama@gmail.com','Krakow','+2594767934','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1984','matthew.salamon@gmail.com','Budapest','+5473734889','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1969','dániel.ciacka@hotmail.com','Budapest','+5271158067','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1994','pál.salamon@hotmail.com','New York','+9591440981','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1994','giancarlo.ciacka@yahoo.com','Barcelona','+4648878676','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1970','pál.beöthy@hotmail.com','Budapest','+6705469524','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1986','mateusz.ostafil@gmail.com','New York','+2294716451','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1972','andy.obama@hotmail.com','Barcelona','+4184752618','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1983','miklós.hamilton@hotmail.com','New York','+7633217979','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1970','matthew.molnár@hotmail.com','New York','+956269049','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1979','andy.szodoray@yahoo.com','Krakow','+1893627277','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1965','andy.carrey@hotmail.com','New York','+8579479202','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1990','matthew.molnár@gmail.com','Barcelona','+6760126371','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1969','sándor.carrey@yahoo.com','Miskolc','+2114649007','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1982','matthew.hamilton@hotmail.com','Krakow','+4035749393','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1968','prezmek.carrey@gmail.com','New York','+3160627356','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1967','john.ciacka@gmail.com','New York','+5133607511','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1981','miklós.ostafil@hotmail.com','New York','+2443999824','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1988','andy.molnár@gmail.com','Budapest','+28694130','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1990','john.tompa@hotmail.com','Barcelona','+6419774250','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1971','tamás.fisichella@gmail.com','Miskolc','+3731334630','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1986','mateusz.fisichella@hotmail.com','New York','+3795560594','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1968','prezmek.beöthy@yahoo.com','Barcelona','+9452921031','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1987','john.molnár@yahoo.com','Miskolc','+7595255611','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1982','miklós.ostafil@yahoo.com','Barcelona','+3606089402','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1975','tamás.monoczki@yahoo.com','Barcelona','+28812015','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1976','dániel.ciacka@hotmail.com','Budapest','+5729524513','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1988','andy.szodoray@yahoo.com','Krakow','+8993967294','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1981','dániel.beöthy@hotmail.com','New York','+4888404794','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1965','sándor.beöthy@gmail.com','Budapest','+92407595','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1980','dániel.carrey@gmail.com','Barcelona','+4601731893','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1994','miklós.salamon@hotmail.com','Barcelona','+7928533219','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1976','prezmek.hamilton@hotmail.com','New York','+5012333558','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1980','tamás.carrey@hotmail.com','Budapest','+4729415441','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1976','sándor.carrey@yahoo.com','Budapest','+5891780471','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1979','john.obama@hotmail.com','New York','+5923931022','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1994','tamás.fisichella@yahoo.com','Miskolc','+9961179812','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1968','attila.tompa@gmail.com','Barcelona','+1445072451','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1981','tim.molnár@gmail.com','Krakow','+8631481362','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1966','attila.hamilton@hotmail.com','Krakow','+2912287101','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1971','prezmek.fisichella@yahoo.com','Krakow','+8407883383','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1991','sándor.salamon@hotmail.com','Miskolc','+8943619928','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1969','miklós.molnár@gmail.com','New York','+3304182650','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1982','tim.ciacka@hotmail.com','Krakow','+8632924166','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1974','mateusz.szodoray@yahoo.com','Krakow','+7319882714','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1978','matthew.lebron@gmail.com','New York','+6610873056','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1966','tim.tompa@gmail.com','New York','+895711315','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1989','tim.ostafil@hotmail.com','New York','+8324009298','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1971','miklós.lebron@hotmail.com','Miskolc','+5373086736','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1965','attila.ciacka@gmail.com','Krakow','+5793875945','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1984','prezmek.carrey@gmail.com','New York','+9333557043','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1982','matthew.ostafil@gmail.com','Krakow','+1012301298','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1993','andy.obama@yahoo.com','Budapest','+2508296709','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1982','miklós.beöthy@hotmail.com','Krakow','+5534420466','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1986','attila.molnár@hotmail.com','Miskolc','+4232709260','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1983','miklós.ciacka@gmail.com','Barcelona','+8926561091','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1979','prezmek.tompa@hotmail.com','Budapest','+3560624664','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1978','tim.tompa@yahoo.com','Barcelona','+801178939','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1990','john.monoczki@gmail.com','Krakow','+5112872249','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1972','prezmek.monoczki@yahoo.com','Miskolc','+8523077172','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1978','miklós.salamon@gmail.com','Miskolc','+252959309','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1987','giancarlo.obama@hotmail.com','New York','+3427396305','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1971','tim.hamilton@yahoo.com','New York','+5723613318','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1992','tamás.fisichella@gmail.com','Krakow','+8956621270','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1982','miklós.ciacka@gmail.com','Budapest','+4683302723','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1967','prezmek.ostafil@yahoo.com','Krakow','+6130665718','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1978','tim.ostafil@yahoo.com','Krakow','+5930972096','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1995','attila.ciacka@hotmail.com','New York','+4637093603','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1971','matthew.fisichella@yahoo.com','Barcelona','+7926307242','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1967','giancarlo.ostafil@gmail.com','New York','+2017847872','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1983','matthew.ciacka@gmail.com','Miskolc','+5370650954','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1979','john.monoczki@yahoo.com','New York','+2462507317','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1982','tim.carrey@gmail.com','Krakow','+3572020648','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1974','dániel.lebron@hotmail.com','Budapest','+5087948065','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1994','giancarlo.carrey@hotmail.com','Miskolc','+2271168732','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1984','miklós.molnár@hotmail.com','Budapest','+6217660258','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1966','matthew.fisichella@gmail.com','Budapest','+6520244438','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1986','john.szodoray@hotmail.com','Barcelona','+8378748213','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1970','pál.tompa@yahoo.com','Budapest','+2226456097','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1980','miklós.beöthy@hotmail.com','Miskolc','+7114367175','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1981','tamás.tompa@hotmail.com','Budapest','+5643555522','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1980','andy.ostafil@hotmail.com','Barcelona','+4147453855','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1975','miklós.tompa@hotmail.com','Krakow','+625580457','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1972','giancarlo.fisichella@hotmail.com','Krakow','+2938261910','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1985','attila.monoczki@gmail.com','Miskolc','+5818437617','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1969','prezmek.obama@yahoo.com','Barcelona','+9281199609','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1987','andy.salamon@gmail.com','Budapest','+4424892435','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1991','andy.obama@hotmail.com','Miskolc','+2573712188','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1982','prezmek.carrey@gmail.com','Budapest','+8333506706','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1978','dániel.fisichella@yahoo.com','Miskolc','+5964358731','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1975','miklós.szodoray@gmail.com','Miskolc','+3530899395','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1965','attila.molnár@gmail.com','New York','+459439475','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1971','mateusz.szodoray@gmail.com','Miskolc','+5467736777','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1980','prezmek.obama@yahoo.com','Barcelona','+374156415','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1971','andy.salamon@yahoo.com','Budapest','+1862902782','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1965','dániel.monoczki@yahoo.com','New York','+3901191908','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1987','giancarlo.ostafil@yahoo.com','New York','+8351805886','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1989','miklós.molnár@gmail.com','Krakow','+2564916938','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1983','attila.hamilton@gmail.com','Miskolc','+5434934737','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1974','miklós.molnár@gmail.com','Barcelona','+6383373024','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1983','tim.szodoray@hotmail.com','Budapest','+5121135064','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1971','prezmek.ciacka@gmail.com','Barcelona','+8497458961','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1986','pál.obama@hotmail.com','Budapest','+2647236721','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1978','miklós.fisichella@yahoo.com','Barcelona','+2200576107','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1981','prezmek.monoczki@yahoo.com','New York','+5731811222','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1986','tamás.obama@hotmail.com','Barcelona','+5516651313','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1967','giancarlo.beöthy@gmail.com','Budapest','+3716952970','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1982','giancarlo.molnár@hotmail.com','New York','+5292859331','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1974','sándor.hamilton@yahoo.com','Miskolc','+453948373','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1977','dániel.beöthy@gmail.com','Krakow','+1778302344','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1969','matthew.ciacka@yahoo.com','New York','+4222564316','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1976','attila.ciacka@hotmail.com','Budapest','+3055251755','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1987','prezmek.carrey@hotmail.com','Krakow','+1782747940','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1973','dániel.hamilton@yahoo.com','Budapest','+624042794','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1991','john.monoczki@yahoo.com','Barcelona','+4136581393','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1988','giancarlo.hamilton@yahoo.com','New York','+7603849446','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1994','sándor.ciacka@gmail.com','Barcelona','+982489051','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1978','pál.ciacka@hotmail.com','New York','+8975858910','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1990','tamás.lebron@yahoo.com','Budapest','+4562589091','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1986','matthew.ostafil@gmail.com','Krakow','+1244344905','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1994','andy.fisichella@gmail.com','New York','+9873005855','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1992','attila.ostafil@gmail.com','Miskolc','+5886939471','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1989','john.carrey@yahoo.com','Budapest','+1293471846','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1973','giancarlo.carrey@hotmail.com','Barcelona','+477510043','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1989','sándor.ostafil@gmail.com','Miskolc','+7541039573','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1967','attila.tompa@yahoo.com','Barcelona','+1433796800','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1991','attila.ciacka@yahoo.com','Barcelona','+9084314326','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1966','tim.hamilton@yahoo.com','Miskolc','+5169623054','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1988','miklós.obama@yahoo.com','Krakow','+328801538','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1987','matthew.szodoray@gmail.com','Miskolc','+3995171805','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1973','andy.carrey@gmail.com','Miskolc','+3816677181','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1970','giancarlo.szodoray@gmail.com','Miskolc','+7111405716','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1994','john.lebron@gmail.com','Miskolc','+6250791864','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1977','prezmek.lebron@gmail.com','Miskolc','+5772086297','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1971','andy.molnár@gmail.com','Krakow','+8889316098','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1970','mateusz.beöthy@yahoo.com','New York','+2716120690','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1984','sándor.obama@yahoo.com','New York','+631093248','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1977','john.hamilton@yahoo.com','Barcelona','+3856363481','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1982','sándor.fisichella@yahoo.com','Budapest','+3647403728','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1986','sándor.tompa@hotmail.com','Budapest','+2601205292','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1965','pál.tompa@hotmail.com','New York','+4243934564','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1968','miklós.carrey@yahoo.com','Barcelona','+8566449908','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1976','pál.beöthy@gmail.com','Budapest','+706918600','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1981','andy.ostafil@gmail.com','Krakow','+3252675598','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1984','giancarlo.salamon@gmail.com','New York','+3834852731','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1980','tamás.ciacka@gmail.com','Barcelona','+2225809107','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1971','john.obama@hotmail.com','Miskolc','+2601878400','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1982','attila.szodoray@yahoo.com','Miskolc','+4709587604','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1970','mateusz.ostafil@gmail.com','Krakow','+9437564959','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1989','giancarlo.carrey@gmail.com','New York','+3017401711','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1972','john.beöthy@yahoo.com','Krakow','+9722013566','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1992','tamás.hamilton@yahoo.com','Budapest','+9685764748','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1986','mateusz.obama@hotmail.com','Miskolc','+8624366402','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1986','dániel.szodoray@gmail.com','Krakow','+2136987132','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1977','pál.hamilton@hotmail.com','Miskolc','+445454652','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1976','john.ostafil@yahoo.com','Miskolc','+8005690421','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1988','tamás.carrey@gmail.com','Miskolc','+9283251104','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1967','john.obama@yahoo.com','New York','+3577236814','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1977','prezmek.ostafil@gmail.com','Budapest','+4612934534','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1975','andy.lebron@hotmail.com','New York','+2770714597','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1995','tamás.salamon@gmail.com','Miskolc','+2531235636','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1994','attila.monoczki@gmail.com','Barcelona','+3056875480','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1986','john.obama@yahoo.com','Budapest','+2314021196','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1987','tim.ostafil@gmail.com','Budapest','+8744649190','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1982','andy.tompa@hotmail.com','Budapest','+3576850219','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1981','john.ciacka@gmail.com','Budapest','+1622774420','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1979','tim.salamon@gmail.com','Budapest','+5800504006','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1972','john.ostafil@hotmail.com','Barcelona','+3385204563','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1967','tim.ciacka@gmail.com','Budapest','+7358724810','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1985','giancarlo.monoczki@hotmail.com','New York','+5964408396','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1990','tamás.tompa@yahoo.com','Krakow','+6437974833','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1974','sándor.beöthy@yahoo.com','New York','+332424929','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1993','tim.ciacka@gmail.com','Krakow','+8646681879','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1979','prezmek.lebron@gmail.com','Budapest','+2419167342','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1988','matthew.hamilton@gmail.com','Barcelona','+3026168691','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1966','giancarlo.monoczki@hotmail.com','Krakow','+4104162770','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1990','attila.beöthy@hotmail.com','Barcelona','+8645087635','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1978','pál.tompa@yahoo.com','Krakow','+4426899212','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1982','andy.lebron@hotmail.com','New York','+9490979829','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1976','mateusz.monoczki@hotmail.com','Barcelona','+7367918010','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1983','sándor.hamilton@gmail.com','New York','+4781400337','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1971','matthew.monoczki@hotmail.com','New York','+1803725272','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1992','mateusz.szodoray@yahoo.com','Krakow','+2577905172','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1965','matthew.ciacka@yahoo.com','Budapest','+5802226663','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1985','pál.beöthy@gmail.com','Budapest','+5579814754','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1993','prezmek.carrey@gmail.com','New York','+310296438','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1972','john.lebron@gmail.com','Budapest','+7298597983','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1992','attila.carrey@gmail.com','Budapest','+4071392270','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1974','attila.lebron@gmail.com','Miskolc','+448555644','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1970','miklós.salamon@yahoo.com','Barcelona','+9203809347','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1986','prezmek.tompa@hotmail.com','New York','+2294463232','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1985','tim.lebron@yahoo.com','Miskolc','+7617725878','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1990','matthew.obama@yahoo.com','New York','+1374109914','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1981','attila.lebron@gmail.com','Barcelona','+4501666288','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1989','miklós.ostafil@hotmail.com','New York','+9130742031','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1972','dániel.hamilton@hotmail.com','Budapest','+4687493999','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1980','pál.monoczki@yahoo.com','Barcelona','+4141127564','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1974','sándor.molnár@yahoo.com','Barcelona','+6120810996','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1974','sándor.ciacka@gmail.com','Barcelona','+1250623181','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1989','sándor.szodoray@yahoo.com','Miskolc','+142424620','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1970','andy.beöthy@gmail.com','Krakow','+2644593685','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1967','attila.obama@gmail.com','Budapest','+5346900745','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1991','john.hamilton@hotmail.com','Budapest','+203503597','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1980','tamás.lebron@yahoo.com','Miskolc','+2824099716','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1987','prezmek.tompa@hotmail.com','New York','+6832658830','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1970','mateusz.ostafil@gmail.com','Barcelona','+7828893694','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1970','attila.hamilton@gmail.com','Krakow','+1761382694','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1970','john.molnár@yahoo.com','Miskolc','+7841116545','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1971','tamás.obama@gmail.com','Krakow','+8441884705','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1968','mateusz.ciacka@gmail.com','New York','+145424633','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1966','tim.hamilton@hotmail.com','New York','+840655706','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1968','pál.hamilton@gmail.com','New York','+4153493306','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1973','andy.szodoray@hotmail.com','Barcelona','+1939276742','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1988','tamás.hamilton@hotmail.com','New York','+3940622657','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1978','andy.ostafil@yahoo.com','Krakow','+7723211623','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1971','giancarlo.beöthy@hotmail.com','Budapest','+6012228733','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1986','pál.szodoray@hotmail.com','Krakow','+9116205991','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1981','matthew.monoczki@yahoo.com','Miskolc','+346964822','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1968','miklós.lebron@hotmail.com','Budapest','+2862915207','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1981','matthew.beöthy@yahoo.com','Krakow','+1438705285','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1965','tamás.ciacka@hotmail.com','Barcelona','+3437012803','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1977','matthew.fisichella@yahoo.com','Krakow','+3688545828','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1968','attila.obama@hotmail.com','Budapest','+1197301284','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1976','dániel.hamilton@yahoo.com','New York','+3266578509','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1983','prezmek.ostafil@hotmail.com','Krakow','+1391220295','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1977','tamás.szodoray@hotmail.com','New York','+8689694272','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1980','sándor.salamon@gmail.com','Barcelona','+2166651178','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1975','pál.carrey@yahoo.com','Miskolc','+9434181465','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1972','tim.molnár@gmail.com','Budapest','+235253888','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1993','mateusz.ciacka@hotmail.com','Barcelona','+1424685635','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1969','sándor.lebron@gmail.com','Miskolc','+7567641999','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1988','prezmek.ostafil@gmail.com','Budapest','+1411294675','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1984','andy.obama@hotmail.com','Budapest','+9692836084','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1982','giancarlo.obama@yahoo.com','Miskolc','+6400820467','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1995','andy.ostafil@yahoo.com','Barcelona','+746982230','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1989','pál.beöthy@yahoo.com','New York','+3026422643','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1982','andy.lebron@hotmail.com','Miskolc','+8772772983','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1995','john.carrey@hotmail.com','Miskolc','+5601218068','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1976','prezmek.carrey@yahoo.com','Krakow','+9434586724','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1974','john.monoczki@yahoo.com','Barcelona','+4101475046','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1969','miklós.salamon@yahoo.com','New York','+8689312018','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1980','tamás.beöthy@gmail.com','Miskolc','+1997828795','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1993','miklós.beöthy@hotmail.com','Budapest','+5060700027','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1982','attila.szodoray@gmail.com','Budapest','+8239119919','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1974','attila.hamilton@hotmail.com','Krakow','+5741562394','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1989','andy.obama@gmail.com','Barcelona','+4830289931','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1977','tim.hamilton@hotmail.com','Krakow','+925894578','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1986','dániel.lebron@yahoo.com','Miskolc','+5046785439','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1987','pál.szodoray@hotmail.com','Barcelona','+3527449635','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1985','mateusz.hamilton@yahoo.com','Barcelona','+1305377378','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1981','mateusz.monoczki@yahoo.com','Miskolc','+4686123517','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1987','tim.molnár@hotmail.com','New York','+8739898033','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1981','tim.beöthy@gmail.com','Budapest','+3920905247','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1993','john.ostafil@hotmail.com','New York','+847068430','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1965','prezmek.salamon@hotmail.com','New York','+5551350111','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1994','tim.molnár@hotmail.com','Miskolc','+5283754355','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1973','giancarlo.salamon@gmail.com','Budapest','+305138093','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1990','andy.carrey@hotmail.com','Krakow','+5611309396','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1966','tim.ciacka@hotmail.com','Budapest','+9389220620','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1982','pál.fisichella@yahoo.com','Budapest','+4582602579','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1974','dániel.carrey@hotmail.com','Barcelona','+1027314126','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1980','matthew.szodoray@hotmail.com','New York','+2330723519','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1990','pál.salamon@hotmail.com','Barcelona','+3399801265','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1968','dániel.obama@gmail.com','Miskolc','+9791890716','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1988','mateusz.molnár@yahoo.com','Budapest','+9354912099','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1976','john.molnár@yahoo.com','Budapest','+1191410101','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1982','john.monoczki@yahoo.com','Krakow','+9926322025','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1990','dániel.ciacka@gmail.com','Barcelona','+853059979','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1982','andy.salamon@gmail.com','Barcelona','+8708643949','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1967','dániel.szodoray@hotmail.com','Miskolc','+3626782767','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1987','matthew.fisichella@hotmail.com','Miskolc','+6167723005','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1967','sándor.beöthy@yahoo.com','Krakow','+5527316541','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1977','attila.beöthy@hotmail.com','New York','+3987240630','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1979','matthew.ciacka@gmail.com','Miskolc','+6848141152','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1986','sándor.lebron@gmail.com','Krakow','+2389766668','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1975','dániel.salamon@hotmail.com','New York','+3751044868','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1967','mateusz.obama@hotmail.com','Budapest','+9453251620','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1978','tim.szodoray@yahoo.com','New York','+2374953238','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1974','andy.lebron@gmail.com','Miskolc','+2242808842','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1967','giancarlo.fisichella@yahoo.com','Miskolc','+5337829029','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1971','mateusz.molnár@gmail.com','New York','+7161513215','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1966','miklós.beöthy@yahoo.com','Barcelona','+4491084536','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1992','sándor.lebron@gmail.com','New York','+7798185604','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1965','tamás.obama@hotmail.com','Miskolc','+2032898485','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1988','dániel.ciacka@gmail.com','Budapest','+7336476483','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1974','john.obama@yahoo.com','Krakow','+7627243982','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1992','john.tompa@hotmail.com','New York','+1346082340','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1982','dániel.monoczki@yahoo.com','Krakow','+6263439473','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1977','andy.szodoray@hotmail.com','Krakow','+5363554931','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1969','miklós.fisichella@hotmail.com','Miskolc','+7032363828','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1995','dániel.lebron@gmail.com','Miskolc','+4113845722','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1982','prezmek.lebron@hotmail.com','Budapest','+8078600661','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1994','attila.tompa@yahoo.com','New York','+4709384025','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1982','dániel.lebron@gmail.com','New York','+1585569543','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1990','andy.fisichella@yahoo.com','Budapest','+873981036','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1992','prezmek.ciacka@hotmail.com','New York','+8936540915','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1990','miklós.szodoray@gmail.com','Barcelona','+5427512359','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1980','tamás.ostafil@hotmail.com','Budapest','+7138199130','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1977','prezmek.obama@yahoo.com','Krakow','+5337458680','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1988','pál.obama@hotmail.com','Budapest','+6100831852','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1969','mateusz.tompa@gmail.com','Miskolc','+6495620749','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1991','pál.molnár@gmail.com','Budapest','+2561690079','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1982','john.salamon@yahoo.com','Barcelona','+2342219824','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1995','pál.ostafil@yahoo.com','Barcelona','+1695709199','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1994','giancarlo.salamon@gmail.com','Krakow','+9866270624','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1985','prezmek.hamilton@hotmail.com','Miskolc','+869753862','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1986','giancarlo.ostafil@gmail.com','Krakow','+7371005207','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1980','john.ostafil@gmail.com','Miskolc','+6297471142','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1990','andy.tompa@gmail.com','Budapest','+7099073941','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1982','john.monoczki@yahoo.com','Krakow','+3707820905','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1982','andy.fisichella@gmail.com','Budapest','+7883228829','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1978','matthew.salamon@hotmail.com','Barcelona','+8845588931','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1991','miklós.hamilton@gmail.com','New York','+7209275254','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1965','attila.obama@hotmail.com','Miskolc','+1781901481','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1981','sándor.fisichella@hotmail.com','Barcelona','+6506142717','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1972','tim.szodoray@hotmail.com','New York','+9577877596','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1992','prezmek.fisichella@hotmail.com','Miskolc','+4439196141','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1976','attila.carrey@hotmail.com','Miskolc','+4955675220','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1980','sándor.obama@gmail.com','Krakow','+9656299834','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1994','miklós.carrey@gmail.com','Miskolc','+8183420948','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1966','dániel.monoczki@yahoo.com','Krakow','+1934889388','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1966','tamás.beöthy@hotmail.com','Budapest','+7254953188','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1995','andy.molnár@hotmail.com','Krakow','+5060594427','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1980','tim.ciacka@hotmail.com','New York','+2359976968','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1995','andy.monoczki@yahoo.com','Miskolc','+7462309752','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1984','andy.ostafil@yahoo.com','New York','+2051761335','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1984','dániel.monoczki@gmail.com','Barcelona','+6019286792','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1973','mateusz.fisichella@gmail.com','Miskolc','+254835619','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1974','matthew.tompa@yahoo.com','Miskolc','+4553111415','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1966','prezmek.monoczki@gmail.com','Miskolc','+5403419951','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1968','tamás.obama@gmail.com','Budapest','+5190564888','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1988','john.fisichella@gmail.com','Barcelona','+1521784015','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1969','prezmek.tompa@gmail.com','Barcelona','+9990903126','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1976','attila.molnár@gmail.com','Krakow','+7903449071','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1978','tim.tompa@hotmail.com','New York','+3760574266','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1995','matthew.fisichella@hotmail.com','Barcelona','+9743447561','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1991','prezmek.szodoray@gmail.com','Budapest','+2727286612','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1977','dániel.carrey@hotmail.com','Budapest','+5300840021','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1983','sándor.salamon@gmail.com','Budapest','+765485059','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1984','andy.lebron@yahoo.com','Krakow','+137234514','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1984','pál.molnár@hotmail.com','Barcelona','+5471995571','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1985','attila.hamilton@yahoo.com','Barcelona','+8658676280','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1979','andy.ciacka@yahoo.com','New York','+748566746','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1992','sándor.szodoray@yahoo.com','Miskolc','+526213207','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1989','matthew.molnár@gmail.com','New York','+7500967485','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1973','attila.lebron@yahoo.com','Barcelona','+8195531381','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1980','pál.ciacka@hotmail.com','New York','+6254606384','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1969','matthew.monoczki@yahoo.com','New York','+7274954467','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1974','john.ciacka@hotmail.com','Barcelona','+8798380021','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1978','andy.carrey@gmail.com','Budapest','+791376402','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1983','miklós.tompa@gmail.com','Krakow','+3972643399','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1975','matthew.salamon@yahoo.com','New York','+7148016223','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1969','attila.salamon@gmail.com','Barcelona','+418395515','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1992','john.fisichella@gmail.com','Barcelona','+5194601784','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1966','sándor.tompa@gmail.com','Miskolc','+7762717370','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1968','dániel.hamilton@yahoo.com','Barcelona','+4620600101','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1988','miklós.obama@gmail.com','Krakow','+2888111542','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1965','sándor.lebron@yahoo.com','Miskolc','+6268993881','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1967','miklós.fisichella@gmail.com','New York','+2486089190','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1970','sándor.carrey@hotmail.com','Miskolc','+4531366257','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1982','sándor.szodoray@yahoo.com','New York','+1474833200','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1990','miklós.ciacka@gmail.com','Budapest','+3392147818','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1987','giancarlo.hamilton@yahoo.com','Budapest','+779015911','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1987','prezmek.ostafil@yahoo.com','Krakow','+2465489714','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1981','mateusz.salamon@hotmail.com','Barcelona','+7326478456','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1982','matthew.monoczki@yahoo.com','Krakow','+6440421117','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1984','sándor.obama@gmail.com','New York','+670843467','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1982','attila.obama@gmail.com','Miskolc','+8797145990','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1965','giancarlo.szodoray@hotmail.com','Krakow','+6285547371','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1993','mateusz.carrey@gmail.com','New York','+192577378','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1966','attila.obama@gmail.com','Budapest','+3696841454','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1984','tim.lebron@hotmail.com','Budapest','+5658476402','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1995','tamás.hamilton@yahoo.com','Krakow','+5008063629','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1966','matthew.hamilton@hotmail.com','Miskolc','+1998153903','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1995','mateusz.molnár@gmail.com','New York','+7239120953','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1988','sándor.ciacka@yahoo.com','Barcelona','+1405338772','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1966','prezmek.ciacka@yahoo.com','Budapest','+5789185730','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1985','john.hamilton@hotmail.com','Budapest','+5541828638','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1973','giancarlo.fisichella@gmail.com','Barcelona','+3482531450','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1975','prezmek.molnár@yahoo.com','Budapest','+4550673209','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1978','pál.lebron@gmail.com','Miskolc','+2720300849','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1966','prezmek.szodoray@yahoo.com','Krakow','+3043816932','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1972','prezmek.carrey@gmail.com','Krakow','+8440860946','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1988','dániel.monoczki@gmail.com','Miskolc','+2880697735','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1995','john.lebron@hotmail.com','Krakow','+8781548190','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1989','attila.molnár@gmail.com','Miskolc','+7271034885','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1989','tim.salamon@yahoo.com','Budapest','+1512199129','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1982','miklós.obama@hotmail.com','Krakow','+6262831175','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1974','tamás.szodoray@hotmail.com','New York','+7548661983','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1966','tamás.tompa@yahoo.com','New York','+6076797904','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1991','john.lebron@hotmail.com','Budapest','+4949120083','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1977','miklós.hamilton@yahoo.com','Miskolc','+2498311927','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1984','attila.molnár@yahoo.com','New York','+6344057946','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1978','miklós.szodoray@yahoo.com','Krakow','+6392238370','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1970','miklós.carrey@hotmail.com','Budapest','+2566227968','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1982','dániel.beöthy@yahoo.com','Barcelona','+745438382','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1969','sándor.beöthy@hotmail.com','Barcelona','+7959228121','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1972','dániel.obama@gmail.com','Krakow','+3675729247','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1965','john.salamon@yahoo.com','Budapest','+2697645940','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1975','miklós.beöthy@gmail.com','Miskolc','+5544046701','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1982','andy.lebron@yahoo.com','Budapest','+3018984427','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1982','mateusz.fisichella@yahoo.com','Miskolc','+2615009670','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1986','sándor.hamilton@gmail.com','Barcelona','+2477795074','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1971','john.tompa@gmail.com','Krakow','+6298951301','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1968','tamás.molnár@hotmail.com','New York','+980260813','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1988','giancarlo.molnár@yahoo.com','Budapest','+7623168709','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1986','pál.carrey@hotmail.com','Krakow','+8181201225','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1993','attila.tompa@gmail.com','Krakow','+5906192117','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1988','dániel.molnár@yahoo.com','Barcelona','+3712008283','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1973','tamás.carrey@gmail.com','Miskolc','+4144793335','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1990','pál.ostafil@gmail.com','New York','+5103130771','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1985','matthew.ostafil@hotmail.com','Krakow','+2039136818','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1989','mateusz.fisichella@yahoo.com','Budapest','+7447354240','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1979','dániel.tompa@yahoo.com','Krakow','+9602050983','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1968','tim.obama@yahoo.com','New York','+4351950384','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1969','pál.ciacka@yahoo.com','Krakow','+6017179253','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1988','tamás.lebron@gmail.com','Barcelona','+2169648745','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1988','attila.beöthy@hotmail.com','Budapest','+572738343','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1974','mateusz.beöthy@yahoo.com','New York','+232802335','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1984','miklós.hamilton@hotmail.com','Krakow','+3377111625','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1984','attila.szodoray@hotmail.com','Barcelona','+1661440089','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1985','andy.carrey@yahoo.com','Budapest','+6298049442','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1980','tamás.fisichella@yahoo.com','Barcelona','+6594655901','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1995','matthew.tompa@yahoo.com','Budapest','+8867191273','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1975','john.fisichella@gmail.com','Barcelona','+4853983557','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1981','attila.fisichella@yahoo.com','Barcelona','+8658461627','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1982','mateusz.monoczki@yahoo.com','Budapest','+6104669688','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1988','andy.lebron@yahoo.com','Krakow','+1066520456','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1987','pál.szodoray@yahoo.com','Krakow','+9540496908','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1988','john.tompa@yahoo.com','Miskolc','+7337270181','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1983','dániel.hamilton@yahoo.com','Budapest','+3327111429','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1966','miklós.ostafil@yahoo.com','Budapest','+3297581706','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1975','dániel.ostafil@gmail.com','Barcelona','+2520031768','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1974','matthew.obama@gmail.com','Budapest','+2161683787','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1987','giancarlo.tompa@yahoo.com','Barcelona','+3468095889','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1975','john.molnár@yahoo.com','Barcelona','+149178826','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1971','matthew.hamilton@gmail.com','Miskolc','+8260865839','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1968','pál.ciacka@hotmail.com','New York','+3331820610','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1965','miklós.carrey@hotmail.com','Barcelona','+4792992556','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1982','prezmek.beöthy@yahoo.com','Miskolc','+5643181229','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1990','dániel.ciacka@hotmail.com','Barcelona','+2007234446','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1981','mateusz.hamilton@hotmail.com','Miskolc','+4201067731','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1968','sándor.beöthy@hotmail.com','Miskolc','+8235631408','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1991','matthew.beöthy@yahoo.com','Barcelona','+2079597385','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1974','mateusz.carrey@yahoo.com','Budapest','+8116114138','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1971','matthew.ciacka@gmail.com','Barcelona','+3907379987','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1967','dániel.lebron@gmail.com','Krakow','+9960678261','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1969','giancarlo.ciacka@hotmail.com','Krakow','+7861730884','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1976','miklós.tompa@hotmail.com','Barcelona','+8047622147','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1969','matthew.lebron@hotmail.com','Miskolc','+3052043874','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1989','miklós.salamon@yahoo.com','Krakow','+7260970559','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1971','andy.szodoray@gmail.com','New York','+5122909286','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1973','tim.ostafil@yahoo.com','New York','+420513658','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1967','attila.tompa@hotmail.com','New York','+7387967372','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1978','attila.hamilton@gmail.com','Budapest','+801650250','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1991','sándor.salamon@gmail.com','Krakow','+7590161186','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1984','tim.carrey@yahoo.com','Barcelona','+9981758460','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1983','pál.monoczki@gmail.com','Miskolc','+9443644774','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1969','tamás.lebron@hotmail.com','Krakow','+4253586981','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1965','giancarlo.carrey@gmail.com','New York','+2420103234','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1985','tim.obama@hotmail.com','New York','+1821113661','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1973','pál.salamon@yahoo.com','New York','+847412650','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1985','tim.ciacka@yahoo.com','Barcelona','+3633920058','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1985','matthew.obama@gmail.com','Budapest','+4674992637','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1975','miklós.fisichella@hotmail.com','Krakow','+6446542478','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1967','pál.lebron@hotmail.com','New York','+2708710301','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1989','tamás.hamilton@yahoo.com','Krakow','+2512044094','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1967','giancarlo.monoczki@hotmail.com','Barcelona','+2212056879','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1968','attila.lebron@gmail.com','Krakow','+9157735224','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1980','matthew.obama@gmail.com','Krakow','+2688655222','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1979','mateusz.carrey@gmail.com','New York','+9454208758','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1991','sándor.fisichella@gmail.com','Miskolc','+5541525515','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1975','mateusz.tompa@gmail.com','New York','+3070427720','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1985','giancarlo.fisichella@yahoo.com','Budapest','+2505036463','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1979','tamás.lebron@hotmail.com','Miskolc','+5164003895','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1983','mateusz.monoczki@hotmail.com','Budapest','+928082136','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1980','sándor.hamilton@gmail.com','Miskolc','+8810613225','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1995','pál.ostafil@hotmail.com','Krakow','+5129047177','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1967','prezmek.molnár@hotmail.com','Krakow','+9835159173','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1982','matthew.salamon@gmail.com','New York','+2872198848','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1965','tim.obama@yahoo.com','Barcelona','+9281966599','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1982','miklós.lebron@gmail.com','Barcelona','+1899209867','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1993','pál.lebron@gmail.com','Budapest','+2456513270','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1972','andy.lebron@hotmail.com','Krakow','+789410919','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1992','dániel.beöthy@yahoo.com','Miskolc','+9152521043','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1978','tim.tompa@yahoo.com','New York','+5517430600','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1981','attila.salamon@gmail.com','Krakow','+5235504836','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1968','andy.salamon@yahoo.com','New York','+9138801664','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1968','prezmek.carrey@gmail.com','Miskolc','+4914164816','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1975','tamás.carrey@hotmail.com','Budapest','+5873088983','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1981','tamás.szodoray@yahoo.com','Budapest','+2550513062','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1975','john.lebron@gmail.com','Miskolc','+2905848577','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1974','tim.monoczki@yahoo.com','Krakow','+1475655301','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1975','pál.tompa@gmail.com','New York','+3736906050','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1985','prezmek.fisichella@gmail.com','Krakow','+4010907197','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1989','sándor.ciacka@gmail.com','New York','+2830586168','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1967','tamás.salamon@hotmail.com','Barcelona','+344892042','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1988','miklós.szodoray@hotmail.com','Krakow','+9143353598','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1989','prezmek.fisichella@hotmail.com','New York','+4536421718','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1965','tim.ciacka@gmail.com','New York','+3802497752','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1993','prezmek.ciacka@hotmail.com','Miskolc','+6674620247','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1972','dániel.carrey@yahoo.com','Miskolc','+3121103631','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1976','prezmek.beöthy@gmail.com','Barcelona','+9685812506','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1985','mateusz.carrey@yahoo.com','Budapest','+2580166832','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1991','tim.hamilton@gmail.com','Miskolc','+4471404433','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1976','mateusz.fisichella@hotmail.com','Miskolc','+8486899579','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1976','prezmek.fisichella@hotmail.com','Budapest','+1795233071','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1968','mateusz.fisichella@hotmail.com','Miskolc','+5516691592','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1967','dániel.carrey@hotmail.com','Miskolc','+3632629033','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1971','andy.molnár@hotmail.com','Budapest','+5623633681','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1979','dániel.lebron@gmail.com','Budapest','+2600842498','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1989','andy.tompa@hotmail.com','Krakow','+3677345127','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1967','dániel.lebron@hotmail.com','Krakow','+9932077176','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1972','matthew.ciacka@hotmail.com','Budapest','+3118905845','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1979','prezmek.ciacka@hotmail.com','New York','+4307958838','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1986','mateusz.obama@yahoo.com','Krakow','+3595630837','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1968','attila.molnár@hotmail.com','New York','+1202210715','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1983','tim.molnár@yahoo.com','Krakow','+4626426842','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1985','tim.obama@gmail.com','New York','+714840547','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1985','sándor.monoczki@gmail.com','Krakow','+7410902741','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1970','pál.ostafil@gmail.com','Budapest','+2026565448','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1966','mateusz.monoczki@yahoo.com','New York','+2911903535','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1989','attila.monoczki@gmail.com','New York','+4787829838','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1990','prezmek.salamon@gmail.com','Barcelona','+5706248399','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1980','prezmek.obama@gmail.com','Budapest','+5446989211','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1978','sándor.obama@hotmail.com','Barcelona','+1030794800','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1977','dániel.tompa@hotmail.com','Barcelona','+2530944841','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1976','giancarlo.beöthy@yahoo.com','Krakow','+1737395197','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1970','andy.fisichella@hotmail.com','Budapest','+5188691056','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1983','tim.ostafil@gmail.com','Budapest','+8873851197','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1970','mateusz.hamilton@hotmail.com','Miskolc','+3268968720','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1993','john.obama@hotmail.com','Krakow','+3378412879','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1972','attila.obama@hotmail.com','Budapest','+8399820456','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1965','mateusz.beöthy@hotmail.com','Budapest','+9744483225','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1985','tim.hamilton@hotmail.com','Miskolc','+5454043052','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1981','tamás.hamilton@yahoo.com','Krakow','+4897143672','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1966','tamás.salamon@yahoo.com','Budapest','+7295984144','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1983','pál.obama@gmail.com','Miskolc','+7649078843','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1979','sándor.molnár@yahoo.com','Budapest','+6456421724','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1985','pál.molnár@hotmail.com','Miskolc','+2735688319','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1977','tim.hamilton@gmail.com','Budapest','+4308044218','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1979','prezmek.szodoray@yahoo.com','Barcelona','+2790951248','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1974','matthew.fisichella@hotmail.com','Budapest','+3861758687','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1987','dániel.hamilton@yahoo.com','Budapest','+2916216052','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1992','tim.obama@hotmail.com','Miskolc','+7488053762','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1981','miklós.beöthy@hotmail.com','Krakow','+7848152679','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1987','sándor.lebron@gmail.com','Barcelona','+5322485895','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1981','mateusz.beöthy@gmail.com','Barcelona','+356424689','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1992','andy.obama@yahoo.com','Miskolc','+8032097385','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1982','john.tompa@gmail.com','New York','+9949844169','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1987','pál.lebron@hotmail.com','Barcelona','+4552381616','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1988','tim.ciacka@yahoo.com','Budapest','+4698582529','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1968','john.carrey@hotmail.com','Budapest','+2266127084','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1984','sándor.tompa@hotmail.com','New York','+8212815957','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1973','miklós.szodoray@hotmail.com','Krakow','+6465157018','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1972','dániel.szodoray@hotmail.com','New York','+9159153297','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1983','tamás.tompa@gmail.com','Miskolc','+9690392004','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1989','tamás.hamilton@gmail.com','Krakow','+878869361','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1984','attila.obama@yahoo.com','Barcelona','+2533810936','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1985','tim.beöthy@gmail.com','New York','+1690293746','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1969','attila.carrey@hotmail.com','Miskolc','+8772549372','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1990','attila.lebron@yahoo.com','Miskolc','+1239770021','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1987','dániel.obama@gmail.com','Miskolc','+7932507580','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1965','giancarlo.monoczki@hotmail.com','Miskolc','+8393107294','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1982','miklós.szodoray@gmail.com','Budapest','+4012506913','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1968','tamás.monoczki@yahoo.com','New York','+9701203594','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1995','mateusz.fisichella@hotmail.com','Barcelona','+1436711569','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1968','attila.molnár@yahoo.com','Krakow','+5858294992','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1991','prezmek.obama@hotmail.com','Krakow','+2058600594','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1990','pál.molnár@yahoo.com','Krakow','+2957253863','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1968','prezmek.tompa@yahoo.com','New York','+5699896794','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1986','tim.monoczki@hotmail.com','Barcelona','+5885467531','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1978','matthew.ciacka@yahoo.com','Barcelona','+6641569444','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1990','prezmek.monoczki@hotmail.com','Miskolc','+5247725067','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1983','dániel.salamon@yahoo.com','New York','+1033578618','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1989','mateusz.ciacka@hotmail.com','New York','+1139745409','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1973','sándor.salamon@hotmail.com','Budapest','+5931272870','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1987','andy.lebron@yahoo.com','Miskolc','+1704641327','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1981','tim.beöthy@yahoo.com','Barcelona','+5585152389','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1973','john.beöthy@gmail.com','Krakow','+4710109438','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1965','prezmek.molnár@hotmail.com','Miskolc','+6460943401','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1994','sándor.lebron@yahoo.com','Barcelona','+9999468303','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1990','dániel.fisichella@hotmail.com','New York','+4413841923','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1986','andy.ostafil@gmail.com','Budapest','+5491218292','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1976','attila.szodoray@hotmail.com','Miskolc','+4367732857','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1983','andy.obama@gmail.com','Budapest','+3651756129','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1971','andy.carrey@gmail.com','New York','+6729088333','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1992','giancarlo.hamilton@hotmail.com','New York','+3529519412','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1967','matthew.lebron@gmail.com','Barcelona','+2351322432','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1989','matthew.fisichella@hotmail.com','Budapest','+3688474456','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1981','attila.ostafil@gmail.com','Budapest','+1314297896','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1984','miklós.salamon@yahoo.com','Krakow','+9347106736','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1967','dániel.molnár@yahoo.com','Krakow','+8982528804','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1995','prezmek.tompa@yahoo.com','Krakow','+7036342075','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1965','giancarlo.salamon@yahoo.com','New York','+5079524040','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1993','giancarlo.monoczki@hotmail.com','Barcelona','+616213710','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1990','giancarlo.obama@hotmail.com','Krakow','+8491798495','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1985','miklós.hamilton@gmail.com','Budapest','+3697005066','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1975','andy.monoczki@gmail.com','New York','+8197652663','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1970','andy.lebron@yahoo.com','New York','+2838686414','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1990','prezmek.hamilton@gmail.com','Barcelona','+6988270810','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1986','andy.ostafil@gmail.com','Barcelona','+9871217879','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1980','andy.hamilton@yahoo.com','Budapest','+2993306759','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1965','mateusz.hamilton@yahoo.com','Barcelona','+109021277','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1972','matthew.monoczki@yahoo.com','New York','+8994273419','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1970','john.carrey@gmail.com','Miskolc','+9956599470','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1984','sándor.salamon@gmail.com','Barcelona','+1702865625','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1974','tim.obama@gmail.com','Budapest','+3652115882','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1974','sándor.fisichella@yahoo.com','Barcelona','+6322320539','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1966','giancarlo.tompa@hotmail.com','Budapest','+5434148536','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1992','giancarlo.beöthy@gmail.com','Miskolc','+4696484009','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1980','tamás.tompa@yahoo.com','New York','+4378320446','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1984','matthew.ciacka@yahoo.com','Barcelona','+3483119606','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1981','tamás.ciacka@gmail.com','Krakow','+9407884640','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1995','sándor.monoczki@hotmail.com','Krakow','+28701534','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1968','dániel.ostafil@hotmail.com','Barcelona','+5459524047','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1992','giancarlo.obama@hotmail.com','New York','+9775612103','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1969','tamás.hamilton@yahoo.com','Krakow','+4346877886','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1974','dániel.monoczki@yahoo.com','Barcelona','+2820997552','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1982','pál.fisichella@yahoo.com','Barcelona','+6610511231','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1972','sándor.hamilton@hotmail.com','Budapest','+2112954599','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1983','dániel.ostafil@gmail.com','Miskolc','+3478058339','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1975','attila.hamilton@yahoo.com','Krakow','+9940059807','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1994','sándor.salamon@hotmail.com','Miskolc','+2720939855','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1980','andy.hamilton@hotmail.com','Barcelona','+507161242','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1990','mateusz.tompa@gmail.com','Barcelona','+4262930419','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1967','mateusz.tompa@hotmail.com','Barcelona','+6675911349','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1983','andy.fisichella@gmail.com','Krakow','+8698591031','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1967','andy.obama@yahoo.com','Miskolc','+321920436','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1993','sándor.obama@yahoo.com','Budapest','+5015758246','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1967','mateusz.carrey@gmail.com','Krakow','+2181151749','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1965','mateusz.obama@gmail.com','New York','+588850146','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1991','dániel.salamon@gmail.com','Miskolc','+6000407007','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1976','andy.hamilton@yahoo.com','Budapest','+9880245223','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1978','giancarlo.carrey@gmail.com','Krakow','+2454673419','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1993','john.ciacka@yahoo.com','Budapest','+1883639332','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1991','mateusz.molnár@hotmail.com','Miskolc','+7944290541','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1976','matthew.lebron@hotmail.com','New York','+5002101675','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1993','sándor.fisichella@yahoo.com','Budapest','+3582607002','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1990','dániel.szodoray@hotmail.com','Budapest','+4914251923','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1981','dániel.ostafil@hotmail.com','Barcelona','+4137439317','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1982','miklós.monoczki@yahoo.com','Miskolc','+3913662255','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1970','dániel.ciacka@yahoo.com','Budapest','+5380410360','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1984','matthew.obama@gmail.com','Krakow','+7493351587','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1994','john.salamon@gmail.com','Krakow','+7358312647','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1979','sándor.hamilton@hotmail.com','New York','+3562086683','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1994','tim.hamilton@hotmail.com','Krakow','+5622219993','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1966','andy.tompa@gmail.com','Krakow','+1034193764','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1976','john.lebron@gmail.com','Krakow','+9317840725','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1966','mateusz.ostafil@gmail.com','Miskolc','+8649339961','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1980','pál.carrey@yahoo.com','Budapest','+5645805097','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1991','matthew.carrey@gmail.com','Barcelona','+7858218926','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1985','giancarlo.fisichella@yahoo.com','Barcelona','+6170727897','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1967','miklós.hamilton@yahoo.com','Barcelona','+8891437725','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1968','andy.ostafil@yahoo.com','Krakow','+4952893610','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1978','matthew.tompa@gmail.com','New York','+8023233935','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1972','andy.salamon@hotmail.com','Budapest','+1510006486','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1966','dániel.monoczki@hotmail.com','Krakow','+7472154443','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1979','tim.ostafil@yahoo.com','Krakow','+921390695','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1965','prezmek.salamon@yahoo.com','Budapest','+4714837016','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1979','sándor.ostafil@yahoo.com','Budapest','+7617514989','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1969','miklós.ostafil@gmail.com','Barcelona','+1470166913','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1991','giancarlo.salamon@hotmail.com','Krakow','+9386516419','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1974','prezmek.beöthy@gmail.com','Krakow','+776547438','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1995','pál.molnár@hotmail.com','Barcelona','+2442174657','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1973','prezmek.ostafil@yahoo.com','New York','+6150048700','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1965','tim.hamilton@hotmail.com','Budapest','+267723250','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1970','john.fisichella@hotmail.com','Budapest','+883883291','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1992','matthew.salamon@hotmail.com','Krakow','+8799617843','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1980','dániel.beöthy@hotmail.com','Budapest','+7981703802','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1975','miklós.lebron@yahoo.com','Miskolc','+5923227341','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1976','attila.obama@gmail.com','Budapest','+9353375866','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1967','dániel.hamilton@yahoo.com','Budapest','+96904704','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1986','john.monoczki@yahoo.com','Krakow','+787843612','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1986','pál.ciacka@gmail.com','New York','+2653347674','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1987','john.beöthy@yahoo.com','Miskolc','+1312340979','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1967','sándor.hamilton@hotmail.com','Budapest','+4367371285','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1990','giancarlo.obama@hotmail.com','Krakow','+7391772062','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1983','giancarlo.salamon@hotmail.com','Miskolc','+232745427','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1972','sándor.szodoray@hotmail.com','Miskolc','+2597191912','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1993','prezmek.carrey@hotmail.com','Krakow','+1757610977','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1980','dániel.beöthy@gmail.com','Krakow','+3158400410','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1968','matthew.obama@yahoo.com','Barcelona','+9884400392','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1976','dániel.carrey@yahoo.com','Krakow','+6013910917','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1995','attila.hamilton@yahoo.com','Miskolc','+3854118500','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1988','pál.monoczki@yahoo.com','Budapest','+6022075756','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1984','mateusz.carrey@yahoo.com','Miskolc','+5504202449','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1973','attila.fisichella@gmail.com','Krakow','+450018436','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1975','pál.carrey@gmail.com','Miskolc','+4965621464','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1985','john.salamon@hotmail.com','Budapest','+3386646027','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1991','sándor.lebron@hotmail.com','Miskolc','+4108614669','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1994','sándor.molnár@gmail.com','Miskolc','+2687156882','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1969','miklós.ciacka@gmail.com','Miskolc','+6972441794','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1977','mateusz.ciacka@gmail.com','Krakow','+8606726039','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1973','miklós.molnár@hotmail.com','New York','+7450031016','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1988','tim.obama@gmail.com','Miskolc','+1509415656','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1980','john.szodoray@gmail.com','Budapest','+6139540684','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1993','giancarlo.lebron@yahoo.com','Miskolc','+6296430497','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1968','matthew.salamon@gmail.com','Barcelona','+6723230555','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1992','miklós.ciacka@gmail.com','Krakow','+9280395743','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1971','mateusz.obama@yahoo.com','Barcelona','+7596934772','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1967','tamás.carrey@yahoo.com','Krakow','+9967542181','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1975','tim.lebron@hotmail.com','Barcelona','+6163600377','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1978','andy.fisichella@gmail.com','Barcelona','+6393411899','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1975','matthew.szodoray@gmail.com','Barcelona','+3171547296','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1983','john.lebron@yahoo.com','Budapest','+969319113','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1982','matthew.salamon@gmail.com','Miskolc','+8605824825','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1986','pál.lebron@hotmail.com','Miskolc','+4241610060','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1965','sándor.tompa@hotmail.com','Krakow','+7670701461','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1994','tamás.obama@gmail.com','Miskolc','+2365579916','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1979','miklós.fisichella@yahoo.com','Budapest','+3418713178','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1969','matthew.fisichella@gmail.com','Krakow','+8361024650','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1980','mateusz.salamon@hotmail.com','New York','+3202628901','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1992','tim.ostafil@gmail.com','Miskolc','+9008093420','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1973','prezmek.lebron@gmail.com','Miskolc','+4196238828','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1991','sándor.beöthy@hotmail.com','New York','+1406845194','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1971','sándor.salamon@yahoo.com','New York','+9530025541','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1975','dániel.salamon@yahoo.com','Budapest','+2282381388','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1987','sándor.fisichella@yahoo.com','Barcelona','+2037505786','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1975','miklós.szodoray@hotmail.com','Barcelona','+5610506642','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1978','attila.carrey@yahoo.com','New York','+2903573646','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1975','john.beöthy@yahoo.com','Miskolc','+9849143908','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1969','tamás.tompa@yahoo.com','Budapest','+6667602380','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1990','tamás.obama@hotmail.com','Barcelona','+3733245443','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1980','tim.ostafil@yahoo.com','Miskolc','+2371282226','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1995','sándor.szodoray@gmail.com','Krakow','+8770949514','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1982','andy.molnár@hotmail.com','Miskolc','+1176812744','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1968','prezmek.hamilton@gmail.com','Miskolc','+3575100236','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1972','matthew.molnár@hotmail.com','Krakow','+189650332','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1987','tim.salamon@hotmail.com','Budapest','+9756915485','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1973','john.monoczki@gmail.com','Krakow','+7162140900','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1973','tamás.szodoray@yahoo.com','Budapest','+3813941','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1976','dániel.monoczki@hotmail.com','New York','+4864046771','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1989','mateusz.beöthy@hotmail.com','Miskolc','+406148823','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1981','giancarlo.szodoray@gmail.com','Krakow','+340766416','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1972','giancarlo.lebron@yahoo.com','Budapest','+9799589996','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1973','mateusz.monoczki@gmail.com','Miskolc','+6546277209','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1968','mateusz.beöthy@gmail.com','New York','+3107893035','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1981','matthew.tompa@hotmail.com','Krakow','+6651431519','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1973','andy.tompa@gmail.com','New York','+9566262723','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1981','matthew.carrey@yahoo.com','Miskolc','+306072398','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1973','giancarlo.monoczki@yahoo.com','New York','+8866128828','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1990','sándor.hamilton@yahoo.com','Budapest','+6578522242','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1975','sándor.molnár@yahoo.com','Miskolc','+6204535729','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1995','tamás.tompa@yahoo.com','Barcelona','+2049450319','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1978','sándor.ciacka@hotmail.com','New York','+4672176095','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1966','tamás.carrey@hotmail.com','New York','+5603667403','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1981','andy.hamilton@hotmail.com','Budapest','+4286179964','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1972','john.beöthy@yahoo.com','Barcelona','+813686119','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1992','tim.molnár@yahoo.com','Budapest','+3671385614','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1966','prezmek.molnár@yahoo.com','Miskolc','+9857359842','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1983','andy.ciacka@gmail.com','New York','+4656674226','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1980','tim.ciacka@yahoo.com','Budapest','+2131329437','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1985','attila.lebron@yahoo.com','Krakow','+1285891829','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1973','miklós.tompa@yahoo.com','Budapest','+6440577527','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1987','mateusz.tompa@hotmail.com','Barcelona','+5088340119','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1975','matthew.beöthy@gmail.com','Barcelona','+2038627678','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1987','pál.carrey@yahoo.com','Krakow','+8056641337','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1984','miklós.tompa@gmail.com','Barcelona','+5838964265','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1990','john.obama@hotmail.com','Barcelona','+4181582662','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1982','pál.molnár@gmail.com','Krakow','+879342078','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1972','attila.obama@gmail.com','New York','+1126980787','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1967','giancarlo.beöthy@hotmail.com','Krakow','+2458076554','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1976','andy.ostafil@gmail.com','New York','+6033178590','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1979','sándor.szodoray@yahoo.com','Krakow','+6983027297','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1983','john.ostafil@gmail.com','Krakow','+2023990192','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1993','dániel.szodoray@yahoo.com','New York','+5586726282','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1992','attila.hamilton@hotmail.com','Budapest','+6361355745','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1993','andy.monoczki@yahoo.com','Budapest','+5629698734','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1992','attila.molnár@yahoo.com','Krakow','+778744297','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1989','attila.szodoray@gmail.com','New York','+3686853622','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1986','matthew.fisichella@hotmail.com','Krakow','+1083989470','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1971','pál.ostafil@gmail.com','Barcelona','+5406607743','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1981','mateusz.fisichella@gmail.com','Budapest','+4400648398','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1990','miklós.molnár@hotmail.com','Krakow','+2838413018','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1983','pál.beöthy@gmail.com','Budapest','+6196039306','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1967','pál.obama@yahoo.com','New York','+9984957599','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1973','prezmek.tompa@gmail.com','Krakow','+9660280565','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1969','mateusz.molnár@gmail.com','Budapest','+6016267680','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1984','miklós.molnár@yahoo.com','Budapest','+9990335047','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1993','pál.molnár@yahoo.com','New York','+8152292528','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1979','miklós.molnár@gmail.com','Miskolc','+614996119','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1994','andy.lebron@hotmail.com','Krakow','+8043342944','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1966','andy.hamilton@yahoo.com','Barcelona','+1063366526','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1979','sándor.salamon@gmail.com','Miskolc','+71257751','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1979','giancarlo.obama@gmail.com','New York','+6967931886','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1969','pál.lebron@hotmail.com','New York','+8862636889','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1988','dániel.molnár@hotmail.com','Miskolc','+4509142296','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1993','dániel.obama@gmail.com','Krakow','+4967514689','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1995','miklós.hamilton@yahoo.com','Budapest','+4439929180','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1972','tamás.molnár@hotmail.com','Budapest','+2231579211','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1994','matthew.carrey@gmail.com','Krakow','+4004774152','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1970','mateusz.ostafil@yahoo.com','Barcelona','+8940746675','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1985','tamás.monoczki@hotmail.com','Krakow','+7482961917','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1975','mateusz.beöthy@yahoo.com','Krakow','+6400243097','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1967','tamás.salamon@hotmail.com','Budapest','+3583880520','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1965','prezmek.fisichella@hotmail.com','Budapest','+7149160777','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1971','prezmek.obama@yahoo.com','Barcelona','+5033354435','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1975','tim.monoczki@gmail.com','Budapest','+1193895015','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1992','pál.szodoray@hotmail.com','Barcelona','+4147450283','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1979','sándor.obama@hotmail.com','Budapest','+4481643622','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1966','giancarlo.obama@gmail.com','Miskolc','+3867620676','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1986','john.lebron@yahoo.com','Krakow','+3156351649','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1991','tamás.hamilton@yahoo.com','New York','+9878183837','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1981','tim.lebron@yahoo.com','New York','+9456268599','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1978','john.hamilton@hotmail.com','Barcelona','+9598816426','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1987','pál.beöthy@yahoo.com','Barcelona','+6178542597','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1968','prezmek.szodoray@hotmail.com','Barcelona','+5992599177','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1978','miklós.beöthy@hotmail.com','New York','+7258387757','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1970','dániel.molnár@yahoo.com','Barcelona','+9786702830','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1989','sándor.ciacka@yahoo.com','Miskolc','+4007540134','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1978','tim.tompa@yahoo.com','Barcelona','+2783896070','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1968','dániel.obama@hotmail.com','Budapest','+9998119763','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1991','sándor.lebron@yahoo.com','New York','+544606225','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1972','andy.hamilton@hotmail.com','Miskolc','+7353959386','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1983','matthew.beöthy@yahoo.com','Miskolc','+998894074','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1975','giancarlo.beöthy@yahoo.com','Krakow','+9723986211','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1971','dániel.hamilton@hotmail.com','Budapest','+69655605','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1991','miklós.salamon@gmail.com','Budapest','+3670213940','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1995','giancarlo.lebron@gmail.com','Miskolc','+4131024690','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1966','mateusz.tompa@gmail.com','Miskolc','+2505728621','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1993','mateusz.fisichella@hotmail.com','New York','+5536039221','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1984','miklós.salamon@hotmail.com','New York','+1720715578','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1984','mateusz.ciacka@yahoo.com','New York','+7065492666','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1979','mateusz.monoczki@hotmail.com','New York','+4344290771','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1993','dániel.monoczki@gmail.com','Krakow','+5310136701','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1973','miklós.lebron@hotmail.com','Budapest','+3545671780','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1973','matthew.monoczki@gmail.com','Krakow','+4214271929','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1991','mateusz.obama@hotmail.com','Krakow','+7594352759','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1986','attila.molnár@hotmail.com','Budapest','+97405501','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1977','john.fisichella@hotmail.com','Budapest','+4094678469','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1985','sándor.szodoray@hotmail.com','New York','+6984262105','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1982','prezmek.carrey@gmail.com','Krakow','+7376557027','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1995','pál.ostafil@gmail.com','Miskolc','+4065272986','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1991','giancarlo.tompa@hotmail.com','New York','+8312118069','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1983','tamás.hamilton@yahoo.com','Budapest','+6390307234','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1973','matthew.beöthy@gmail.com','New York','+3311116027','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1976','tim.beöthy@hotmail.com','Krakow','+8754590148','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1970','giancarlo.obama@hotmail.com','Krakow','+5973067735','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1979','tim.molnár@yahoo.com','Miskolc','+2340503771','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1990','tim.ostafil@yahoo.com','New York','+1674599018','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1981','attila.tompa@yahoo.com','New York','+3689260055','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1989','prezmek.tompa@yahoo.com','Krakow','+1623597414','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1994','giancarlo.monoczki@gmail.com','Barcelona','+2893192271','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1993','giancarlo.ostafil@hotmail.com','Barcelona','+805430185','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1972','tim.szodoray@hotmail.com','Barcelona','+366684906','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1966','tim.fisichella@yahoo.com','Miskolc','+8419389607','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1981','tim.tompa@hotmail.com','Budapest','+9584336492','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1995','mateusz.hamilton@gmail.com','New York','+5757760426','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1983','sándor.salamon@yahoo.com','Budapest','+5588530352','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1983','matthew.beöthy@hotmail.com','Budapest','+6343944399','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1966','tamás.obama@gmail.com','New York','+1126857897','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1976','john.ciacka@hotmail.com','New York','+538359184','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1988','matthew.ostafil@gmail.com','Budapest','+1802427598','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1965','miklós.tompa@yahoo.com','Budapest','+3146829964','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1982','giancarlo.ciacka@yahoo.com','Krakow','+8971546607','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1971','tim.beöthy@gmail.com','Krakow','+8620989197','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1969','mateusz.tompa@hotmail.com','Barcelona','+7697113204','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1987','giancarlo.obama@yahoo.com','Barcelona','+3389213636','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1991','matthew.ciacka@yahoo.com','Budapest','+300405738','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1984','matthew.molnár@hotmail.com','New York','+4289959452','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1992','dániel.obama@hotmail.com','Budapest','+4292399131','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1988','andy.carrey@yahoo.com','Budapest','+5761149684','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1976','prezmek.tompa@gmail.com','Krakow','+3177249520','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1981','dániel.molnár@hotmail.com','Krakow','+5547073643','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1989','pál.beöthy@hotmail.com','Budapest','+9585834712','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1967','giancarlo.ostafil@hotmail.com','Miskolc','+2060585718','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1982','matthew.carrey@gmail.com','Barcelona','+212377605','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1978','attila.carrey@hotmail.com','New York','+7955779010','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1966','attila.carrey@gmail.com','Barcelona','+8615333749','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1982','tamás.tompa@hotmail.com','Krakow','+8703336144','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1989','john.salamon@yahoo.com','Budapest','+9306884962','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1975','miklós.hamilton@yahoo.com','Krakow','+603844911','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1977','john.obama@hotmail.com','Krakow','+1071146469','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1972','tamás.ostafil@gmail.com','Barcelona','+478386417','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1979','giancarlo.salamon@yahoo.com','Budapest','+9027768838','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1966','dániel.molnár@yahoo.com','Krakow','+4868491460','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1990','tim.obama@yahoo.com','New York','+1244848494','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1993','prezmek.hamilton@yahoo.com','Miskolc','+3261084803','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1989','tim.tompa@yahoo.com','New York','+5187367017','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1995','attila.fisichella@yahoo.com','Krakow','+1657713060','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1987','tim.ciacka@gmail.com','Budapest','+6397032597','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1973','giancarlo.ciacka@gmail.com','Miskolc','+3564679490','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1968','mateusz.salamon@hotmail.com','Miskolc','+4134106335','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1978','dániel.fisichella@yahoo.com','Barcelona','+6170708740','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1977','andy.carrey@yahoo.com','Miskolc','+9597641948','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1991','dániel.hamilton@gmail.com','New York','+6916604803','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1973','matthew.ostafil@hotmail.com','Miskolc','+2860436479','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1971','miklós.fisichella@gmail.com','New York','+9365614509','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1974','sándor.obama@hotmail.com','Krakow','+6662209473','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1965','tim.szodoray@hotmail.com','Miskolc','+9848223507','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1992','pál.ciacka@yahoo.com','New York','+4796863893','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1968','giancarlo.fisichella@gmail.com','New York','+2161484864','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1982','tim.molnár@gmail.com','Krakow','+7393332655','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1976','sándor.ciacka@yahoo.com','Krakow','+4878655053','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1982','sándor.monoczki@hotmail.com','Barcelona','+2778183601','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1982','john.salamon@hotmail.com','Budapest','+5436300609','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1969','miklós.beöthy@gmail.com','Miskolc','+869905306','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1981','tamás.fisichella@hotmail.com','New York','+7428835324','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1986','tim.szodoray@gmail.com','Budapest','+9849308776','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1974','giancarlo.ostafil@yahoo.com','New York','+4963900749','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1991','attila.monoczki@yahoo.com','New York','+7424120561','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1967','miklós.salamon@hotmail.com','Krakow','+5381883592','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1982','pál.tompa@yahoo.com','Miskolc','+5374409830','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1977','prezmek.hamilton@gmail.com','Budapest','+9851812185','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1974','prezmek.lebron@yahoo.com','Krakow','+4941746056','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1979','prezmek.ciacka@yahoo.com','New York','+3199632679','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1971','tamás.tompa@yahoo.com','New York','+901501888','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1970','miklós.beöthy@yahoo.com','New York','+8282837822','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1968','andy.salamon@hotmail.com','Barcelona','+239571681','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1979','giancarlo.szodoray@yahoo.com','Miskolc','+1449378488','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1976','dániel.beöthy@gmail.com','Budapest','+2738217333','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1971','sándor.monoczki@gmail.com','Krakow','+2100869146','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1989','john.fisichella@yahoo.com','Barcelona','+3574002687','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1977','tim.salamon@gmail.com','Krakow','+5202403266','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1993','tim.tompa@yahoo.com','Barcelona','+5149202372','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1983','miklós.beöthy@hotmail.com','Barcelona','+413978940','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1989','attila.szodoray@yahoo.com','Krakow','+7444283405','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1991','dániel.carrey@yahoo.com','Barcelona','+7979158507','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1981','pál.hamilton@yahoo.com','Krakow','+1092898961','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1980','miklós.monoczki@yahoo.com','Barcelona','+4449996528','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1988','miklós.carrey@yahoo.com','Barcelona','+8792073051','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1970','mateusz.hamilton@yahoo.com','Krakow','+4918709109','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1967','andy.salamon@gmail.com','Barcelona','+2231856655','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1975','dániel.ciacka@hotmail.com','Miskolc','+6970809148','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1995','dániel.hamilton@yahoo.com','Budapest','+4073195359','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1987','matthew.beöthy@hotmail.com','Miskolc','+3333247382','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1994','miklós.lebron@hotmail.com','Miskolc','+9378816768','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1993','sándor.monoczki@hotmail.com','Budapest','+6601290819','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1990','sándor.carrey@gmail.com','Barcelona','+3800970752','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1969','giancarlo.lebron@hotmail.com','Barcelona','+5999248449','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1976','mateusz.monoczki@gmail.com','Krakow','+7560032839','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1983','miklós.tompa@yahoo.com','Miskolc','+9504739715','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1989','john.monoczki@hotmail.com','New York','+9119761817','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1994','mateusz.molnár@yahoo.com','New York','+8123933672','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1967','prezmek.tompa@hotmail.com','New York','+2336936724','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1978','mateusz.obama@gmail.com','Budapest','+8278491452','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1977','mateusz.lebron@gmail.com','Miskolc','+2261271515','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1985','sándor.monoczki@gmail.com','Barcelona','+5275321499','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1995','sándor.carrey@gmail.com','Budapest','+9454500411','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1972','matthew.lebron@gmail.com','Barcelona','+3694011193','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1976','john.carrey@yahoo.com','New York','+1637139864','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1981','miklós.fisichella@yahoo.com','New York','+5540843865','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1978','attila.szodoray@hotmail.com','Krakow','+8512344162','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1966','prezmek.szodoray@hotmail.com','New York','+8280412134','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1991','attila.tompa@yahoo.com','New York','+4587191408','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1980','andy.ciacka@yahoo.com','New York','+2264493937','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1979','prezmek.tompa@gmail.com','Miskolc','+6449172566','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1968','pál.salamon@yahoo.com','Krakow','+4063870969','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1988','tamás.tompa@yahoo.com','Krakow','+5378931838','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1986','giancarlo.ostafil@yahoo.com','New York','+8978686019','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1977','dániel.molnár@hotmail.com','Barcelona','+9645960494','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1971','tim.fisichella@yahoo.com','Miskolc','+2849920871','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1990','tim.tompa@gmail.com','Budapest','+9422675243','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1972','prezmek.hamilton@yahoo.com','New York','+75317964','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1982','pál.beöthy@gmail.com','Budapest','+5879845848','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1965','tamás.fisichella@yahoo.com','Krakow','+857633646','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1970','giancarlo.obama@gmail.com','Krakow','+5912681903','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1969','sándor.hamilton@gmail.com','Barcelona','+7070337773','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1975','prezmek.ostafil@yahoo.com','Krakow','+1308315499','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1972','dániel.ostafil@hotmail.com','New York','+8799065446','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1976','dániel.tompa@yahoo.com','Miskolc','+6726567142','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1978','miklós.hamilton@gmail.com','Miskolc','+9391017212','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1995','attila.tompa@gmail.com','New York','+2944764463','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1974','attila.hamilton@hotmail.com','Budapest','+6074195432','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1975','matthew.lebron@hotmail.com','Miskolc','+7874580427','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1994','giancarlo.molnár@hotmail.com','Budapest','+3387591420','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1987','miklós.ciacka@gmail.com','Barcelona','+5702529661','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1987','matthew.ciacka@yahoo.com','Miskolc','+7855433734','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1994','dániel.tompa@hotmail.com','Krakow','+7035439608','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1980','prezmek.molnár@gmail.com','Budapest','+3076997273','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1993','andy.tompa@yahoo.com','New York','+7703029888','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1981','pál.salamon@gmail.com','Miskolc','+9187774766','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1988','attila.molnár@yahoo.com','Budapest','+7809959659','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1981','tim.obama@yahoo.com','Budapest','+4195237189','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1985','attila.tompa@hotmail.com','New York','+2839181947','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1980','tamás.molnár@yahoo.com','Krakow','+7589349715','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1982','tamás.ciacka@yahoo.com','Krakow','+199289075','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1986','sándor.szodoray@gmail.com','New York','+8821500314','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1992','miklós.salamon@hotmail.com','New York','+4479380984','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1981','mateusz.ciacka@hotmail.com','Krakow','+3138684658','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1977','andy.carrey@hotmail.com','New York','+6403035935','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1979','sándor.salamon@yahoo.com','Krakow','+4344028352','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1994','tim.ostafil@yahoo.com','Krakow','+3820232562','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1967','mateusz.ostafil@gmail.com','Miskolc','+7718707569','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1993','john.hamilton@yahoo.com','Budapest','+7322487365','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1985','pál.lebron@yahoo.com','Budapest','+2096908237','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1977','mateusz.szodoray@yahoo.com','Barcelona','+9431708240','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1968','andy.beöthy@yahoo.com','Krakow','+5712631274','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1976','tim.salamon@gmail.com','Budapest','+3405390605','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1972','miklós.molnár@gmail.com','Barcelona','+3250265510','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1976','mateusz.beöthy@hotmail.com','Barcelona','+8467084280','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1994','mateusz.tompa@yahoo.com','Miskolc','+9723749764','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1980','sándor.tompa@yahoo.com','Miskolc','+6740121321','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1977','dániel.fisichella@gmail.com','Miskolc','+6118624989','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1968','sándor.molnár@gmail.com','Miskolc','+1808779312','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1980','andy.carrey@hotmail.com','Miskolc','+8929384212','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1972','sándor.lebron@gmail.com','New York','+9452584728','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1965','tamás.lebron@gmail.com','New York','+8848782086','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1971','matthew.beöthy@hotmail.com','New York','+7429840846','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1989','john.ostafil@hotmail.com','Budapest','+5300951651','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1980','mateusz.lebron@hotmail.com','Miskolc','+465930777','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1977','andy.hamilton@yahoo.com','New York','+1210335285','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1990','sándor.hamilton@yahoo.com','Budapest','+1482232719','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1973','dániel.hamilton@hotmail.com','Krakow','+6318498386','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1980','dániel.tompa@hotmail.com','Barcelona','+4996467516','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1981','mateusz.tompa@gmail.com','New York','+2405250583','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1990','prezmek.molnár@hotmail.com','New York','+8236750337','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1989','attila.tompa@gmail.com','Budapest','+9981358738','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1979','andy.tompa@hotmail.com','New York','+3620899059','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1993','john.monoczki@hotmail.com','New York','+5314913195','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1987','andy.salamon@hotmail.com','New York','+9770453840','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1992','tamás.tompa@yahoo.com','Budapest','+9589660336','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1968','mateusz.hamilton@gmail.com','Barcelona','+4256423555','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1995','miklós.molnár@hotmail.com','Miskolc','+3682585725','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1969','dániel.szodoray@gmail.com','Budapest','+5423984555','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1995','john.hamilton@hotmail.com','Budapest','+3282998623','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1977','tim.beöthy@hotmail.com','Budapest','+7291569957','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1976','giancarlo.tompa@gmail.com','Barcelona','+2282020329','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1969','tim.carrey@gmail.com','Miskolc','+3772767312','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1979','sándor.carrey@hotmail.com','Budapest','+4515276856','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1988','prezmek.obama@gmail.com','New York','+3296896201','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1973','matthew.fisichella@yahoo.com','Krakow','+1820606100','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1966','giancarlo.monoczki@gmail.com','New York','+301158850','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1967','miklós.hamilton@hotmail.com','Miskolc','+9097763527','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1990','john.obama@gmail.com','New York','+8305812184','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1969','mateusz.obama@yahoo.com','Krakow','+212685625','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1979','miklós.hamilton@hotmail.com','Krakow','+2344717507','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1992','john.tompa@gmail.com','Barcelona','+4878521047','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1988','attila.monoczki@hotmail.com','Miskolc','+1974518766','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1987','giancarlo.lebron@yahoo.com','Budapest','+1281475893','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1985','andy.hamilton@gmail.com','Krakow','+8754284197','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1975','tim.monoczki@gmail.com','New York','+8634736585','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1983','pál.ciacka@gmail.com','Barcelona','+6170481223','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1991','john.tompa@gmail.com','New York','+5547117139','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1975','sándor.hamilton@gmail.com','Krakow','+8872913159','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1968','mateusz.szodoray@yahoo.com','Budapest','+698641562','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1980','tamás.ostafil@gmail.com','Barcelona','+8915525969','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1992','giancarlo.beöthy@hotmail.com','Miskolc','+5802271238','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1972','tamás.molnár@gmail.com','Barcelona','+3117484400','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1965','sándor.ciacka@yahoo.com','Budapest','+8118407190','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1990','andy.fisichella@gmail.com','New York','+4712252461','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1965','andy.lebron@hotmail.com','New York','+8968701912','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1987','sándor.ostafil@yahoo.com','New York','+904195504','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1976','andy.salamon@hotmail.com','Krakow','+4941401543','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1974','tim.ciacka@gmail.com','Barcelona','+7136763719','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1974','matthew.ciacka@hotmail.com','New York','+3688018816','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1980','tim.monoczki@gmail.com','Barcelona','+4806635368','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1966','matthew.salamon@gmail.com','Budapest','+4735202242','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1977','sándor.beöthy@yahoo.com','Budapest','+8995614443','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1973','tim.ciacka@yahoo.com','Miskolc','+7477890634','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1994','mateusz.lebron@yahoo.com','Budapest','+4934200778','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1971','andy.beöthy@yahoo.com','Krakow','+2758456216','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1975','miklós.ostafil@hotmail.com','Miskolc','+2662232488','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1967','pál.obama@yahoo.com','Budapest','+1505515410','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1966','mateusz.molnár@hotmail.com','Krakow','+5525798749','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1980','john.obama@yahoo.com','New York','+1514984015','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1967','giancarlo.tompa@yahoo.com','Krakow','+6586941181','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1965','miklós.monoczki@yahoo.com','New York','+5059380858','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1978','miklós.molnár@gmail.com','Barcelona','+1032687342','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1993','attila.fisichella@gmail.com','Krakow','+6369867389','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1984','tim.molnár@yahoo.com','Krakow','+4381051612','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1971','mateusz.fisichella@gmail.com','New York','+3388696413','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1979','sándor.molnár@yahoo.com','New York','+3038603324','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1994','miklós.szodoray@gmail.com','New York','+2170377296','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1976','attila.beöthy@gmail.com','New York','+7577463881','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1983','andy.salamon@yahoo.com','Krakow','+6973750453','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1967','andy.obama@yahoo.com','Budapest','+7063902363','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1981','miklós.beöthy@hotmail.com','Krakow','+2996993989','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1974','attila.obama@gmail.com','Budapest','+2880911492','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1985','prezmek.lebron@hotmail.com','Miskolc','+2861623327','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1971','sándor.fisichella@yahoo.com','Budapest','+3071282964','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1965','giancarlo.obama@yahoo.com','New York','+1545462361','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1973','giancarlo.beöthy@hotmail.com','Budapest','+278910821','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1968','matthew.ciacka@hotmail.com','Barcelona','+8601489804','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1977','john.tompa@yahoo.com','Budapest','+5798335618','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1981','andy.carrey@hotmail.com','Miskolc','+6373825738','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1975','tamás.tompa@gmail.com','Budapest','+7351754556','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1991','tamás.hamilton@yahoo.com','Miskolc','+6924399077','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1967','tamás.molnár@gmail.com','Budapest','+8019093555','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1965','pál.ostafil@hotmail.com','New York','+1790313478','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1987','dániel.obama@yahoo.com','Miskolc','+3558971756','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1986','mateusz.obama@gmail.com','Budapest','+3778257913','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1966','attila.ostafil@hotmail.com','Barcelona','+2980610069','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1987','mateusz.ciacka@gmail.com','Barcelona','+4205208969','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1970','attila.szodoray@hotmail.com','New York','+6059203176','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1989','miklós.carrey@gmail.com','Miskolc','+7127061833','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1988','miklós.ciacka@hotmail.com','Budapest','+166343662','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1980','giancarlo.szodoray@yahoo.com','Barcelona','+3741071177','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1994','attila.szodoray@gmail.com','New York','+5331530269','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1968','miklós.ostafil@hotmail.com','Krakow','+9103851658','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1982','matthew.ostafil@hotmail.com','Miskolc','+9728481455','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1966','john.monoczki@yahoo.com','Budapest','+8041832463','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1983','matthew.ostafil@yahoo.com','Miskolc','+1220717716','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1986','tamás.monoczki@yahoo.com','Barcelona','+5863966259','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1984','sándor.obama@hotmail.com','New York','+7871178714','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1980','prezmek.hamilton@gmail.com','Budapest','+6273384777','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1972','sándor.carrey@yahoo.com','Barcelona','+5907579318','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1982','dániel.salamon@yahoo.com','New York','+3549340698','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1976','andy.ciacka@gmail.com','Miskolc','+9331287682','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1994','prezmek.beöthy@gmail.com','New York','+380388458','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1983','andy.szodoray@yahoo.com','Barcelona','+248199177','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1983','andy.molnár@gmail.com','Budapest','+1312545473','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1980','tim.ostafil@yahoo.com','Budapest','+377869489','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1983','mateusz.tompa@gmail.com','Miskolc','+9066374613','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1991','tamás.hamilton@yahoo.com','Miskolc','+5332563650','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1966','tamás.fisichella@hotmail.com','Krakow','+2051620606','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1993','miklós.fisichella@hotmail.com','Budapest','+8406361370','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1987','prezmek.ostafil@hotmail.com','New York','+6855266998','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1983','pál.carrey@gmail.com','Miskolc','+2130253587','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1993','matthew.lebron@gmail.com','Barcelona','+6564380152','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1992','prezmek.ciacka@gmail.com','New York','+3246001058','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1982','prezmek.monoczki@gmail.com','Budapest','+3217598119','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1979','sándor.fisichella@gmail.com','Barcelona','+4639050797','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1983','mateusz.carrey@gmail.com','Budapest','+9013815033','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1986','prezmek.beöthy@gmail.com','Barcelona','+5039112359','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1990','attila.obama@hotmail.com','Krakow','+4493369990','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1971','dániel.carrey@hotmail.com','New York','+2860476151','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1975','andy.ciacka@gmail.com','Barcelona','+9729739379','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1972','prezmek.tompa@hotmail.com','New York','+2947121773','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1968','prezmek.lebron@hotmail.com','Budapest','+2425256466','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1976','dániel.carrey@hotmail.com','Krakow','+2854125920','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1971','tim.beöthy@yahoo.com','Krakow','+6910411759','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1965','tim.salamon@yahoo.com','Budapest','+4749782951','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1988','tim.fisichella@gmail.com','New York','+1607555222','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1974','attila.lebron@hotmail.com','Barcelona','+8502288801','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1967','matthew.molnár@yahoo.com','Budapest','+8856426923','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1971','attila.obama@gmail.com','Krakow','+8258307038','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1969','tamás.hamilton@hotmail.com','New York','+9596852102','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1983','prezmek.beöthy@gmail.com','Miskolc','+2466620377','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1969','tamás.fisichella@hotmail.com','Budapest','+136083570','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1972','matthew.ostafil@hotmail.com','Miskolc','+8486407106','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1993','tim.obama@hotmail.com','Barcelona','+7397238840','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1994','giancarlo.ciacka@gmail.com','Budapest','+7274781979','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1985','dániel.monoczki@yahoo.com','New York','+3056931901','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1980','john.carrey@gmail.com','Barcelona','+4978642844','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1981','pál.beöthy@yahoo.com','Barcelona','+7187460476','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1983','miklós.hamilton@hotmail.com','Barcelona','+7052957666','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1993','sándor.ostafil@yahoo.com','Miskolc','+7941549931','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1965','miklós.carrey@gmail.com','Barcelona','+8919273640','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1988','tim.ciacka@yahoo.com','New York','+1646371099','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1979','matthew.molnár@hotmail.com','Budapest','+8616471625','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1988','matthew.ostafil@hotmail.com','Budapest','+7714170735','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1984','prezmek.ciacka@hotmail.com','Miskolc','+3780434861','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1965','tim.monoczki@gmail.com','Krakow','+7354252398','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1993','giancarlo.beöthy@hotmail.com','Miskolc','+9346426773','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1975','giancarlo.lebron@hotmail.com','Budapest','+7766391386','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1969','pál.ostafil@yahoo.com','Krakow','+9600080110','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1974','tim.beöthy@hotmail.com','Barcelona','+5446165208','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1976','mateusz.beöthy@yahoo.com','Miskolc','+7219272970','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1980','john.fisichella@hotmail.com','Krakow','+5407838585','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1969','pál.ostafil@hotmail.com','Barcelona','+9994735344','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1987','giancarlo.fisichella@hotmail.com','Barcelona','+9156028160','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1977','john.ciacka@yahoo.com','New York','+8546638562','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1981','miklós.ciacka@yahoo.com','Krakow','+5092929012','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1978','tamás.beöthy@gmail.com','Krakow','+6436235664','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1995','attila.hamilton@yahoo.com','Budapest','+5706619891','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1980','tim.monoczki@yahoo.com','Budapest','+6077887763','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1972','giancarlo.obama@gmail.com','Miskolc','+7227359735','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1984','attila.beöthy@yahoo.com','New York','+1340995033','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1977','mateusz.lebron@hotmail.com','Krakow','+2058336608','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1986','dániel.monoczki@gmail.com','New York','+7664947880','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1983','mateusz.salamon@gmail.com','Budapest','+6427534837','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1989','andy.szodoray@yahoo.com','Miskolc','+1549344785','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1965','john.salamon@hotmail.com','Miskolc','+5403870448','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1966','tim.molnár@gmail.com','Barcelona','+656626594','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1972','tim.fisichella@gmail.com','New York','+9385132107','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1995','john.tompa@gmail.com','Krakow','+6512356231','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1966','miklós.molnár@yahoo.com','Barcelona','+4423621942','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1987','giancarlo.szodoray@yahoo.com','Krakow','+8047916243','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1965','mateusz.obama@hotmail.com','Miskolc','+9196724241','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1986','attila.tompa@hotmail.com','Budapest','+5298526226','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1981','prezmek.szodoray@gmail.com','Miskolc','+7665774320','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1973','tim.fisichella@gmail.com','Barcelona','+6825442506','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1972','pál.tompa@gmail.com','Budapest','+582707425','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1970','prezmek.obama@gmail.com','Miskolc','+1425034882','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1967','pál.carrey@hotmail.com','Miskolc','+888367216','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1995','tim.szodoray@hotmail.com','Budapest','+3485283600','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1995','andy.carrey@hotmail.com','Budapest','+6502107197','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1989','prezmek.obama@gmail.com','Krakow','+2133331246','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1991','miklós.fisichella@gmail.com','Krakow','+6806711265','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1969','sándor.tompa@gmail.com','Miskolc','+6247599636','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1972','john.fisichella@yahoo.com','Barcelona','+8381350278','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1983','dániel.fisichella@gmail.com','Krakow','+6315409046','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1965','miklós.obama@gmail.com','Barcelona','+1896500666','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1993','sándor.beöthy@yahoo.com','Barcelona','+7447282904','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1985','attila.molnár@yahoo.com','Barcelona','+7082222169','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1981','andy.obama@hotmail.com','Miskolc','+9763623461','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1967','tim.ostafil@gmail.com','New York','+3248185844','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1988','miklós.hamilton@yahoo.com','New York','+684388245','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1974','john.fisichella@gmail.com','New York','+2370633225','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1978','matthew.fisichella@gmail.com','Miskolc','+1796329784','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1992','dániel.molnár@hotmail.com','New York','+7084886209','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1969','sándor.fisichella@yahoo.com','New York','+9450719633','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1982','giancarlo.beöthy@hotmail.com','Miskolc','+9924339060','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1986','miklós.carrey@yahoo.com','Miskolc','+6173217638','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1993','dániel.fisichella@gmail.com','New York','+1086128854','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1974','giancarlo.obama@gmail.com','Krakow','+6718806312','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1981','dániel.beöthy@yahoo.com','Krakow','+3295916262','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1972','john.carrey@hotmail.com','Barcelona','+5449755270','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1984','dániel.fisichella@gmail.com','Krakow','+4544748902','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1965','prezmek.obama@hotmail.com','Barcelona','+7290852083','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1991','dániel.carrey@hotmail.com','New York','+3517799031','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1983','pál.obama@gmail.com','Krakow','+218358842','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1987','dániel.obama@yahoo.com','Barcelona','+6547578427','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1991','andy.carrey@gmail.com','Barcelona','+4267386699','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1980','attila.szodoray@hotmail.com','Budapest','+519822936','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1984','prezmek.molnár@gmail.com','Krakow','+4352865195','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1968','pál.ciacka@yahoo.com','New York','+8809350041','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1976','andy.lebron@yahoo.com','Miskolc','+5175520091','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1992','attila.molnár@gmail.com','Miskolc','+9892603816','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1969','attila.obama@yahoo.com','Budapest','+1244585242','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1992','tim.molnár@yahoo.com','Budapest','+9336637538','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1982','giancarlo.fisichella@hotmail.com','New York','+8875290943','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1971','miklós.salamon@gmail.com','Miskolc','+7091245355','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1983','dániel.carrey@gmail.com','Miskolc','+2202110312','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1994','dániel.szodoray@hotmail.com','Budapest','+2135030439','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1974','andy.ciacka@hotmail.com','Krakow','+6401290688','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1968','prezmek.szodoray@gmail.com','Budapest','+6938611695','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1994','tamás.ciacka@yahoo.com','Budapest','+3099721988','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1978','sándor.molnár@hotmail.com','Krakow','+4735311434','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1971','andy.lebron@hotmail.com','Miskolc','+1777746097','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1977','dániel.obama@gmail.com','Budapest','+8068639242','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1969','miklós.monoczki@hotmail.com','Barcelona','+4284783231','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1995','tamás.obama@gmail.com','Budapest','+6131977915','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1972','mateusz.tompa@hotmail.com','New York','+7960829541','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1985','dániel.ciacka@yahoo.com','Krakow','+8357083201','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1976','mateusz.beöthy@gmail.com','Miskolc','+90491820','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1974','prezmek.fisichella@yahoo.com','New York','+1059446052','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1975','tamás.molnár@yahoo.com','Miskolc','+4349336500','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1992','mateusz.szodoray@yahoo.com','Barcelona','+4309955110','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1983','prezmek.szodoray@hotmail.com','Barcelona','+4150200916','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1988','giancarlo.carrey@gmail.com','Krakow','+161129614','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1966','andy.hamilton@yahoo.com','Miskolc','+9575909518','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1990','prezmek.monoczki@yahoo.com','Barcelona','+9017253233','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1971','miklós.carrey@yahoo.com','Budapest','+3737143435','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1965','miklós.hamilton@gmail.com','Miskolc','+7586496431','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1983','giancarlo.ciacka@gmail.com','New York','+8671623209','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1995','matthew.tompa@gmail.com','Budapest','+2473701670','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1968','matthew.monoczki@yahoo.com','Budapest','+5278582988','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1975','matthew.monoczki@yahoo.com','Barcelona','+348781137','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1983','andy.salamon@yahoo.com','Miskolc','+8635446783','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1995','andy.fisichella@hotmail.com','Miskolc','+2855689137','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1969','tamás.szodoray@hotmail.com','Budapest','+6627105009','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1972','prezmek.lebron@gmail.com','Miskolc','+9479821190','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1986','tim.lebron@gmail.com','New York','+4237023731','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1982','mateusz.lebron@gmail.com','Miskolc','+2808605306','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1995','mateusz.obama@hotmail.com','Barcelona','+5445519893','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1995','mateusz.salamon@gmail.com','Barcelona','+9673964993','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1977','tim.szodoray@yahoo.com','Budapest','+4730880433','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1994','john.ostafil@hotmail.com','Krakow','+2909305836','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1991','tamás.monoczki@hotmail.com','Budapest','+5716127865','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1993','attila.fisichella@hotmail.com','Miskolc','+7201245341','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1975','sándor.obama@hotmail.com','Budapest','+2727158613','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1975','pál.monoczki@hotmail.com','Miskolc','+9829605494','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1991','mateusz.lebron@hotmail.com','New York','+8867683742','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1985','andy.beöthy@hotmail.com','New York','+6914722706','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1993','mateusz.hamilton@yahoo.com','Miskolc','+3324957986','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1992','prezmek.fisichella@gmail.com','Miskolc','+6988816803','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1994','mateusz.monoczki@gmail.com','Barcelona','+5844737757','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1991','pál.ostafil@hotmail.com','Krakow','+5518706456','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1989','tamás.beöthy@hotmail.com','Krakow','+4522254674','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1981','matthew.salamon@yahoo.com','Barcelona','+9253948197','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1969','tim.molnár@hotmail.com','New York','+8655830575','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1980','sándor.salamon@gmail.com','Barcelona','+9499102845','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1989','matthew.lebron@hotmail.com','Budapest','+6540642912','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1978','andy.molnár@yahoo.com','New York','+2130237869','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1966','dániel.szodoray@yahoo.com','Barcelona','+1011224117','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1971','sándor.fisichella@yahoo.com','Krakow','+711651053','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1972','dániel.molnár@gmail.com','Miskolc','+1355267690','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1984','john.ostafil@yahoo.com','Budapest','+2910045980','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1976','dániel.carrey@hotmail.com','Barcelona','+8824407720','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1983','dániel.beöthy@yahoo.com','Miskolc','+9980931489','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1972','giancarlo.hamilton@hotmail.com','New York','+9928701967','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1992','john.beöthy@hotmail.com','Budapest','+9239105364','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1976','attila.fisichella@gmail.com','Miskolc','+5314004141','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1979','giancarlo.lebron@hotmail.com','Barcelona','+9551289430','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1981','pál.carrey@gmail.com','Budapest','+4306096181','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1966','dániel.monoczki@hotmail.com','New York','+5423134620','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1991','john.obama@hotmail.com','New York','+2340357650','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1979','prezmek.fisichella@yahoo.com','Budapest','+2552118229','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1983','john.carrey@yahoo.com','Barcelona','+3941024612','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1979','dániel.obama@yahoo.com','Miskolc','+9763709817','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1980','mateusz.lebron@gmail.com','Barcelona','+7722453230','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1981','miklós.ostafil@yahoo.com','Budapest','+4857578819','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1977','john.carrey@hotmail.com','Barcelona','+6703904556','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1973','tamás.carrey@gmail.com','Miskolc','+6546702548','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1984','prezmek.molnár@gmail.com','Budapest','+7029321280','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1978','pál.szodoray@gmail.com','Budapest','+6910945292','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1968','andy.lebron@yahoo.com','Budapest','+5221028140','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1986','mateusz.hamilton@gmail.com','Budapest','+1216619905','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1974','john.fisichella@yahoo.com','Miskolc','+410469154','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1980','miklós.szodoray@hotmail.com','New York','+6614442610','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1975','tamás.ostafil@yahoo.com','Barcelona','+6642415496','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1975','dániel.monoczki@yahoo.com','Barcelona','+6745825973','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1982','tamás.hamilton@gmail.com','Krakow','+862233980','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1985','sándor.fisichella@gmail.com','New York','+8152299354','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1972','mateusz.tompa@gmail.com','Budapest','+4069803463','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1980','mateusz.monoczki@hotmail.com','Miskolc','+466109186','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1991','andy.ostafil@yahoo.com','New York','+5355698599','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1991','andy.salamon@yahoo.com','Barcelona','+2420475419','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1991','tim.lebron@gmail.com','Barcelona','+4454730391','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1972','matthew.hamilton@hotmail.com','Barcelona','+4100023358','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1984','sándor.ostafil@gmail.com','Barcelona','+8394875358','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1971','john.hamilton@gmail.com','Budapest','+956866233','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1978','john.beöthy@hotmail.com','New York','+7091083442','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1988','attila.obama@hotmail.com','Budapest','+1921140631','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1980','pál.hamilton@gmail.com','Miskolc','+5368941515','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1977','mateusz.monoczki@gmail.com','New York','+7206270096','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1974','pál.lebron@gmail.com','New York','+4211979042','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1973','miklós.lebron@yahoo.com','Barcelona','+7199092371','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1976','attila.monoczki@hotmail.com','Barcelona','+8387560407','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1977','john.ciacka@gmail.com','Budapest','+9665641268','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1977','miklós.tompa@hotmail.com','Budapest','+4161916406','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1984','andy.carrey@yahoo.com','Barcelona','+5762912038','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1973','miklós.carrey@hotmail.com','New York','+2262123627','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1983','tim.tompa@hotmail.com','Budapest','+3129249','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1995','pál.hamilton@yahoo.com','Barcelona','+3143873020','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1973','mateusz.salamon@hotmail.com','Miskolc','+4928013406','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1968','pál.salamon@gmail.com','Budapest','+7023444861','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1993','sándor.lebron@yahoo.com','Miskolc','+5536327828','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1980','attila.fisichella@hotmail.com','New York','+5184476225','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1986','matthew.salamon@hotmail.com','New York','+3296917723','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1981','john.monoczki@gmail.com','Barcelona','+7346856791','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1966','miklós.beöthy@yahoo.com','Budapest','+632331924','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1986','mateusz.molnár@hotmail.com','Budapest','+6131034483','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1970','pál.beöthy@gmail.com','Barcelona','+2136744734','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1990','miklós.beöthy@hotmail.com','New York','+8531698137','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1967','dániel.ostafil@gmail.com','Barcelona','+5988508970','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1982','tamás.tompa@gmail.com','New York','+1354084311','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1973','sándor.hamilton@hotmail.com','Barcelona','+2602692909','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1966','tim.hamilton@gmail.com','Miskolc','+3961088119','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1974','prezmek.tompa@hotmail.com','Barcelona','+944554445','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1980','sándor.lebron@gmail.com','Krakow','+2937676211','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1993','matthew.hamilton@gmail.com','New York','+2555480927','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1967','andy.salamon@gmail.com','Krakow','+2736362905','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1994','pál.beöthy@gmail.com','Barcelona','+2206047099','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1988','matthew.monoczki@yahoo.com','Krakow','+1372828790','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1993','sándor.monoczki@yahoo.com','Krakow','+6927568864','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1978','matthew.beöthy@hotmail.com','Krakow','+5641044075','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1966','pál.carrey@hotmail.com','Krakow','+2461166991','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1966','sándor.obama@gmail.com','Budapest','+4624853988','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1970','prezmek.carrey@hotmail.com','New York','+8503156931','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1970','mateusz.ostafil@yahoo.com','Budapest','+7716378073','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1981','mateusz.fisichella@yahoo.com','Budapest','+9424117063','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1985','mateusz.szodoray@yahoo.com','Budapest','+1712955712','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1986','pál.fisichella@yahoo.com','New York','+7901977697','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1982','giancarlo.beöthy@hotmail.com','Budapest','+7922250624','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1983','andy.beöthy@yahoo.com','Barcelona','+7378586364','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1969','giancarlo.salamon@hotmail.com','Krakow','+5239060294','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1981','john.szodoray@yahoo.com','New York','+6519544858','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1975','tamás.hamilton@hotmail.com','Miskolc','+9711667607','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1988','tim.lebron@hotmail.com','Miskolc','+7820347341','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1968','prezmek.salamon@gmail.com','Budapest','+831155158','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1985','sándor.tompa@hotmail.com','Krakow','+7213743058','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1972','tim.beöthy@yahoo.com','New York','+84705681','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1977','pál.salamon@hotmail.com','Miskolc','+4322941152','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1978','miklós.ciacka@yahoo.com','Barcelona','+994498627','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1983','andy.lebron@gmail.com','New York','+2007862281','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1983','john.beöthy@yahoo.com','Krakow','+6531662582','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1993','john.hamilton@gmail.com','New York','+3592263001','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1974','mateusz.carrey@hotmail.com','Barcelona','+8963908683','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1976','miklós.carrey@gmail.com','Budapest','+5629516958','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1985','john.hamilton@hotmail.com','Krakow','+1826170341','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1968','matthew.ostafil@gmail.com','New York','+7594791008','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1987','tim.szodoray@gmail.com','Miskolc','+4300438563','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1966','tim.lebron@yahoo.com','New York','+103870348','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1965','tim.szodoray@yahoo.com','Budapest','+7949862463','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1981','matthew.carrey@yahoo.com','New York','+3922029566','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1984','andy.monoczki@yahoo.com','Krakow','+5312100861','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1980','miklós.lebron@gmail.com','Krakow','+9054972183','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1970','attila.tompa@gmail.com','Krakow','+2036425678','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1995','attila.carrey@gmail.com','Barcelona','+6236365294','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1991','prezmek.salamon@hotmail.com','Miskolc','+8903043266','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1989','prezmek.szodoray@hotmail.com','Krakow','+3389632717','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1967','tamás.beöthy@gmail.com','Miskolc','+9078422682','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1967','mateusz.ostafil@yahoo.com','Budapest','+8139349574','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1970','pál.salamon@gmail.com','New York','+8187756294','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1974','attila.monoczki@yahoo.com','Barcelona','+893612010','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1969','matthew.molnár@hotmail.com','Krakow','+3007422205','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1971','john.szodoray@hotmail.com','Barcelona','+9370745122','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1993','prezmek.hamilton@gmail.com','Barcelona','+9246925337','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1994','andy.szodoray@hotmail.com','Miskolc','+7142124070','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1976','matthew.beöthy@yahoo.com','Miskolc','+5495250752','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1968','matthew.carrey@yahoo.com','Budapest','+7562170288','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1982','giancarlo.tompa@yahoo.com','New York','+6012093428','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1990','prezmek.carrey@hotmail.com','Barcelona','+7892936977','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1985','mateusz.obama@gmail.com','Budapest','+7236800210','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1988','andy.carrey@hotmail.com','Krakow','+4623420206','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1966','matthew.ciacka@yahoo.com','Miskolc','+290336328','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1968','sándor.fisichella@hotmail.com','Budapest','+3397762240','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1982','prezmek.carrey@gmail.com','Miskolc','+5422197194','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1971','giancarlo.salamon@gmail.com','Krakow','+8013824898','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1990','giancarlo.hamilton@yahoo.com','Miskolc','+385915564','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1984','matthew.tompa@yahoo.com','Miskolc','+7021660250','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1973','attila.ostafil@gmail.com','Krakow','+7725822794','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1981','dániel.lebron@hotmail.com','Budapest','+8253039563','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1975','prezmek.szodoray@yahoo.com','Barcelona','+834630058','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1966','john.fisichella@hotmail.com','Barcelona','+659758387','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1980','matthew.beöthy@gmail.com','Budapest','+1866708961','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1969','attila.molnár@gmail.com','New York','+2778234502','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1972','dániel.ostafil@hotmail.com','New York','+6402602865','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1988','mateusz.carrey@gmail.com','Budapest','+5458914134','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1966','prezmek.fisichella@hotmail.com','Krakow','+7100728145','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1982','tim.molnár@yahoo.com','Budapest','+4986328447','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1980','john.hamilton@yahoo.com','Budapest','+9771588938','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1982','tim.molnár@hotmail.com','New York','+5597081975','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1971','pál.monoczki@hotmail.com','Budapest','+6507089324','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1975','andy.carrey@yahoo.com','New York','+7327334220','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1974','andy.tompa@hotmail.com','Barcelona','+2517111596','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1970','miklós.obama@yahoo.com','Budapest','+5916930611','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1988','andy.beöthy@hotmail.com','Krakow','+2470059320','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1995','matthew.salamon@yahoo.com','Budapest','+2386162444','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1971','tamás.ostafil@gmail.com','Barcelona','+9349383761','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1978','mateusz.ciacka@yahoo.com','Miskolc','+1045956275','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1987','pál.hamilton@yahoo.com','Krakow','+5398648319','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1971','miklós.salamon@yahoo.com','Budapest','+1139147954','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1965','andy.szodoray@gmail.com','Krakow','+7787269012','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1967','john.carrey@yahoo.com','Barcelona','+2742004443','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1991','mateusz.obama@yahoo.com','Krakow','+6590077351','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1976','sándor.lebron@hotmail.com','New York','+776263355','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1985','matthew.tompa@hotmail.com','New York','+2346422777','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1969','john.ostafil@hotmail.com','Krakow','+5430540900','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1990','attila.molnár@yahoo.com','Budapest','+4910311908','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1989','tamás.monoczki@gmail.com','Miskolc','+529182964','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1983','john.monoczki@gmail.com','Miskolc','+1681997872','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1979','tamás.ostafil@yahoo.com','New York','+7499991833','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1965','miklós.hamilton@yahoo.com','Budapest','+9501686264','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1991','attila.beöthy@hotmail.com','Budapest','+793524877','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1971','miklós.hamilton@hotmail.com','Miskolc','+2492732662','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1972','attila.molnár@yahoo.com','Barcelona','+8273526864','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1975','mateusz.molnár@yahoo.com','New York','+2779764527','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1973','miklós.szodoray@gmail.com','Miskolc','+1038130015','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1992','john.salamon@hotmail.com','Barcelona','+2431100412','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1995','miklós.ciacka@hotmail.com','Miskolc','+8500092856','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1968','pál.molnár@yahoo.com','New York','+7450237679','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1970','sándor.lebron@hotmail.com','Krakow','+353688386','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1988','tim.szodoray@yahoo.com','Budapest','+6854088873','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1975','andy.beöthy@hotmail.com','Krakow','+2827428807','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1970','dániel.molnár@hotmail.com','Budapest','+7575592535','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1975','prezmek.obama@yahoo.com','Miskolc','+2872714442','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1969','pál.tompa@gmail.com','Miskolc','+7156139391','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1981','attila.ciacka@hotmail.com','Miskolc','+8221938923','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1977','john.lebron@yahoo.com','Krakow','+3934305415','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1970','john.ciacka@hotmail.com','Krakow','+892680091','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1983','tamás.monoczki@gmail.com','Krakow','+6398129409','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1968','giancarlo.fisichella@hotmail.com','Miskolc','+9428644422','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1991','matthew.lebron@gmail.com','Krakow','+1757270562','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1986','dániel.monoczki@gmail.com','New York','+3344417156','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1968','matthew.molnár@gmail.com','Barcelona','+316236046','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1988','tim.beöthy@hotmail.com','Krakow','+375059233','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1991','pál.salamon@yahoo.com','Budapest','+3848238159','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1987','miklós.ostafil@gmail.com','Barcelona','+3010423163','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1994','tim.beöthy@gmail.com','Barcelona','+8875735777','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1988','attila.szodoray@hotmail.com','New York','+3956198900','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1991','mateusz.szodoray@gmail.com','Barcelona','+8371983425','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1991','john.hamilton@hotmail.com','Krakow','+7897550877','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1989','matthew.ostafil@yahoo.com','Budapest','+7375506604','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1980','mateusz.tompa@gmail.com','Miskolc','+3563952592','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1970','attila.ostafil@yahoo.com','Budapest','+977770370','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1990','pál.obama@yahoo.com','New York','+6849985968','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1980','miklós.molnár@yahoo.com','Barcelona','+6808375317','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1974','tamás.hamilton@gmail.com','Krakow','+5400122326','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1981','attila.beöthy@hotmail.com','Barcelona','+7687031228','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1973','sándor.salamon@hotmail.com','Miskolc','+5622610428','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1972','andy.salamon@gmail.com','Miskolc','+108788791','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1988','john.salamon@gmail.com','Miskolc','+9002145295','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1991','tamás.szodoray@gmail.com','Barcelona','+5727291348','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1974','matthew.salamon@gmail.com','Krakow','+5047131548','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1969','andy.hamilton@hotmail.com','Krakow','+9843967401','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1971','andy.szodoray@gmail.com','Budapest','+2687173475','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1987','pál.tompa@gmail.com','New York','+1096200646','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1993','tamás.fisichella@gmail.com','New York','+8641257773','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1986','tamás.obama@yahoo.com','Krakow','+3006936570','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1982','sándor.obama@yahoo.com','Krakow','+3317542045','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1970','prezmek.monoczki@yahoo.com','Barcelona','+5151467265','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1984','john.molnár@yahoo.com','New York','+1753979802','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1975','prezmek.fisichella@gmail.com','Krakow','+3986325908','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1991','dániel.beöthy@hotmail.com','Budapest','+8661372028','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1977','tim.carrey@yahoo.com','Barcelona','+9148618362','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1974','miklós.hamilton@yahoo.com','New York','+2331302139','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1981','pál.lebron@hotmail.com','Barcelona','+8730053239','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1970','andy.monoczki@hotmail.com','Miskolc','+1932364180','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1970','miklós.monoczki@gmail.com','Miskolc','+6845953210','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1973','tamás.carrey@gmail.com','Barcelona','+7541290804','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1986','prezmek.molnár@yahoo.com','Miskolc','+8144805030','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1985','john.beöthy@gmail.com','Krakow','+1893325289','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1993','tim.ostafil@gmail.com','Miskolc','+2455606901','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1976','miklós.obama@gmail.com','Barcelona','+262798889','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1991','andy.carrey@yahoo.com','New York','+4322554338','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1975','matthew.lebron@gmail.com','Miskolc','+4024901416','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1970','john.molnár@hotmail.com','Miskolc','+2373108773','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1995','dániel.lebron@gmail.com','Miskolc','+1506460054','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1988','andy.obama@hotmail.com','Miskolc','+8159783912','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1989','pál.carrey@hotmail.com','Budapest','+363536299','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1971','john.hamilton@gmail.com','Barcelona','+5092927817','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1971','dániel.carrey@gmail.com','New York','+3454001560','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1995','giancarlo.ostafil@hotmail.com','Krakow','+1637273668','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1993','sándor.szodoray@hotmail.com','Budapest','+5403404953','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1983','prezmek.carrey@gmail.com','Barcelona','+1479639725','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1993','matthew.molnár@hotmail.com','Krakow','+4087925818','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1989','andy.lebron@hotmail.com','New York','+2156218049','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1990','matthew.ostafil@hotmail.com','Barcelona','+1569294305','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1970','sándor.molnár@hotmail.com','Miskolc','+4527550957','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1980','giancarlo.monoczki@yahoo.com','New York','+6474596893','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1989','prezmek.molnár@yahoo.com','Budapest','+6821058515','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1990','john.monoczki@gmail.com','New York','+7106249228','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1980','attila.obama@gmail.com','Miskolc','+9648756714','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1981','miklós.monoczki@gmail.com','Budapest','+5595863255','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1992','tim.ciacka@gmail.com','Budapest','+1647929463','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1989','john.tompa@gmail.com','Budapest','+1022704814','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1991','attila.lebron@gmail.com','Krakow','+9878399787','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1965','dániel.ostafil@hotmail.com','Krakow','+2995913354','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1977','john.obama@gmail.com','Budapest','+870653119','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1995','giancarlo.fisichella@hotmail.com','Krakow','+6283476250','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1976','miklós.molnár@gmail.com','New York','+2252815014','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1985','tamás.molnár@gmail.com','Miskolc','+4030325081','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1975','tim.carrey@gmail.com','Krakow','+3682327687','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1967','prezmek.szodoray@yahoo.com','Budapest','+7263274121','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1975','andy.beöthy@gmail.com','Budapest','+314398853','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1993','tim.beöthy@hotmail.com','Miskolc','+5181122316','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1989','prezmek.obama@yahoo.com','Miskolc','+9878795026','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1969','tim.tompa@gmail.com','Krakow','+4817875163','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1972','giancarlo.szodoray@yahoo.com','Krakow','+4064357340','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1976','tim.hamilton@yahoo.com','Miskolc','+9126760564','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1995','attila.fisichella@gmail.com','New York','+6213915250','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1991','john.beöthy@hotmail.com','Krakow','+3411231673','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1985','miklós.ostafil@yahoo.com','New York','+9579856276','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1994','attila.molnár@yahoo.com','Budapest','+1129754018','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1969','pál.szodoray@yahoo.com','Krakow','+846396081','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1985','giancarlo.beöthy@yahoo.com','Barcelona','+3122887583','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1976','prezmek.hamilton@yahoo.com','New York','+2212477898','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1979','tim.ciacka@yahoo.com','Budapest','+2363921094','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1991','andy.ciacka@gmail.com','Krakow','+5294886180','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1965','andy.szodoray@gmail.com','New York','+575186776','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1990','pál.tompa@yahoo.com','Krakow','+6587864175','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1995','andy.lebron@gmail.com','Miskolc','+5297235119','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1987','john.monoczki@gmail.com','Krakow','+4803098967','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1980','matthew.obama@yahoo.com','Budapest','+5440232207','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1981','mateusz.hamilton@hotmail.com','Barcelona','+9513267594','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1969','john.fisichella@gmail.com','Miskolc','+8250678864','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1969','prezmek.tompa@yahoo.com','Barcelona','+4738400260','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1977','dániel.ostafil@yahoo.com','Budapest','+6795385374','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1995','tamás.fisichella@gmail.com','Krakow','+6149881130','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1988','mateusz.szodoray@hotmail.com','Budapest','+1596528115','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1986','pál.obama@hotmail.com','New York','+6018360402','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1978','attila.monoczki@hotmail.com','New York','+5961628266','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1977','pál.hamilton@gmail.com','New York','+5923369451','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1976','mateusz.molnár@gmail.com','Budapest','+5957551882','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1988','andy.lebron@gmail.com','Budapest','+3005184627','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1974','prezmek.tompa@gmail.com','New York','+1400846822','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1988','andy.ostafil@gmail.com','Miskolc','+3599892146','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1978','dániel.molnár@yahoo.com','Barcelona','+85326797','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1989','miklós.carrey@gmail.com','Miskolc','+8778484657','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1983','miklós.hamilton@gmail.com','Budapest','+2850355687','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1971','miklós.monoczki@hotmail.com','Budapest','+8858849431','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1992','dániel.beöthy@hotmail.com','Miskolc','+288416813','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1992','matthew.carrey@hotmail.com','New York','+5350667682','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1975','tim.fisichella@gmail.com','Barcelona','+8255732695','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1975','john.lebron@yahoo.com','Barcelona','+5949325472','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1991','sándor.ostafil@gmail.com','Barcelona','+6694659679','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1989','pál.lebron@hotmail.com','New York','+8859455805','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1984','andy.ciacka@gmail.com','Budapest','+9221029048','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1965','tamás.beöthy@yahoo.com','Budapest','+3867062666','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1965','giancarlo.lebron@gmail.com','Miskolc','+2403871633','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1969','john.beöthy@hotmail.com','New York','+2221900000','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1977','tim.molnár@gmail.com','Miskolc','+4280644109','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1983','miklós.tompa@gmail.com','Krakow','+6408754780','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1982','matthew.tompa@gmail.com','New York','+7389719324','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1992','mateusz.monoczki@yahoo.com','Barcelona','+48673926','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1969','miklós.ostafil@hotmail.com','Budapest','+1544818478','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1972','dániel.beöthy@gmail.com','Miskolc','+9165303321','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1982','giancarlo.monoczki@hotmail.com','Barcelona','+4093514482','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1992','mateusz.lebron@yahoo.com','Miskolc','+6404707571','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1993','giancarlo.hamilton@gmail.com','Krakow','+8115304699','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1979','john.tompa@hotmail.com','Krakow','+3470912267','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1989','miklós.monoczki@hotmail.com','New York','+4439749558','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1971','matthew.salamon@gmail.com','New York','+3981925014','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1987','tamás.lebron@hotmail.com','Miskolc','+4878286887','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1983','attila.lebron@hotmail.com','Budapest','+3274305444','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1972','attila.beöthy@hotmail.com','Barcelona','+9889914233','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1984','john.ostafil@hotmail.com','Barcelona','+4877508541','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1982','prezmek.ostafil@hotmail.com','Krakow','+85764699','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1981','andy.obama@gmail.com','Barcelona','+5466727415','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1986','giancarlo.ostafil@gmail.com','Budapest','+1557617299','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1990','mateusz.beöthy@yahoo.com','Miskolc','+9801728618','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1992','sándor.ostafil@gmail.com','Budapest','+5867145459','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1992','giancarlo.monoczki@hotmail.com','Krakow','+5451470252','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1985','giancarlo.tompa@hotmail.com','Barcelona','+9183429723','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1989','sándor.salamon@gmail.com','Budapest','+1288597223','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1991','andy.hamilton@yahoo.com','New York','+758250292','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1977','matthew.szodoray@hotmail.com','Budapest','+3962426109','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1994','matthew.lebron@gmail.com','New York','+3257226947','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1988','giancarlo.ostafil@yahoo.com','New York','+3727866702','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1965','prezmek.beöthy@gmail.com','Barcelona','+8454858060','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1974','miklós.fisichella@hotmail.com','Miskolc','+7168384208','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1991','sándor.ostafil@hotmail.com','New York','+8535917207','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1993','matthew.carrey@hotmail.com','Miskolc','+3819319995','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1968','attila.beöthy@yahoo.com','New York','+82669665','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1987','prezmek.carrey@hotmail.com','Barcelona','+9020026827','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1990','matthew.szodoray@hotmail.com','Miskolc','+2528222062','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1986','dániel.obama@gmail.com','Barcelona','+5243563980','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1976','tim.molnár@gmail.com','Budapest','+9973007330','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1968','pál.beöthy@yahoo.com','New York','+8222105783','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1995','miklós.fisichella@gmail.com','Krakow','+4429586942','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1989','andy.ciacka@gmail.com','Budapest','+306235446','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1984','miklós.fisichella@yahoo.com','New York','+1355706275','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1994','tamás.hamilton@gmail.com','Krakow','+7864810627','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1978','dániel.ciacka@gmail.com','Krakow','+181079556','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1975','matthew.carrey@gmail.com','Krakow','+7172586074','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1986','sándor.lebron@yahoo.com','Krakow','+3350669339','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1982','miklós.lebron@gmail.com','New York','+1419580569','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1975','andy.fisichella@yahoo.com','Miskolc','+8709347238','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1985','tim.salamon@hotmail.com','Krakow','+5865597596','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1984','tamás.beöthy@hotmail.com','Budapest','+5589027910','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1980','miklós.molnár@yahoo.com','Budapest','+1509342538','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1990','attila.obama@gmail.com','New York','+5142814017','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1965','miklós.fisichella@gmail.com','Barcelona','+9060869209','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1982','john.salamon@yahoo.com','Miskolc','+165114656','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1989','tamás.lebron@hotmail.com','Miskolc','+1629645937','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1985','matthew.salamon@yahoo.com','Budapest','+8561796103','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1977','miklós.molnár@gmail.com','Budapest','+876314486','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1977','mateusz.carrey@gmail.com','Miskolc','+9092894580','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1981','andy.molnár@yahoo.com','New York','+3004732368','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1992','attila.szodoray@gmail.com','Barcelona','+4197907836','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1971','attila.ciacka@yahoo.com','Barcelona','+2417743227','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1983','giancarlo.molnár@yahoo.com','Miskolc','+6831960390','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1984','pál.ostafil@gmail.com','Budapest','+2538622817','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1981','tim.ostafil@hotmail.com','Krakow','+5351347037','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1967','dániel.hamilton@yahoo.com','Miskolc','+4362329628','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1989','mateusz.salamon@gmail.com','Budapest','+1288900154','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1982','tamás.ciacka@gmail.com','Krakow','+1601841189','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1975','giancarlo.salamon@hotmail.com','Budapest','+9565160143','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1966','miklós.ostafil@yahoo.com','Miskolc','+2666034023','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1986','prezmek.salamon@gmail.com','Budapest','+6546082151','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1968','john.obama@gmail.com','Krakow','+492959796','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1977','tamás.ostafil@gmail.com','Miskolc','+7045250569','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1990','matthew.ciacka@yahoo.com','New York','+1794615125','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1983','giancarlo.fisichella@yahoo.com','New York','+9820354787','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1987','attila.fisichella@gmail.com','Budapest','+5687401257','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1990','prezmek.carrey@gmail.com','Krakow','+5586824538','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1986','giancarlo.lebron@gmail.com','Budapest','+6352313749','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1986','miklós.ciacka@hotmail.com','Miskolc','+6764884988','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1986','john.fisichella@hotmail.com','Barcelona','+4865252691','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1984','dániel.ostafil@yahoo.com','Budapest','+6321398214','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1978','dániel.salamon@yahoo.com','Budapest','+2552004753','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1995','john.monoczki@gmail.com','Miskolc','+932965053','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1978','sándor.fisichella@hotmail.com','Budapest','+6217624602','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1995','andy.molnár@gmail.com','Krakow','+8209202760','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1970','tamás.hamilton@yahoo.com','Barcelona','+3173804010','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1965','sándor.obama@yahoo.com','New York','+3086512335','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1995','matthew.ciacka@hotmail.com','Miskolc','+1496994161','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1986','attila.szodoray@gmail.com','Krakow','+9452801368','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1986','miklós.szodoray@gmail.com','New York','+2777690435','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1967','matthew.ciacka@hotmail.com','Budapest','+1411124729','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1981','john.ciacka@hotmail.com','Budapest','+5204953173','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1995','matthew.carrey@hotmail.com','Barcelona','+788213353','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1977','giancarlo.ostafil@gmail.com','Budapest','+6281271873','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1971','andy.tompa@yahoo.com','Barcelona','+2772326740','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1979','pál.salamon@gmail.com','Miskolc','+1891790141','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1981','dániel.szodoray@hotmail.com','Barcelona','+7577009916','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1975','pál.hamilton@yahoo.com','Miskolc','+5757753041','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1975','mateusz.ostafil@hotmail.com','Krakow','+4345758405','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1966','john.carrey@hotmail.com','Barcelona','+5519342262','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1995','miklós.fisichella@hotmail.com','Miskolc','+2061434945','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1980','attila.szodoray@yahoo.com','Barcelona','+906294192','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1990','sándor.ostafil@gmail.com','Barcelona','+4251041637','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1992','pál.ostafil@gmail.com','Miskolc','+3197047664','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1966','tim.lebron@gmail.com','Miskolc','+7445355082','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1989','giancarlo.molnár@gmail.com','New York','+9590471219','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1968','dániel.fisichella@gmail.com','Budapest','+5138348611','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1979','tamás.tompa@hotmail.com','Budapest','+399519495','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1992','attila.salamon@hotmail.com','Budapest','+8570224841','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1978','tamás.beöthy@hotmail.com','Budapest','+7287949695','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1980','miklós.szodoray@yahoo.com','Budapest','+8790511848','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1983','prezmek.szodoray@yahoo.com','Miskolc','+9958832208','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1973','mateusz.tompa@hotmail.com','Barcelona','+1341841467','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1968','matthew.szodoray@hotmail.com','Krakow','+425074745','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1979','giancarlo.szodoray@yahoo.com','New York','+5257894010','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1982','tim.ciacka@hotmail.com','Krakow','+6331339215','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1974','tamás.ciacka@gmail.com','Miskolc','+6834105212','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1969','mateusz.fisichella@yahoo.com','Barcelona','+7091074826','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1987','giancarlo.szodoray@yahoo.com','Barcelona','+521850524','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1972','mateusz.monoczki@yahoo.com','Budapest','+4699843328','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1982','dániel.obama@yahoo.com','Krakow','+4427162076','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1980','andy.molnár@gmail.com','Krakow','+85560443','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1976','john.molnár@gmail.com','Budapest','+6762483168','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1970','sándor.hamilton@yahoo.com','Barcelona','+5301976572','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1970','miklós.tompa@hotmail.com','Barcelona','+8298922342','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1984','pál.hamilton@gmail.com','Budapest','+9098180665','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1973','dániel.ciacka@yahoo.com','Miskolc','+8730568720','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1971','giancarlo.fisichella@hotmail.com','Krakow','+32564470','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1988','andy.carrey@hotmail.com','New York','+165574197','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1973','matthew.ostafil@yahoo.com','Budapest','+9803701053','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1991','mateusz.fisichella@yahoo.com','Barcelona','+5299559975','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1981','matthew.carrey@hotmail.com','Budapest','+940440300','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1985','prezmek.hamilton@yahoo.com','Krakow','+7390878987','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1993','matthew.fisichella@gmail.com','Krakow','+1253672718','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1967','pál.szodoray@hotmail.com','Miskolc','+2633129496','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1971','prezmek.hamilton@yahoo.com','Krakow','+3890202387','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1991','attila.tompa@yahoo.com','Miskolc','+8924925477','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1974','sándor.ostafil@hotmail.com','Krakow','+3389558385','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1978','miklós.salamon@gmail.com','Miskolc','+7240297411','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1968','sándor.beöthy@gmail.com','New York','+2636204503','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1978','tim.lebron@hotmail.com','New York','+7553344706','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1995','matthew.lebron@yahoo.com','Krakow','+826219884','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1976','pál.ostafil@yahoo.com','Miskolc','+9638217622','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1993','andy.salamon@gmail.com','New York','+5620806781','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1983','john.salamon@yahoo.com','Barcelona','+632986756','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1983','miklós.ciacka@gmail.com','Krakow','+1459062590','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1972','tamás.ciacka@gmail.com','Miskolc','+4340737471','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1993','dániel.carrey@yahoo.com','Miskolc','+8260094200','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1970','john.molnár@hotmail.com','Krakow','+6745103888','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1976','tamás.hamilton@gmail.com','Miskolc','+1497323577','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1992','prezmek.molnár@yahoo.com','New York','+7927036963','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1968','dániel.tompa@yahoo.com','Miskolc','+79657056','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1975','sándor.salamon@hotmail.com','Miskolc','+1090917262','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1967','sándor.obama@gmail.com','Krakow','+1493825739','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1994','miklós.salamon@hotmail.com','Miskolc','+4858240186','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1992','pál.hamilton@hotmail.com','Krakow','+6432696935','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1988','miklós.ostafil@yahoo.com','Krakow','+809739975','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1973','mateusz.carrey@gmail.com','New York','+7527435694','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1986','pál.ciacka@yahoo.com','Budapest','+7625378531','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1979','attila.tompa@hotmail.com','Budapest','+32546007','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1982','mateusz.ostafil@gmail.com','New York','+5892753379','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1988','sándor.monoczki@gmail.com','Barcelona','+3510417462','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1965','giancarlo.obama@gmail.com','New York','+2788570443','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1989','john.ostafil@hotmail.com','Miskolc','+4866345959','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1968','tamás.tompa@hotmail.com','New York','+8358868381','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1985','john.lebron@gmail.com','Krakow','+9349770482','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1970','john.szodoray@yahoo.com','Barcelona','+4840956888','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1986','attila.molnár@yahoo.com','Budapest','+4658854103','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1986','sándor.ciacka@yahoo.com','Budapest','+3745712370','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1972','dániel.monoczki@gmail.com','Krakow','+6745258480','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1979','sándor.salamon@gmail.com','Barcelona','+2923399196','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1971','pál.tompa@hotmail.com','New York','+9196044680','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1981','mateusz.lebron@yahoo.com','Budapest','+136129085','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1983','giancarlo.monoczki@hotmail.com','Budapest','+452550827','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1992','miklós.obama@gmail.com','Miskolc','+6848808927','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1976','attila.fisichella@hotmail.com','New York','+2840896019','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1967','attila.tompa@yahoo.com','Budapest','+3008469072','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1995','prezmek.carrey@hotmail.com','Budapest','+369321471','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1994','john.obama@yahoo.com','Barcelona','+9915602546','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1968','pál.salamon@hotmail.com','Budapest','+151807913','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1993','matthew.obama@gmail.com','Barcelona','+5418680773','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1980','dániel.ostafil@gmail.com','Miskolc','+2864503351','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1976','attila.ostafil@gmail.com','Barcelona','+957863704','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1975','attila.tompa@hotmail.com','Miskolc','+4204181654','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1965','giancarlo.hamilton@yahoo.com','Budapest','+9185427615','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1972','miklós.beöthy@yahoo.com','New York','+8446061113','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1968','mateusz.obama@yahoo.com','Budapest','+1229445466','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1967','andy.szodoray@yahoo.com','Barcelona','+8163351027','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1981','andy.molnár@hotmail.com','Krakow','+5615712261','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1979','pál.szodoray@hotmail.com','Barcelona','+3579670204','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1970','attila.fisichella@gmail.com','Barcelona','+2948843569','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1987','tamás.ostafil@gmail.com','Barcelona','+4590065599','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1980','dániel.salamon@yahoo.com','Barcelona','+7335559982','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1981','sándor.beöthy@gmail.com','Barcelona','+4312256990','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1970','dániel.salamon@yahoo.com','Barcelona','+6199975148','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1971','giancarlo.tompa@hotmail.com','Budapest','+751110392','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1995','miklós.hamilton@hotmail.com','Budapest','+1674210525','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1971','andy.carrey@gmail.com','Barcelona','+6665702369','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1993','tamás.ciacka@hotmail.com','Budapest','+2880144568','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1993','dániel.obama@gmail.com','Krakow','+7827439255','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1977','giancarlo.fisichella@yahoo.com','Budapest','+6608451186','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1995','andy.carrey@yahoo.com','Krakow','+4477647405','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1971','prezmek.szodoray@gmail.com','Miskolc','+5300653318','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1971','john.molnár@gmail.com','Barcelona','+7280760471','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1994','dániel.lebron@yahoo.com','Miskolc','+9848380730','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1970','attila.fisichella@gmail.com','New York','+4601523430','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1967','attila.ostafil@yahoo.com','Barcelona','+6598398499','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1994','sándor.hamilton@gmail.com','New York','+7427656976','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1989','attila.salamon@gmail.com','New York','+8072245367','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1966','john.tompa@hotmail.com','Krakow','+7931717642','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1985','tim.fisichella@hotmail.com','Barcelona','+5689748975','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1970','matthew.obama@hotmail.com','New York','+5835214874','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1981','matthew.carrey@gmail.com','Krakow','+7875438083','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1991','dániel.fisichella@gmail.com','Budapest','+5043144054','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1991','john.ciacka@gmail.com','Budapest','+2285488079','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1967','attila.hamilton@gmail.com','New York','+5228594360','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1994','andy.obama@yahoo.com','New York','+7783834422','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1993','prezmek.salamon@yahoo.com','New York','+8499094315','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1971','dániel.ciacka@hotmail.com','Budapest','+5338284001','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1987','andy.beöthy@yahoo.com','Miskolc','+378095289','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1965','sándor.hamilton@yahoo.com','Miskolc','+2886273193','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1976','mateusz.lebron@hotmail.com','Budapest','+4634358463','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1989','dániel.tompa@gmail.com','Krakow','+750058982','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1984','prezmek.monoczki@hotmail.com','Miskolc','+2666846767','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1977','giancarlo.beöthy@hotmail.com','Barcelona','+1027844204','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1980','prezmek.monoczki@hotmail.com','Miskolc','+2885789941','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1982','sándor.ciacka@hotmail.com','New York','+8585469940','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1971','prezmek.salamon@yahoo.com','Krakow','+411688222','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1969','sándor.beöthy@yahoo.com','New York','+709825406','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1965','dániel.obama@gmail.com','New York','+883096349','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1981','tim.carrey@yahoo.com','New York','+179984407','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1978','tamás.molnár@yahoo.com','Barcelona','+3962286420','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1969','tim.hamilton@hotmail.com','New York','+6977559001','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1975','dániel.tompa@hotmail.com','Budapest','+7110178798','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1969','miklós.salamon@hotmail.com','Miskolc','+5152571018','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1970','dániel.obama@gmail.com','Budapest','+5918992057','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1975','pál.monoczki@hotmail.com','Barcelona','+4674118525','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1994','pál.salamon@yahoo.com','Barcelona','+9410915515','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1992','tamás.molnár@gmail.com','Krakow','+9338552722','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1985','tamás.obama@yahoo.com','Barcelona','+2170139093','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1994','mateusz.salamon@hotmail.com','New York','+1884344725','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1987','sándor.lebron@yahoo.com','Krakow','+7038104867','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1980','john.hamilton@hotmail.com','Krakow','+9683336624','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1983','tamás.molnár@hotmail.com','Barcelona','+1322313756','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1990','tim.tompa@gmail.com','Barcelona','+1107670973','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1993','mateusz.hamilton@gmail.com','Barcelona','+6252228828','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1983','andy.szodoray@yahoo.com','Miskolc','+6581097139','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1984','tim.lebron@yahoo.com','Miskolc','+3739629262','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1965','sándor.fisichella@hotmail.com','Krakow','+6004357223','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1981','tim.beöthy@gmail.com','New York','+4125736709','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1978','john.obama@hotmail.com','Barcelona','+7428354511','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1975','dániel.salamon@yahoo.com','Barcelona','+2857534562','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1971','attila.tompa@gmail.com','New York','+577510814','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1980','sándor.ciacka@yahoo.com','Krakow','+2683689060','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1988','sándor.szodoray@gmail.com','New York','+5821472311','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1993','attila.fisichella@hotmail.com','Barcelona','+4178091229','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1975','matthew.molnár@gmail.com','New York','+8591060765','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1976','andy.szodoray@hotmail.com','Miskolc','+1746722769','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1991','john.hamilton@yahoo.com','Barcelona','+4378370154','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1982','andy.hamilton@yahoo.com','Barcelona','+6313160969','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1965','attila.hamilton@yahoo.com','New York','+4239006475','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1982','tim.lebron@yahoo.com','Budapest','+9794771881','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1988','sándor.fisichella@hotmail.com','Miskolc','+4674739791','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1968','mateusz.lebron@gmail.com','New York','+93413590','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1980','tim.ostafil@gmail.com','Barcelona','+5390049457','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1980','tamás.obama@yahoo.com','New York','+9787338796','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1988','giancarlo.hamilton@yahoo.com','New York','+1727150743','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1971','andy.hamilton@yahoo.com','Barcelona','+4651321265','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1972','tim.monoczki@yahoo.com','Krakow','+6736828376','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1976','tamás.ostafil@hotmail.com','Budapest','+1476535939','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1972','giancarlo.monoczki@yahoo.com','Budapest','+2728621340','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1991','miklós.carrey@hotmail.com','New York','+3047485519','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1992','giancarlo.beöthy@hotmail.com','Krakow','+7124097119','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1984','tim.monoczki@hotmail.com','Budapest','+9815503730','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1977','prezmek.tompa@yahoo.com','Miskolc','+4437225380','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1993','attila.szodoray@yahoo.com','New York','+8833511052','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1969','tim.salamon@hotmail.com','Miskolc','+1959617578','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1990','matthew.obama@gmail.com','New York','+2414801809','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1973','miklós.ostafil@gmail.com','Budapest','+5844936935','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1984','pál.molnár@gmail.com','Krakow','+3505110824','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1975','andy.molnár@hotmail.com','New York','+5398929616','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1973','pál.tompa@yahoo.com','Budapest','+9959049885','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1986','tim.molnár@hotmail.com','Miskolc','+4222044483','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1968','tim.beöthy@hotmail.com','Krakow','+5439604258','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1965','sándor.beöthy@hotmail.com','Barcelona','+4222867788','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1976','dániel.monoczki@hotmail.com','Krakow','+831949245','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1979','dániel.lebron@hotmail.com','New York','+7067657740','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1984','john.ciacka@yahoo.com','Miskolc','+8300825767','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1966','dániel.carrey@hotmail.com','Barcelona','+7445106261','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1979','sándor.fisichella@hotmail.com','Krakow','+962716548','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1968','giancarlo.beöthy@hotmail.com','Krakow','+1300918229','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1984','attila.szodoray@yahoo.com','Budapest','+6963224417','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1982','john.molnár@hotmail.com','New York','+5691143929','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1986','tamás.szodoray@gmail.com','Barcelona','+9440651491','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1965','tamás.szodoray@hotmail.com','Budapest','+7565626073','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1977','dániel.lebron@yahoo.com','Barcelona','+8163988322','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1969','giancarlo.ciacka@yahoo.com','Krakow','+9440805659','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1994','attila.ostafil@hotmail.com','Krakow','+4598050322','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1985','matthew.ostafil@gmail.com','Krakow','+3965429701','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1991','dániel.obama@gmail.com','New York','+8669816626','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1991','miklós.hamilton@gmail.com','Krakow','+3184658026','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1977','matthew.fisichella@hotmail.com','Krakow','+1955570442','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1968','attila.ciacka@gmail.com','New York','+4821968698','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1983','miklós.beöthy@hotmail.com','Barcelona','+9886308047','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1977','pál.lebron@yahoo.com','Barcelona','+2616908005','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1985','attila.fisichella@yahoo.com','New York','+8991190489','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1971','sándor.szodoray@yahoo.com','Miskolc','+8440885020','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1967','attila.fisichella@gmail.com','Miskolc','+5674296419','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1966','tim.tompa@yahoo.com','Barcelona','+3832983854','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1974','sándor.ciacka@gmail.com','Barcelona','+8097821281','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1970','john.carrey@hotmail.com','Barcelona','+397667256','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1987','john.tompa@yahoo.com','Miskolc','+5953495254','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1988','tim.lebron@hotmail.com','Miskolc','+8270746167','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1982','miklós.tompa@hotmail.com','Barcelona','+8771424726','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1980','sándor.szodoray@hotmail.com','New York','+97593799','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1969','tamás.ostafil@yahoo.com','Krakow','+5874046975','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1966','tamás.beöthy@yahoo.com','Budapest','+9305236580','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1970','dániel.lebron@hotmail.com','Krakow','+5937342038','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1966','prezmek.beöthy@gmail.com','Miskolc','+1562120275','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1980','tamás.fisichella@yahoo.com','Miskolc','+3852399924','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1989','matthew.monoczki@gmail.com','Budapest','+905979196','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1970','attila.szodoray@hotmail.com','Krakow','+2764840517','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1980','miklós.ostafil@hotmail.com','Barcelona','+5840246296','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1982','dániel.hamilton@hotmail.com','Miskolc','+8399959539','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1978','john.obama@yahoo.com','Barcelona','+2217891305','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1982','pál.ostafil@gmail.com','Miskolc','+9557906952','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1966','tim.lebron@hotmail.com','New York','+8695925667','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1969','miklós.molnár@gmail.com','New York','+3671712556','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1995','tim.molnár@yahoo.com','New York','+6106733657','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1976','sándor.ciacka@yahoo.com','Krakow','+3352244403','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1974','matthew.salamon@yahoo.com','Krakow','+6081458736','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1971','dániel.carrey@gmail.com','Budapest','+457834770','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1981','john.carrey@yahoo.com','Budapest','+2442974151','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1981','matthew.hamilton@hotmail.com','Budapest','+1772279974','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1988','prezmek.monoczki@gmail.com','Miskolc','+7291603084','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1982','tamás.lebron@hotmail.com','Krakow','+5898197003','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1976','andy.tompa@gmail.com','Barcelona','+1955785814','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1995','dániel.obama@hotmail.com','Krakow','+2921161909','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1966','tamás.molnár@gmail.com','Krakow','+9517457149','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1986','sándor.tompa@hotmail.com','Barcelona','+3363306775','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1967','dániel.carrey@gmail.com','Budapest','+2743275127','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1990','andy.hamilton@gmail.com','Barcelona','+2913585546','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1976','mateusz.obama@hotmail.com','New York','+416449516','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1976','tim.lebron@gmail.com','New York','+7454407281','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1975','prezmek.ciacka@yahoo.com','Budapest','+2647820600','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1970','prezmek.carrey@yahoo.com','New York','+1905948184','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1987','mateusz.ostafil@gmail.com','Krakow','+8201272109','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1995','tim.ciacka@gmail.com','Miskolc','+4130181643','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1985','attila.obama@hotmail.com','New York','+7197996081','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1980','dániel.monoczki@gmail.com','Miskolc','+1262453701','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1969','pál.lebron@hotmail.com','Miskolc','+8154400203','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1985','prezmek.monoczki@hotmail.com','Barcelona','+4987629149','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1971','tamás.ostafil@gmail.com','Krakow','+3241137274','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1985','dániel.carrey@hotmail.com','Budapest','+6425713685','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1986','mateusz.salamon@yahoo.com','Barcelona','+2302156261','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1982','dániel.molnár@hotmail.com','Krakow','+1109825197','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1978','giancarlo.salamon@yahoo.com','Krakow','+4378979919','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1991','matthew.tompa@hotmail.com','New York','+1830325019','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1971','giancarlo.monoczki@yahoo.com','Budapest','+3829122898','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1976','matthew.ciacka@yahoo.com','Budapest','+664012069','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1970','tim.fisichella@gmail.com','Krakow','+3940956915','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1970','miklós.molnár@gmail.com','Krakow','+5397743882','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1992','attila.hamilton@gmail.com','New York','+2597354724','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1966','tamás.lebron@gmail.com','Krakow','+4547727133','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1993','john.monoczki@yahoo.com','Krakow','+5720839835','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1980','matthew.ostafil@hotmail.com','Miskolc','+2763578892','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1994','sándor.beöthy@yahoo.com','Barcelona','+5903003863','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1990','pál.monoczki@yahoo.com','Budapest','+8637086301','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1972','mateusz.lebron@hotmail.com','New York','+1363558146','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1994','mateusz.carrey@gmail.com','Miskolc','+6759715952','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1991','matthew.szodoray@yahoo.com','Barcelona','+3182569449','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1980','andy.molnár@yahoo.com','New York','+5446604384','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1985','pál.salamon@gmail.com','Krakow','+5999108449','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1976','andy.fisichella@yahoo.com','Budapest','+3008003496','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1971','miklós.monoczki@yahoo.com','Krakow','+2667202272','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1973','john.salamon@yahoo.com','Krakow','+8517502240','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1991','mateusz.salamon@gmail.com','Krakow','+97718204','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1994','giancarlo.fisichella@hotmail.com','Budapest','+6174594131','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1979','andy.szodoray@hotmail.com','New York','+570264167','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1971','prezmek.beöthy@gmail.com','Krakow','+2457455945','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1971','giancarlo.tompa@yahoo.com','Budapest','+4600996243','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1968','attila.lebron@hotmail.com','Budapest','+8689850638','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1974','matthew.fisichella@gmail.com','Miskolc','+7229081432','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1972','giancarlo.szodoray@yahoo.com','Barcelona','+5927319157','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1978','andy.szodoray@gmail.com','Miskolc','+9093142357','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1971','tamás.carrey@yahoo.com','Krakow','+1889589927','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1982','matthew.carrey@hotmail.com','Krakow','+1551586527','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1987','pál.hamilton@gmail.com','Miskolc','+8038351848','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1977','mateusz.szodoray@gmail.com','Krakow','+6303456615','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1989','tim.salamon@gmail.com','Barcelona','+2510850559','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1967','attila.lebron@gmail.com','Budapest','+4486993998','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1973','giancarlo.monoczki@hotmail.com','Budapest','+5650059254','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1995','miklós.fisichella@gmail.com','Krakow','+5928993104','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1993','prezmek.monoczki@yahoo.com','Budapest','+9280414738','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1990','miklós.lebron@yahoo.com','Budapest','+7274638338','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1967','tim.beöthy@gmail.com','Miskolc','+2346062648','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1971','pál.monoczki@gmail.com','Budapest','+1029218276','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1988','mateusz.obama@yahoo.com','Miskolc','+1507338402','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1982','attila.beöthy@hotmail.com','Barcelona','+5141981613','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1980','matthew.fisichella@hotmail.com','Barcelona','+4674012932','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1985','matthew.molnár@yahoo.com','Miskolc','+1262351612','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1968','sándor.salamon@gmail.com','Budapest','+8005927896','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1969','dániel.obama@gmail.com','New York','+915745723','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1970','pál.carrey@hotmail.com','Barcelona','+6265120263','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1988','mateusz.lebron@gmail.com','Miskolc','+1496297929','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1989','matthew.molnár@gmail.com','Budapest','+1488718562','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1974','matthew.szodoray@gmail.com','Barcelona','+423290115','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1988','tamás.tompa@gmail.com','New York','+2205391515','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1983','john.salamon@hotmail.com','New York','+4328734400','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1967','prezmek.fisichella@gmail.com','Krakow','+2966250176','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1984','miklós.lebron@yahoo.com','New York','+7337574012','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1993','mateusz.salamon@yahoo.com','Krakow','+584337438','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1990','miklós.ciacka@hotmail.com','Krakow','+3945383452','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1977','john.molnár@hotmail.com','Budapest','+5714779509','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1990','pál.tompa@hotmail.com','Budapest','+3927581996','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1978','mateusz.ciacka@hotmail.com','Krakow','+9560133125','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1974','giancarlo.hamilton@yahoo.com','New York','+4742234239','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1976','tamás.lebron@yahoo.com','New York','+8597401316','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1972','giancarlo.molnár@yahoo.com','Miskolc','+8166043215','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1980','giancarlo.tompa@hotmail.com','Krakow','+6081830707','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1970','attila.carrey@hotmail.com','New York','+1486430980','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1965','mateusz.fisichella@yahoo.com','Budapest','+2275459382','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1967','prezmek.ciacka@yahoo.com','Miskolc','+2796752751','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1991','dániel.szodoray@gmail.com','Barcelona','+7831621856','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1995','john.lebron@hotmail.com','Krakow','+1345839913','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1971','tim.szodoray@hotmail.com','Krakow','+4946712653','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1986','john.monoczki@yahoo.com','New York','+8598048800','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1993','tamás.molnár@hotmail.com','Miskolc','+603161514','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1973','prezmek.szodoray@yahoo.com','Miskolc','+5895891616','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1992','miklós.beöthy@gmail.com','Budapest','+497019592','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1987','matthew.salamon@gmail.com','Barcelona','+5382633539','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1971','john.beöthy@yahoo.com','Krakow','+7806384384','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1988','john.molnár@yahoo.com','Budapest','+6064372034','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1981','sándor.obama@gmail.com','Barcelona','+4380796426','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1966','andy.ostafil@hotmail.com','Miskolc','+8195186901','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1992','matthew.fisichella@gmail.com','New York','+3830782548','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1989','miklós.ciacka@yahoo.com','Barcelona','+9164413540','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1995','andy.obama@gmail.com','Barcelona','+8304854110','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1972','sándor.lebron@gmail.com','Barcelona','+9675055334','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1991','attila.salamon@hotmail.com','Miskolc','+2731734647','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1968','giancarlo.salamon@gmail.com','Barcelona','+1990495335','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1983','tamás.carrey@gmail.com','Krakow','+8310171896','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1965','pál.lebron@yahoo.com','Budapest','+8653712064','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1973','miklós.molnár@gmail.com','Krakow','+7838353466','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1994','mateusz.szodoray@gmail.com','Budapest','+1163690358','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1993','john.molnár@yahoo.com','Barcelona','+4436413378','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1973','attila.salamon@yahoo.com','Budapest','+3768455395','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1987','matthew.monoczki@hotmail.com','Krakow','+4634170564','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1973','matthew.lebron@yahoo.com','Barcelona','+3038445705','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1975','tamás.tompa@gmail.com','New York','+6869637332','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1970','matthew.beöthy@gmail.com','Budapest','+8468727893','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1988','dániel.monoczki@gmail.com','New York','+3861820085','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1976','mateusz.monoczki@gmail.com','New York','+5186625320','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1994','tim.beöthy@hotmail.com','Miskolc','+1188316781','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1967','andy.obama@gmail.com','Miskolc','+110637150','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1991','giancarlo.fisichella@gmail.com','Budapest','+960005639','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1977','miklós.lebron@hotmail.com','Krakow','+457493474','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1990','pál.obama@gmail.com','Krakow','+1546718919','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1981','john.ciacka@gmail.com','Barcelona','+3217449239','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1976','matthew.lebron@hotmail.com','Budapest','+6805390122','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1968','john.szodoray@yahoo.com','Krakow','+9638671197','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1975','andy.tompa@yahoo.com','New York','+9813272187','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1975','andy.fisichella@yahoo.com','Miskolc','+5124447699','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1979','sándor.ciacka@hotmail.com','Barcelona','+9505910543','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1970','sándor.ostafil@hotmail.com','Budapest','+5774416787','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1985','attila.tompa@gmail.com','New York','+2818969652','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1977','andy.beöthy@hotmail.com','Miskolc','+8628516165','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1990','dániel.monoczki@gmail.com','Budapest','+1230387659','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1990','andy.fisichella@gmail.com','Miskolc','+7596035923','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1976','matthew.tompa@hotmail.com','Budapest','+7983111735','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1973','pál.beöthy@gmail.com','New York','+1463502899','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1991','john.lebron@yahoo.com','Krakow','+5356933982','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1967','prezmek.lebron@yahoo.com','New York','+9967267080','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1976','giancarlo.ciacka@yahoo.com','Miskolc','+2281367022','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1989','dániel.tompa@hotmail.com','Krakow','+9194291291','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1981','andy.ostafil@hotmail.com','Budapest','+1865556693','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1981','attila.monoczki@yahoo.com','Miskolc','+662260881','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1978','tim.fisichella@hotmail.com','Budapest','+9120380968','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1981','giancarlo.tompa@yahoo.com','Barcelona','+8001366763','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1987','sándor.salamon@hotmail.com','Miskolc','+9475554089','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1990','giancarlo.beöthy@yahoo.com','Miskolc','+8922095401','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1966','tim.szodoray@hotmail.com','Barcelona','+1742624889','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1991','miklós.monoczki@gmail.com','Miskolc','+1086277802','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1968','andy.lebron@hotmail.com','Miskolc','+368130547','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1995','john.fisichella@hotmail.com','Barcelona','+6209017709','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1989','attila.ciacka@yahoo.com','Krakow','+918953933','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1983','tamás.tompa@yahoo.com','Miskolc','+2555880534','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1987','matthew.ciacka@gmail.com','Miskolc','+890177206','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1971','pál.salamon@hotmail.com','Krakow','+5564182614','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1972','tamás.molnár@hotmail.com','Budapest','+7665986141','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1986','attila.hamilton@hotmail.com','Krakow','+7975722650','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1975','john.fisichella@hotmail.com','Barcelona','+8308798387','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1990','giancarlo.carrey@hotmail.com','Budapest','+3817140437','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1972','attila.lebron@gmail.com','Barcelona','+8134694763','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1968','tamás.obama@gmail.com','Barcelona','+1988894984','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1971','miklós.monoczki@gmail.com','Miskolc','+1048829016','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1988','dániel.ostafil@yahoo.com','Budapest','+3813084336','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1967','sándor.carrey@yahoo.com','Krakow','+9802529144','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1993','miklós.monoczki@yahoo.com','Krakow','+9400404061','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1974','giancarlo.ciacka@yahoo.com','Barcelona','+2537657077','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1990','tim.tompa@yahoo.com','Miskolc','+8186504267','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1992','pál.szodoray@gmail.com','Miskolc','+3353271661','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1977','pál.hamilton@hotmail.com','Barcelona','+3218763131','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1980','pál.monoczki@yahoo.com','New York','+473916863','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1981','sándor.hamilton@hotmail.com','Krakow','+630426723','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1967','matthew.molnár@yahoo.com','Miskolc','+984429953','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1975','tamás.beöthy@gmail.com','Budapest','+3633343846','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1978','prezmek.szodoray@gmail.com','Miskolc','+9400198014','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1992','matthew.tompa@hotmail.com','Budapest','+2121563819','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1993','pál.fisichella@yahoo.com','Miskolc','+2385037928','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1971','attila.ciacka@yahoo.com','Barcelona','+6923408185','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1977','tim.carrey@hotmail.com','Budapest','+6808846285','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1993','attila.lebron@hotmail.com','New York','+5596581962','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1995','dániel.beöthy@hotmail.com','Barcelona','+8376487974','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1978','matthew.ostafil@hotmail.com','Miskolc','+5684914742','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1995','miklós.ciacka@yahoo.com','Krakow','+8345997688','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1969','attila.monoczki@hotmail.com','Budapest','+1376734235','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1976','dániel.ciacka@hotmail.com','Barcelona','+7595409978','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1965','mateusz.lebron@hotmail.com','New York','+6397230969','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1986','tim.salamon@gmail.com','Budapest','+7014215707','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1985','miklós.ciacka@gmail.com','Krakow','+5770357009','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1995','john.lebron@gmail.com','Barcelona','+4640615555','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1995','sándor.monoczki@hotmail.com','New York','+3021954211','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1970','sándor.lebron@gmail.com','Budapest','+2932729181','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1981','attila.obama@yahoo.com','Krakow','+5422789569','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1985','pál.ostafil@yahoo.com','New York','+5781798152','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1991','john.ciacka@gmail.com','New York','+1649168130','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1987','matthew.fisichella@yahoo.com','Krakow','+591226941','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1983','andy.ostafil@gmail.com','New York','+7782146860','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1984','dániel.carrey@hotmail.com','Miskolc','+5434680359','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1986','miklós.beöthy@hotmail.com','Miskolc','+7189603388','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1966','tamás.monoczki@yahoo.com','Barcelona','+9236238919','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1972','sándor.carrey@hotmail.com','Barcelona','+5289404495','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1990','tim.obama@yahoo.com','Barcelona','+2348011812','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1969','attila.molnár@hotmail.com','Barcelona','+2480834219','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1991','tim.monoczki@yahoo.com','Krakow','+8294327487','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1972','john.monoczki@gmail.com','Miskolc','+9689315075','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1988','sándor.tompa@hotmail.com','Miskolc','+829369644','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1971','pál.fisichella@hotmail.com','Budapest','+673432181','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1977','sándor.molnár@gmail.com','New York','+3714952882','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1982','dániel.ciacka@hotmail.com','Budapest','+7544210103','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1965','attila.carrey@gmail.com','New York','+3180828387','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1978','tamás.ostafil@gmail.com','Krakow','+3597235238','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1974','tim.tompa@gmail.com','Barcelona','+740121745','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1985','miklós.salamon@gmail.com','New York','+3065021192','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1993','mateusz.carrey@yahoo.com','Miskolc','+8926281101','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1991','giancarlo.ostafil@gmail.com','Krakow','+2647744220','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1975','miklós.szodoray@gmail.com','New York','+8356110237','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1975','matthew.lebron@hotmail.com','New York','+5432454526','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1988','miklós.ciacka@hotmail.com','New York','+6940430502','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1980','attila.salamon@hotmail.com','Miskolc','+766650525','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1995','miklós.carrey@gmail.com','Budapest','+4510380185','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1995','prezmek.szodoray@gmail.com','New York','+9262207618','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1985','john.hamilton@hotmail.com','Krakow','+703134809','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1976','andy.tompa@hotmail.com','New York','+2966860393','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1974','mateusz.ciacka@hotmail.com','Krakow','+4030174824','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1978','mateusz.fisichella@gmail.com','Budapest','+4789035870','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1982','tim.hamilton@gmail.com','Budapest','+4634138839','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1973','prezmek.molnár@gmail.com','Krakow','+8845752213','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1982','giancarlo.carrey@yahoo.com','Budapest','+431688235','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1968','andy.molnár@hotmail.com','Krakow','+872246864','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1995','john.obama@hotmail.com','Barcelona','+6944620899','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1971','dániel.obama@gmail.com','Krakow','+3453338291','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1983','prezmek.beöthy@hotmail.com','Miskolc','+6652614589','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1971','matthew.molnár@gmail.com','Budapest','+4462835025','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1991','tim.tompa@gmail.com','Barcelona','+5858263763','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1977','attila.szodoray@yahoo.com','Krakow','+4448443815','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1980','andy.szodoray@hotmail.com','Krakow','+5430561216','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1970','sándor.szodoray@yahoo.com','Miskolc','+6591640630','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1966','john.tompa@gmail.com','Miskolc','+6285379885','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1995','john.molnár@gmail.com','Krakow','+8449595951','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1982','tim.carrey@yahoo.com','Barcelona','+7402264146','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1968','giancarlo.beöthy@hotmail.com','Miskolc','+8636354307','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1986','prezmek.ciacka@yahoo.com','Miskolc','+5158107016','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1977','giancarlo.hamilton@yahoo.com','New York','+1717194406','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1971','andy.hamilton@gmail.com','Budapest','+7823152139','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1989','attila.lebron@hotmail.com','New York','+2796685877','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1989','mateusz.obama@yahoo.com','New York','+1870220244','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1973','prezmek.fisichella@yahoo.com','Barcelona','+256019485','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1980','miklós.molnár@yahoo.com','Budapest','+6318944591','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1973','mateusz.carrey@yahoo.com','Budapest','+8884399527','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1971','dániel.obama@yahoo.com','Barcelona','+6926161340','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1995','sándor.fisichella@yahoo.com','New York','+708102814','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1977','tim.ciacka@hotmail.com','Miskolc','+238936031','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1975','matthew.ciacka@yahoo.com','Miskolc','+2346254725','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1982','matthew.lebron@hotmail.com','Budapest','+4320092314','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1980','tim.ostafil@yahoo.com','Barcelona','+698730996','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1972','tamás.ciacka@hotmail.com','New York','+7848297624','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1970','andy.lebron@gmail.com','Krakow','+2076110574','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1970','miklós.carrey@yahoo.com','Krakow','+8908368555','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1983','giancarlo.fisichella@hotmail.com','Barcelona','+8055383329','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1965','sándor.tompa@hotmail.com','Barcelona','+5720322198','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1975','prezmek.szodoray@hotmail.com','Barcelona','+1507828595','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1994','prezmek.salamon@yahoo.com','Barcelona','+7742508623','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1980','tamás.salamon@gmail.com','New York','+2986716101','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1981','mateusz.ciacka@hotmail.com','Krakow','+5030971815','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1988','tamás.molnár@yahoo.com','New York','+6748468260','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1991','attila.tompa@yahoo.com','Budapest','+8337411916','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1986','mateusz.tompa@yahoo.com','Krakow','+4023881013','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1980','john.molnár@yahoo.com','New York','+7938025506','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1974','john.ciacka@gmail.com','Barcelona','+6867396680','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1984','tamás.lebron@yahoo.com','Budapest','+2745378075','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1980','attila.salamon@gmail.com','Miskolc','+1302116864','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1984','pál.hamilton@yahoo.com','Barcelona','+3011090383','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1990','john.ostafil@gmail.com','Miskolc','+9087155403','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1969','tamás.salamon@hotmail.com','Krakow','+9469192305','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1969','matthew.beöthy@gmail.com','Budapest','+3117520609','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1990','prezmek.ciacka@gmail.com','Miskolc','+993237273','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1977','tamás.szodoray@gmail.com','Budapest','+1800077028','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1983','dániel.tompa@hotmail.com','New York','+5425915610','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1989','prezmek.molnár@gmail.com','Budapest','+9965311462','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1978','attila.szodoray@yahoo.com','Budapest','+2527183983','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1969','dániel.szodoray@yahoo.com','Krakow','+886049729','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1969','giancarlo.ostafil@gmail.com','Miskolc','+834738945','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1972','prezmek.ciacka@hotmail.com','Budapest','+7911205508','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1967','miklós.tompa@gmail.com','Krakow','+5544647782','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1977','matthew.molnár@gmail.com','Miskolc','+2765611356','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1970','sándor.molnár@hotmail.com','Miskolc','+3602092481','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1983','john.beöthy@yahoo.com','Krakow','+3696080029','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1972','dániel.tompa@hotmail.com','Miskolc','+6199422437','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1990','andy.obama@hotmail.com','Krakow','+7723695297','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1985','john.monoczki@yahoo.com','Miskolc','+6019448221','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1973','prezmek.fisichella@gmail.com','Krakow','+2463576707','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1968','sándor.ostafil@hotmail.com','Krakow','+7776850223','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1984','matthew.molnár@yahoo.com','Miskolc','+2521398492','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1989','dániel.beöthy@yahoo.com','Krakow','+1983847771','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1979','pál.lebron@yahoo.com','Krakow','+3424828902','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1987','john.salamon@hotmail.com','Krakow','+6157606157','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1989','miklós.monoczki@gmail.com','Barcelona','+4135351531','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1976','pál.tompa@yahoo.com','Barcelona','+5885372697','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1965','prezmek.ciacka@gmail.com','Budapest','+5473065217','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1980','john.beöthy@yahoo.com','Barcelona','+4859477940','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1987','pál.molnár@gmail.com','Barcelona','+1584957574','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1975','dániel.ostafil@yahoo.com','Krakow','+2108681035','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1966','tamás.hamilton@gmail.com','New York','+2208910696','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1990','john.fisichella@gmail.com','Budapest','+5967293844','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1989','tim.fisichella@gmail.com','Barcelona','+166159617','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1977','tamás.obama@hotmail.com','New York','+699648065','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1991','sándor.obama@gmail.com','Barcelona','+8934840977','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1972','andy.beöthy@gmail.com','New York','+5028550966','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1989','andy.hamilton@hotmail.com','New York','+7739812438','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1992','pál.salamon@hotmail.com','Miskolc','+134626756','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1976','dániel.lebron@gmail.com','New York','+880121808','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1971','pál.szodoray@yahoo.com','New York','+4492678909','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1973','giancarlo.tompa@gmail.com','New York','+5650723401','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1968','matthew.salamon@hotmail.com','Barcelona','+4024649313','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1975','matthew.molnár@gmail.com','New York','+4277280560','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1977','attila.ostafil@hotmail.com','Barcelona','+5490108797','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1984','sándor.carrey@gmail.com','Miskolc','+5980377955','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1992','prezmek.carrey@yahoo.com','Budapest','+822782472','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1977','sándor.obama@yahoo.com','Krakow','+941135864','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1991','giancarlo.szodoray@yahoo.com','Krakow','+6319104437','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1983','andy.monoczki@hotmail.com','Miskolc','+5862272256','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1992','andy.carrey@yahoo.com','Miskolc','+861302617','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1988','john.obama@hotmail.com','Krakow','+715059785','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1976','prezmek.tompa@gmail.com','New York','+10888496','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1968','attila.obama@gmail.com','Miskolc','+2359044714','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1992','sándor.carrey@yahoo.com','Budapest','+5985705092','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1968','matthew.szodoray@yahoo.com','Barcelona','+491718097','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1994','tamás.beöthy@yahoo.com','New York','+340552659','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1989','sándor.lebron@hotmail.com','Krakow','+2849314085','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1986','attila.hamilton@hotmail.com','Budapest','+5798186394','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1968','mateusz.szodoray@yahoo.com','Budapest','+81729258','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1970','attila.beöthy@yahoo.com','Krakow','+5622014158','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1967','prezmek.monoczki@gmail.com','Miskolc','+8562803467','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1982','andy.hamilton@gmail.com','Budapest','+2158859321','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1966','giancarlo.tompa@yahoo.com','Budapest','+2271818073','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1989','tamás.monoczki@yahoo.com','Miskolc','+700726758','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1966','tim.beöthy@gmail.com','Budapest','+5579232195','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1967','sándor.obama@gmail.com','Krakow','+7387989792','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1989','tim.hamilton@gmail.com','Krakow','+7113444001','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1979','john.fisichella@hotmail.com','Barcelona','+7690899409','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1970','pál.szodoray@yahoo.com','New York','+6394925911','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1974','dániel.molnár@yahoo.com','Miskolc','+7440121527','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1969','attila.salamon@yahoo.com','Krakow','+4310815545','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1967','dániel.tompa@hotmail.com','Miskolc','+3978155259','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1989','dániel.fisichella@yahoo.com','Barcelona','+1947198917','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1993','attila.hamilton@hotmail.com','Miskolc','+2009923895','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1979','sándor.molnár@yahoo.com','Miskolc','+5396651298','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1974','tim.salamon@yahoo.com','Miskolc','+218818941','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1968','john.hamilton@hotmail.com','Barcelona','+806791590','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1977','mateusz.ostafil@hotmail.com','Krakow','+7927585676','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1978','prezmek.beöthy@hotmail.com','Krakow','+8142944523','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1992','attila.salamon@gmail.com','Budapest','+5123321495','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1982','tim.ostafil@hotmail.com','Krakow','+3949354815','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1993','tim.hamilton@hotmail.com','Krakow','+6415714374','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1968','andy.fisichella@hotmail.com','New York','+6719065129','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1965','attila.carrey@gmail.com','Miskolc','+618394993','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1990','tim.molnár@yahoo.com','New York','+5697345175','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1987','miklós.beöthy@yahoo.com','Barcelona','+2676851488','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1980','tamás.monoczki@gmail.com','New York','+4594459602','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1980','giancarlo.szodoray@gmail.com','Krakow','+5187149212','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1988','prezmek.hamilton@yahoo.com','Miskolc','+4827656372','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1982','sándor.lebron@yahoo.com','New York','+4577077689','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1973','miklós.szodoray@yahoo.com','Miskolc','+943816347','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1991','sándor.carrey@hotmail.com','Miskolc','+5036164629','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1990','matthew.carrey@hotmail.com','Miskolc','+9918498636','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1972','dániel.hamilton@gmail.com','Budapest','+4678625261','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1981','sándor.molnár@hotmail.com','Budapest','+4314469282','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1975','john.tompa@hotmail.com','Budapest','+8883318861','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1982','john.monoczki@hotmail.com','Krakow','+5379950007','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1973','miklós.szodoray@yahoo.com','Barcelona','+9018373205','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1990','pál.fisichella@hotmail.com','Budapest','+4288661984','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1976','mateusz.carrey@gmail.com','Miskolc','+7351585883','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1985','attila.szodoray@gmail.com','New York','+4383211910','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1976','prezmek.tompa@hotmail.com','Miskolc','+3354775255','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1985','mateusz.szodoray@hotmail.com','Krakow','+921365610','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1983','pál.ciacka@gmail.com','Barcelona','+3845346207','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1986','pál.ostafil@hotmail.com','Budapest','+706077620','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1986','mateusz.salamon@hotmail.com','Budapest','+5848756705','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1977','andy.lebron@gmail.com','New York','+15004394','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1977','sándor.tompa@yahoo.com','Krakow','+5040547420','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1980','miklós.salamon@yahoo.com','Krakow','+2807803785','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1965','prezmek.szodoray@yahoo.com','Krakow','+7676455335','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1991','andy.fisichella@gmail.com','Krakow','+3951871469','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1966','dániel.fisichella@hotmail.com','Krakow','+8838946188','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1971','pál.tompa@yahoo.com','Budapest','+3678820376','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1988','tamás.szodoray@hotmail.com','Miskolc','+3682054008','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1965','pál.ostafil@yahoo.com','Krakow','+536449429','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1984','attila.salamon@hotmail.com','Barcelona','+5882579290','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1982','tim.ostafil@yahoo.com','Barcelona','+427740510','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1982','pál.monoczki@gmail.com','Miskolc','+9223776676','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1973','john.monoczki@gmail.com','Budapest','+4130255850','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1978','matthew.tompa@hotmail.com','Barcelona','+7104533831','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1976','dániel.lebron@hotmail.com','Budapest','+1997411054','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1986','miklós.tompa@gmail.com','Budapest','+9151782343','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1969','andy.carrey@yahoo.com','Budapest','+2189708025','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1989','mateusz.obama@hotmail.com','New York','+5876799722','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1987','attila.ostafil@hotmail.com','Budapest','+4585964536','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1980','prezmek.monoczki@yahoo.com','Budapest','+6997473279','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1984','john.obama@yahoo.com','Barcelona','+9488900464','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1994','prezmek.salamon@hotmail.com','Miskolc','+1452977226','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1981','mateusz.salamon@hotmail.com','Budapest','+6998092426','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1967','mateusz.lebron@yahoo.com','Barcelona','+7723492842','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1986','pál.monoczki@gmail.com','Krakow','+1898269392','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1974','mateusz.szodoray@hotmail.com','Krakow','+5369331139','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1979','dániel.salamon@yahoo.com','New York','+8768629723','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1988','tamás.hamilton@hotmail.com','Krakow','+8299425178','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1979','mateusz.fisichella@yahoo.com','Krakow','+9764257762','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1995','sándor.salamon@gmail.com','Budapest','+425994298','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1993','pál.beöthy@gmail.com','Krakow','+9674536766','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1993','john.salamon@hotmail.com','Budapest','+1233319595','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1987','sándor.fisichella@yahoo.com','New York','+5523639219','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1992','giancarlo.fisichella@gmail.com','Miskolc','+5273834566','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1968','matthew.obama@yahoo.com','Barcelona','+6280175660','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1985','matthew.hamilton@yahoo.com','Miskolc','+5719327746','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1969','matthew.hamilton@yahoo.com','Barcelona','+3772977517','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1979','sándor.molnár@yahoo.com','New York','+8294572803','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1965','andy.hamilton@yahoo.com','Miskolc','+7733399779','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1971','prezmek.obama@hotmail.com','Miskolc','+4926116079','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1980','prezmek.monoczki@hotmail.com','Krakow','+7273957523','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1988','attila.ostafil@yahoo.com','New York','+912741985','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1986','john.molnár@gmail.com','Krakow','+3207245304','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1979','giancarlo.carrey@gmail.com','New York','+907975290','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1987','andy.tompa@hotmail.com','Krakow','+8667518409','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1988','mateusz.lebron@gmail.com','Barcelona','+2860135442','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1965','sándor.beöthy@yahoo.com','Krakow','+9006022822','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1983','tamás.szodoray@gmail.com','Krakow','+1995238403','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1980','dániel.lebron@hotmail.com','Barcelona','+5827367146','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1991','mateusz.fisichella@gmail.com','Barcelona','+835964433','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1991','sándor.szodoray@yahoo.com','Budapest','+9606288316','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1968','miklós.ciacka@hotmail.com','Krakow','+2429835848','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1981','tim.carrey@gmail.com','Krakow','+1545060878','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1965','andy.beöthy@yahoo.com','Barcelona','+4729051587','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1972','giancarlo.molnár@hotmail.com','Miskolc','+47093205','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1994','prezmek.molnár@gmail.com','Miskolc','+4283144637','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1986','andy.ciacka@yahoo.com','Krakow','+7135696621','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1987','matthew.ciacka@hotmail.com','Miskolc','+685981304','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1980','tamás.ostafil@gmail.com','Krakow','+1302548646','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1975','dániel.monoczki@hotmail.com','New York','+3071572819','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1993','mateusz.fisichella@yahoo.com','Miskolc','+2610134138','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1993','tim.lebron@gmail.com','Budapest','+4161973048','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1980','tamás.molnár@yahoo.com','New York','+720478741','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1989','matthew.ciacka@hotmail.com','Miskolc','+1975675277','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1980','john.beöthy@gmail.com','Budapest','+5856879180','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1995','miklós.carrey@yahoo.com','Miskolc','+9706065608','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1972','giancarlo.lebron@hotmail.com','Krakow','+3219667875','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1971','mateusz.tompa@hotmail.com','Budapest','+805480333','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1988','mateusz.hamilton@gmail.com','New York','+1050556316','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1993','tim.beöthy@yahoo.com','New York','+4326482681','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1985','mateusz.molnár@gmail.com','Barcelona','+3198654048','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1978','sándor.fisichella@gmail.com','Barcelona','+1542810834','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1971','andy.monoczki@hotmail.com','Barcelona','+3029512867','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1973','giancarlo.fisichella@yahoo.com','Krakow','+214014787','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1974','prezmek.salamon@yahoo.com','New York','+6495383369','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1967','john.beöthy@yahoo.com','Krakow','+5933311272','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1968','sándor.salamon@hotmail.com','New York','+7702169199','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1995','giancarlo.hamilton@hotmail.com','Barcelona','+6131108520','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1978','andy.beöthy@yahoo.com','Barcelona','+2398279690','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1976','matthew.obama@hotmail.com','New York','+6862298744','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1981','attila.fisichella@gmail.com','Krakow','+5323503677','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1977','attila.szodoray@gmail.com','Barcelona','+9368743367','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1983','giancarlo.beöthy@yahoo.com','Budapest','+2128816617','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1988','pál.ciacka@gmail.com','Miskolc','+1698792277','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1986','tim.ostafil@gmail.com','Budapest','+1402833508','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1992','andy.monoczki@yahoo.com','Krakow','+6961724661','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1974','tim.beöthy@gmail.com','Barcelona','+5397174499','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1974','prezmek.fisichella@yahoo.com','Krakow','+7445543994','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1992','sándor.carrey@gmail.com','New York','+4099140235','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1965','giancarlo.monoczki@yahoo.com','Barcelona','+2073785868','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1991','matthew.ostafil@hotmail.com','Krakow','+8631379556','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1993','pál.beöthy@yahoo.com','Krakow','+8583332064','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1993','tamás.lebron@hotmail.com','Barcelona','+7670847332','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1977','tim.molnár@gmail.com','Budapest','+8511617971','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1988','dániel.ciacka@gmail.com','Barcelona','+5720902572','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1990','pál.carrey@gmail.com','New York','+8961984396','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1970','sándor.molnár@yahoo.com','New York','+7619860946','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1987','mateusz.ciacka@gmail.com','New York','+2377002893','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1981','matthew.molnár@hotmail.com','Barcelona','+7164606430','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1975','miklós.tompa@hotmail.com','Barcelona','+3236561498','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1984','tim.lebron@yahoo.com','Barcelona','+4374788964','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1972','tamás.beöthy@hotmail.com','Krakow','+9616803325','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1979','matthew.beöthy@hotmail.com','Krakow','+2653370754','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1981','attila.obama@gmail.com','Krakow','+1167526868','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1972','pál.ostafil@gmail.com','Barcelona','+1534667501','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1978','miklós.lebron@hotmail.com','New York','+423695799','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1965','mateusz.ostafil@gmail.com','Budapest','+6114419076','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1965','mateusz.tompa@yahoo.com','Barcelona','+6860068095','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1975','tim.beöthy@gmail.com','Budapest','+6108937409','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1987','pál.carrey@gmail.com','Miskolc','+7045041419','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1985','miklós.salamon@hotmail.com','Miskolc','+412868354','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1982','andy.monoczki@yahoo.com','Budapest','+7612816856','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1995','mateusz.lebron@yahoo.com','Barcelona','+7309534511','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1988','matthew.molnár@yahoo.com','Krakow','+4931406480','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1977','andy.ostafil@yahoo.com','Miskolc','+4807576676','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1985','sándor.ciacka@hotmail.com','Barcelona','+5610492017','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1975','miklós.hamilton@gmail.com','Budapest','+1095018120','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1993','andy.ciacka@hotmail.com','New York','+4342792810','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1995','tamás.ostafil@hotmail.com','New York','+1421861201','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1976','sándor.monoczki@yahoo.com','Miskolc','+321145447','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1995','tim.obama@hotmail.com','Budapest','+8708155136','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1968','matthew.ostafil@gmail.com','Krakow','+5997686230','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1994','andy.carrey@gmail.com','Krakow','+233957846','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1974','attila.hamilton@gmail.com','Miskolc','+5617481515','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1989','dániel.obama@yahoo.com','Krakow','+716877016','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1981','miklós.molnár@hotmail.com','Miskolc','+8223631213','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1990','john.szodoray@hotmail.com','Miskolc','+1457664932','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1987','mateusz.ostafil@hotmail.com','Miskolc','+1819953661','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1965','giancarlo.szodoray@gmail.com','Miskolc','+6442713500','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1972','attila.hamilton@gmail.com','New York','+978507066','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1984','mateusz.hamilton@hotmail.com','Budapest','+6271263349','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1980','matthew.molnár@yahoo.com','Budapest','+8149458281','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1971','tamás.salamon@hotmail.com','Miskolc','+6069228467','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1987','andy.monoczki@gmail.com','Barcelona','+7865244712','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1988','miklós.obama@gmail.com','Krakow','+7137014148','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1966','john.beöthy@hotmail.com','Barcelona','+9789149326','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1972','mateusz.fisichella@yahoo.com','Miskolc','+7455385575','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1977','tamás.lebron@yahoo.com','Krakow','+1421457278','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1965','john.ostafil@gmail.com','Budapest','+8698021222','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1971','dániel.tompa@hotmail.com','New York','+8092611131','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1988','matthew.lebron@yahoo.com','New York','+4443138509','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1971','attila.lebron@yahoo.com','New York','+3193105828','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1968','dániel.salamon@yahoo.com','New York','+6141690114','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1972','attila.ostafil@gmail.com','New York','+3634147103','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1967','sándor.ciacka@yahoo.com','Barcelona','+6703127847','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1971','tim.ciacka@gmail.com','New York','+2128631451','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1984','sándor.szodoray@hotmail.com','New York','+8755149288','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1981','john.tompa@yahoo.com','Krakow','+5243208950','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1992','tim.ostafil@gmail.com','New York','+7017594275','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1972','prezmek.beöthy@yahoo.com','Budapest','+9600104753','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1986','attila.tompa@gmail.com','New York','+8933118514','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1978','tim.tompa@yahoo.com','Krakow','+1828444908','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1974','attila.obama@yahoo.com','New York','+3098850287','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1989','pál.fisichella@hotmail.com','Krakow','+9704082536','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1973','miklós.monoczki@gmail.com','Krakow','+2195174568','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1987','pál.ostafil@yahoo.com','Miskolc','+2728750205','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1969','john.tompa@hotmail.com','Barcelona','+9912296340','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1994','john.lebron@hotmail.com','Krakow','+6297563515','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1982','dániel.lebron@gmail.com','Miskolc','+2261446074','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1969','attila.tompa@gmail.com','Budapest','+9564644761','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1987','attila.ostafil@yahoo.com','New York','+7191951615','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1975','sándor.monoczki@gmail.com','Barcelona','+4094896587','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1995','sándor.ciacka@yahoo.com','New York','+4479826392','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1982','mateusz.tompa@hotmail.com','Barcelona','+7678912486','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1971','john.fisichella@gmail.com','Krakow','+7142052208','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1992','giancarlo.obama@gmail.com','Krakow','+764953373','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1992','tamás.tompa@hotmail.com','Miskolc','+5736002803','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1979','dániel.beöthy@gmail.com','Barcelona','+4036437393','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1976','andy.beöthy@gmail.com','Budapest','+7114643210','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1995','tim.ostafil@yahoo.com','Miskolc','+6917132799','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1992','pál.salamon@gmail.com','Krakow','+6396021575','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1971','tim.beöthy@hotmail.com','Barcelona','+1394546929','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1970','mateusz.lebron@yahoo.com','Krakow','+6452898674','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1966','miklós.molnár@gmail.com','Krakow','+6346983749','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1974','prezmek.salamon@gmail.com','Budapest','+7461970681','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1967','pál.carrey@yahoo.com','Krakow','+7059736941','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1983','attila.molnár@yahoo.com','New York','+4301814509','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1975','john.molnár@yahoo.com','Miskolc','+4580978950','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1984','sándor.obama@gmail.com','New York','+5295045345','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1988','sándor.salamon@yahoo.com','Barcelona','+8002852764','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1995','dániel.hamilton@hotmail.com','New York','+2029641966','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1971','sándor.monoczki@gmail.com','Budapest','+6894624053','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1985','miklós.carrey@yahoo.com','New York','+477719833','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1984','sándor.obama@gmail.com','Krakow','+2493582822','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1972','sándor.beöthy@hotmail.com','New York','+624270928','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1968','dániel.beöthy@hotmail.com','Miskolc','+2855507444','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1986','tamás.tompa@hotmail.com','Barcelona','+252882304','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1980','attila.tompa@hotmail.com','Barcelona','+5003756976','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1973','matthew.hamilton@yahoo.com','Miskolc','+8998226599','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1975','tamás.ciacka@hotmail.com','New York','+93660210','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1979','tim.molnár@hotmail.com','Barcelona','+8132954185','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1992','sándor.beöthy@hotmail.com','Miskolc','+2248155494','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1967','prezmek.lebron@hotmail.com','Miskolc','+5411301294','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1990','tim.salamon@hotmail.com','Krakow','+6469468635','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1987','matthew.beöthy@gmail.com','Barcelona','+4211548667','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1980','dániel.salamon@gmail.com','Barcelona','+9062764731','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1984','matthew.salamon@hotmail.com','Budapest','+2530507092','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1989','miklós.obama@gmail.com','Budapest','+6678860909','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1994','miklós.beöthy@gmail.com','New York','+8025122535','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1994','matthew.monoczki@hotmail.com','Miskolc','+1122868701','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1977','dániel.ciacka@hotmail.com','Krakow','+8439126347','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1988','attila.tompa@gmail.com','Krakow','+809986276','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1967','tamás.szodoray@gmail.com','Barcelona','+8428709402','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1982','attila.ostafil@gmail.com','Budapest','+771564868','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1990','dániel.molnár@gmail.com','Miskolc','+4237056429','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1980','sándor.lebron@hotmail.com','Miskolc','+2116201873','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1978','mateusz.tompa@gmail.com','Budapest','+226367407','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1972','andy.szodoray@gmail.com','Krakow','+788825218','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1986','prezmek.fisichella@yahoo.com','Krakow','+5361443539','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1976','sándor.szodoray@yahoo.com','Miskolc','+1695120517','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1980','mateusz.tompa@yahoo.com','Budapest','+9697596088','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1974','attila.hamilton@yahoo.com','Miskolc','+3031665169','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1972','mateusz.tompa@hotmail.com','Miskolc','+8652515312','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1968','tamás.molnár@gmail.com','Barcelona','+5761109664','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1974','pál.obama@hotmail.com','New York','+6251313469','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1971','prezmek.ostafil@gmail.com','Krakow','+3754817994','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1967','giancarlo.ostafil@yahoo.com','Barcelona','+2946752808','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1982','attila.molnár@hotmail.com','Miskolc','+3813919064','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1976','miklós.molnár@yahoo.com','Barcelona','+7293211279','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1986','prezmek.tompa@hotmail.com','Miskolc','+6194837404','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1968','andy.carrey@yahoo.com','Krakow','+4929399413','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1988','matthew.molnár@hotmail.com','Miskolc','+4746499853','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1993','miklós.salamon@gmail.com','Barcelona','+1394369811','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1993','sándor.salamon@hotmail.com','Miskolc','+6680338836','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1991','john.molnár@gmail.com','Budapest','+2097137240','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1976','sándor.hamilton@hotmail.com','New York','+8049486765','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1988','prezmek.beöthy@hotmail.com','Miskolc','+9560476545','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1989','prezmek.carrey@hotmail.com','New York','+298736438','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1968','giancarlo.tompa@gmail.com','Barcelona','+9406009242','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1985','miklós.tompa@gmail.com','New York','+625079662','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1988','andy.monoczki@hotmail.com','Budapest','+8905400399','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1973','giancarlo.molnár@yahoo.com','New York','+2272340522','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1987','mateusz.molnár@yahoo.com','New York','+9502026152','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1986','andy.monoczki@gmail.com','Krakow','+6110574602','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1972','prezmek.molnár@gmail.com','Krakow','+6983202212','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1990','tim.lebron@gmail.com','New York','+9798359578','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1971','giancarlo.fisichella@hotmail.com','New York','+8595582667','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1980','tim.tompa@yahoo.com','Budapest','+7203369311','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1977','tamás.ostafil@gmail.com','Barcelona','+2028758775','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1974','matthew.ciacka@yahoo.com','Barcelona','+6217035901','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1982','tamás.salamon@gmail.com','Krakow','+3426824895','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1989','sándor.szodoray@yahoo.com','Krakow','+6084671469','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1970','andy.ostafil@yahoo.com','New York','+4308816884','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1977','sándor.szodoray@yahoo.com','Miskolc','+7188063339','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1982','john.szodoray@yahoo.com','Krakow','+5932887157','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1978','giancarlo.fisichella@yahoo.com','Barcelona','+4700512688','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1969','mateusz.beöthy@gmail.com','New York','+3581093270','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1985','andy.hamilton@hotmail.com','Barcelona','+9013470145','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1987','dániel.salamon@yahoo.com','Miskolc','+5047012870','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1985','john.monoczki@hotmail.com','Budapest','+8660703018','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1984','andy.monoczki@yahoo.com','New York','+9010134628','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1983','tim.ostafil@gmail.com','Miskolc','+9287061875','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1987','attila.obama@gmail.com','New York','+4094093423','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1977','dániel.fisichella@yahoo.com','Budapest','+9071786402','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1977','andy.hamilton@yahoo.com','Barcelona','+1417357937','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1974','mateusz.lebron@gmail.com','Miskolc','+9502445406','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1993','john.tompa@yahoo.com','New York','+511369700','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1972','tim.szodoray@yahoo.com','Budapest','+9379998045','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1966','matthew.tompa@yahoo.com','Krakow','+2388539348','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1985','mateusz.monoczki@yahoo.com','Budapest','+8256558196','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1968','prezmek.hamilton@yahoo.com','Budapest','+3606947963','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1967','prezmek.monoczki@hotmail.com','Miskolc','+1015297567','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1973','tamás.fisichella@gmail.com','New York','+4309729921','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1980','miklós.ostafil@hotmail.com','Krakow','+1211595404','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1965','prezmek.salamon@hotmail.com','New York','+2771945748','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1989','andy.obama@yahoo.com','Miskolc','+695346784','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1988','attila.hamilton@hotmail.com','New York','+8953391042','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1971','john.salamon@yahoo.com','Miskolc','+7270231092','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1989','miklós.beöthy@gmail.com','Budapest','+5769424929','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1978','tim.carrey@hotmail.com','Krakow','+1089447081','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1990','pál.beöthy@gmail.com','Krakow','+5053599909','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1984','prezmek.beöthy@gmail.com','Barcelona','+2746083901','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1981','mateusz.fisichella@hotmail.com','New York','+5416120306','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1987','giancarlo.hamilton@gmail.com','Budapest','+3918137641','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1968','mateusz.lebron@hotmail.com','Barcelona','+2935746105','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1982','pál.fisichella@gmail.com','Miskolc','+3910379554','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1974','miklós.carrey@hotmail.com','Miskolc','+7525252698','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1978','pál.ciacka@gmail.com','New York','+4260784016','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1976','tamás.monoczki@gmail.com','Miskolc','+9950779478','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1991','matthew.ostafil@yahoo.com','New York','+361149063','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1980','mateusz.obama@hotmail.com','Miskolc','+9648153779','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1990','matthew.molnár@yahoo.com','Miskolc','+4660319265','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1993','andy.fisichella@hotmail.com','New York','+3047605649','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1994','dániel.szodoray@gmail.com','Miskolc','+8897565179','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1990','andy.salamon@yahoo.com','Budapest','+1379322419','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1992','john.molnár@hotmail.com','Barcelona','+8021399495','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1980','john.beöthy@gmail.com','New York','+2285646965','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1981','attila.tompa@hotmail.com','Barcelona','+8678949701','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1988','dániel.carrey@gmail.com','New York','+1895425628','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1993','john.fisichella@hotmail.com','Budapest','+456053393','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1989','giancarlo.monoczki@gmail.com','Miskolc','+431022992','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1982','giancarlo.hamilton@hotmail.com','New York','+267528949','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1967','sándor.fisichella@hotmail.com','Miskolc','+2567189768','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1984','miklós.szodoray@hotmail.com','Budapest','+4384799742','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1968','prezmek.ciacka@hotmail.com','Miskolc','+7751826284','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1967','prezmek.salamon@gmail.com','Krakow','+6207522387','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1981','tim.beöthy@hotmail.com','Miskolc','+5788338175','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1989','andy.tompa@yahoo.com','Krakow','+8615155194','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1984','pál.ostafil@gmail.com','Miskolc','+8880870201','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1982','prezmek.obama@gmail.com','New York','+5682559396','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1985','andy.tompa@gmail.com','Budapest','+4011451252','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1970','andy.salamon@hotmail.com','Budapest','+6002750170','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1979','dániel.monoczki@gmail.com','Miskolc','+8567903097','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1972','john.obama@gmail.com','Barcelona','+4116839788','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1969','pál.tompa@hotmail.com','Budapest','+3484528699','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1975','sándor.hamilton@yahoo.com','Miskolc','+8442402187','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1974','mateusz.beöthy@yahoo.com','Krakow','+4600453949','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1979','attila.fisichella@hotmail.com','Budapest','+9969546638','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1965','giancarlo.szodoray@gmail.com','Krakow','+8372720527','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1968','prezmek.salamon@gmail.com','New York','+2561371385','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1994','giancarlo.molnár@gmail.com','Budapest','+7982191102','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1992','john.monoczki@yahoo.com','Budapest','+3515528512','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1974','mateusz.szodoray@hotmail.com','Miskolc','+2334767887','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1990','giancarlo.lebron@hotmail.com','New York','+1556487951','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1979','tim.carrey@yahoo.com','New York','+7290287443','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1969','sándor.tompa@yahoo.com','Miskolc','+4887856976','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1990','prezmek.szodoray@gmail.com','Krakow','+5781737341','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1970','pál.hamilton@hotmail.com','Barcelona','+20219868','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1990','tamás.ciacka@yahoo.com','Krakow','+6162053977','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1968','miklós.monoczki@gmail.com','Krakow','+3590846065','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1968','prezmek.molnár@yahoo.com','New York','+7351711259','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1986','tim.hamilton@hotmail.com','New York','+9589445675','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1986','john.salamon@gmail.com','New York','+4597424072','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1989','attila.carrey@hotmail.com','Barcelona','+8678440371','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1988','pál.lebron@yahoo.com','Budapest','+6708181849','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1973','miklós.salamon@gmail.com','Barcelona','+4860509599','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1981','sándor.molnár@hotmail.com','Budapest','+3617074990','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1977','andy.tompa@yahoo.com','Miskolc','+2492296028','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1967','prezmek.lebron@yahoo.com','Krakow','+2984042938','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1988','giancarlo.obama@hotmail.com','New York','+2561672612','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1972','mateusz.ostafil@yahoo.com','Miskolc','+6396632595','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1983','prezmek.ciacka@hotmail.com','Krakow','+5255932529','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1965','matthew.ostafil@yahoo.com','New York','+8308423724','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1971','john.hamilton@gmail.com','Miskolc','+7654370767','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1985','mateusz.szodoray@gmail.com','Krakow','+5026140154','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1978','miklós.molnár@yahoo.com','Miskolc','+6483759525','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1989','tim.ostafil@gmail.com','Barcelona','+5510928560','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1983','dániel.lebron@gmail.com','Barcelona','+1304067341','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1977','miklós.carrey@yahoo.com','Krakow','+3849837301','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1970','sándor.tompa@hotmail.com','Budapest','+9397526350','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1977','matthew.szodoray@hotmail.com','Miskolc','+5688640923','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1992','andy.beöthy@gmail.com','New York','+1468905335','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1990','tamás.hamilton@gmail.com','Krakow','+4041241008','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1984','giancarlo.fisichella@gmail.com','Budapest','+5476261006','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1985','sándor.molnár@yahoo.com','Miskolc','+4094290014','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1981','tim.lebron@gmail.com','New York','+6687012677','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1984','tamás.fisichella@yahoo.com','New York','+8299305943','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1995','tamás.carrey@hotmail.com','Barcelona','+8997848912','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1974','tamás.szodoray@hotmail.com','Budapest','+9260505974','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1965','attila.molnár@yahoo.com','Miskolc','+3899816597','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1994','matthew.hamilton@yahoo.com','Miskolc','+4071147628','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1991','prezmek.monoczki@yahoo.com','Barcelona','+5493437635','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1982','miklós.ciacka@hotmail.com','Budapest','+1419918295','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1984','sándor.obama@yahoo.com','Miskolc','+9815696243','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1986','dániel.hamilton@hotmail.com','Budapest','+8340708827','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1966','attila.lebron@gmail.com','Budapest','+2304370151','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1990','tamás.hamilton@hotmail.com','New York','+3226674922','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1978','pál.ciacka@hotmail.com','Budapest','+4851438729','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1989','tamás.salamon@hotmail.com','New York','+6738285554','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1985','prezmek.obama@gmail.com','New York','+5249716264','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1975','mateusz.carrey@yahoo.com','Miskolc','+4879427483','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1981','andy.fisichella@gmail.com','Krakow','+9746629639','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1978','dániel.beöthy@hotmail.com','Krakow','+5181075930','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1984','miklós.molnár@hotmail.com','Barcelona','+1576189838','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1995','tamás.tompa@gmail.com','Miskolc','+851976708','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1990','andy.tompa@gmail.com','Krakow','+7529856100','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1989','sándor.molnár@gmail.com','New York','+6659688636','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1980','matthew.lebron@hotmail.com','Miskolc','+1029791481','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1966','john.fisichella@hotmail.com','New York','+8436835160','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1969','pál.salamon@hotmail.com','Krakow','+3414083618','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1982','prezmek.monoczki@gmail.com','Barcelona','+8517974122','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1979','sándor.lebron@yahoo.com','Miskolc','+7181321460','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1972','pál.lebron@yahoo.com','Miskolc','+1176186575','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1971','tamás.ostafil@hotmail.com','Krakow','+7110848383','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1986','attila.hamilton@yahoo.com','Barcelona','+5527709132','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1986','tamás.ostafil@yahoo.com','Barcelona','+7948914484','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1976','dániel.salamon@yahoo.com','New York','+2665763559','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1976','john.hamilton@hotmail.com','New York','+6023656515','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1970','attila.ciacka@yahoo.com','Krakow','+4655765935','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1986','john.beöthy@gmail.com','New York','+3609014120','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1993','dániel.ostafil@yahoo.com','Barcelona','+5494855062','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1969','john.salamon@hotmail.com','Budapest','+3554759172','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1991','dániel.obama@yahoo.com','New York','+5540106748','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1990','miklós.obama@yahoo.com','Krakow','+7899198955','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1983','attila.obama@gmail.com','Barcelona','+1111018469','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1965','john.lebron@yahoo.com','Krakow','+2614867436','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1981','attila.ciacka@yahoo.com','New York','+3615241886','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1978','mateusz.beöthy@hotmail.com','New York','+607954375','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1987','tamás.fisichella@gmail.com','Barcelona','+2547426973','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1982','dániel.lebron@hotmail.com','Miskolc','+8165006369','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1993','prezmek.lebron@gmail.com','Miskolc','+7469081742','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1972','prezmek.fisichella@hotmail.com','Barcelona','+8989451230','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1980','tim.monoczki@hotmail.com','New York','+9825704273','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1976','pál.molnár@hotmail.com','Krakow','+5064529616','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1979','matthew.ostafil@gmail.com','Budapest','+8964131771','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1980','prezmek.salamon@hotmail.com','New York','+2421064573','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1970','dániel.ostafil@gmail.com','Barcelona','+9230493718','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1969','attila.molnár@gmail.com','Barcelona','+298884428','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1991','attila.beöthy@gmail.com','Krakow','+2227473862','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1985','sándor.szodoray@gmail.com','Barcelona','+1186736526','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1967','attila.molnár@gmail.com','Miskolc','+4439753571','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1993','tim.carrey@yahoo.com','Krakow','+8341759328','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1970','attila.salamon@gmail.com','Miskolc','+1593525890','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1981','matthew.ciacka@gmail.com','Barcelona','+729830214','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1965','dániel.ostafil@gmail.com','New York','+4489469601','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1970','john.ostafil@yahoo.com','Budapest','+9085771330','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1993','tamás.obama@hotmail.com','Krakow','+5760027909','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1982','tamás.monoczki@yahoo.com','Miskolc','+5188960656','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1965','matthew.tompa@yahoo.com','Budapest','+6669568418','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1977','tamás.beöthy@yahoo.com','Krakow','+2219863418','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1982','pál.tompa@hotmail.com','New York','+4238705352','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1971','tim.szodoray@gmail.com','Barcelona','+6850381510','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1981','pál.obama@yahoo.com','Budapest','+501946250','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1980','john.tompa@gmail.com','New York','+7256423753','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1965','dániel.molnár@hotmail.com','New York','+7440294856','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1969','pál.lebron@gmail.com','Budapest','+8740812323','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1967','attila.ostafil@yahoo.com','New York','+23158766','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1995','andy.fisichella@yahoo.com','Krakow','+4098495913','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1988','sándor.fisichella@yahoo.com','New York','+3552424340','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1981','pál.ciacka@hotmail.com','New York','+7408128293','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1985','miklós.obama@gmail.com','New York','+3476498031','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1976','miklós.szodoray@hotmail.com','New York','+180714484','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1971','prezmek.salamon@hotmail.com','Budapest','+670824221','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1993','sándor.tompa@yahoo.com','Krakow','+7176018078','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1967','john.lebron@hotmail.com','Barcelona','+6812451414','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1988','andy.ostafil@yahoo.com','Budapest','+8376061288','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1991','dániel.carrey@yahoo.com','New York','+8081465381','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1994','dániel.carrey@hotmail.com','Budapest','+3745196601','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1974','john.fisichella@gmail.com','Budapest','+2305700622','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1977','matthew.szodoray@yahoo.com','New York','+6441113264','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1974','andy.ciacka@gmail.com','Barcelona','+7635188146','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1970','tim.carrey@hotmail.com','New York','+2859407157','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1984','pál.lebron@hotmail.com','Krakow','+4333977323','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1987','pál.monoczki@yahoo.com','Krakow','+6486809014','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1977','tim.carrey@hotmail.com','Barcelona','+8394444996','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1988','sándor.ostafil@hotmail.com','Budapest','+4122616703','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1995','matthew.ciacka@hotmail.com','Miskolc','+8267517809','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1966','pál.fisichella@hotmail.com','Barcelona','+8801433208','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1968','tim.salamon@hotmail.com','Krakow','+5583610584','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1966','tim.ciacka@hotmail.com','New York','+5222776100','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1979','pál.tompa@yahoo.com','Barcelona','+3579845989','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1992','prezmek.monoczki@gmail.com','Barcelona','+454168124','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1980','matthew.molnár@gmail.com','Budapest','+9268219580','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1994','attila.lebron@yahoo.com','Budapest','+7530224112','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1979','mateusz.lebron@gmail.com','Budapest','+7948640270','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1969','andy.szodoray@gmail.com','Budapest','+8733597037','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1976','matthew.tompa@gmail.com','New York','+7850549873','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1978','andy.beöthy@gmail.com','Miskolc','+9353250737','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1988','john.obama@hotmail.com','Budapest','+9365156695','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1971','mateusz.monoczki@gmail.com','Miskolc','+9413102782','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1989','mateusz.ciacka@hotmail.com','Budapest','+4095233039','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1966','attila.beöthy@gmail.com','Budapest','+2039059058','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1988','john.salamon@yahoo.com','Budapest','+1480489655','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1993','andy.tompa@yahoo.com','Krakow','+6158784571','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1983','prezmek.ostafil@yahoo.com','Miskolc','+8534939937','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1986','prezmek.ostafil@yahoo.com','Miskolc','+7857082215','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1984','pál.monoczki@hotmail.com','Budapest','+2607101028','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1965','john.ostafil@yahoo.com','Miskolc','+2069427071','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1969','prezmek.szodoray@hotmail.com','New York','+1860373177','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1968','matthew.fisichella@gmail.com','Budapest','+6192016455','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1978','andy.carrey@yahoo.com','Barcelona','+9478277144','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1987','andy.salamon@yahoo.com','Budapest','+7389076990','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1966','john.beöthy@gmail.com','Miskolc','+5513203436','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1973','matthew.szodoray@hotmail.com','Budapest','+1006416719','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1995','attila.carrey@hotmail.com','Budapest','+3624621970','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1969','dániel.ostafil@gmail.com','Krakow','+6385107833','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1977','john.ostafil@gmail.com','Krakow','+9549239266','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1969','miklós.lebron@gmail.com','New York','+3208827789','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1978','prezmek.lebron@yahoo.com','Miskolc','+5614083610','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1986','matthew.ciacka@yahoo.com','Miskolc','+2951947440','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1977','andy.salamon@hotmail.com','Miskolc','+7164107574','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1975','andy.molnár@hotmail.com','Krakow','+9185179958','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1982','tamás.carrey@yahoo.com','Barcelona','+899617645','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1977','sándor.hamilton@hotmail.com','Miskolc','+7547969158','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1978','john.lebron@yahoo.com','Budapest','+442644241','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1977','sándor.obama@hotmail.com','Miskolc','+9066085990','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1979','sándor.hamilton@yahoo.com','Miskolc','+5917160590','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1994','matthew.molnár@gmail.com','Barcelona','+284110926','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1972','andy.fisichella@hotmail.com','New York','+8148686289','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1965','pál.obama@hotmail.com','Barcelona','+3268655620','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1984','attila.ciacka@gmail.com','Budapest','+5180669078','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1992','miklós.beöthy@gmail.com','Barcelona','+7707035522','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1967','pál.hamilton@yahoo.com','New York','+343359078','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1988','tamás.hamilton@hotmail.com','New York','+7785707582','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1965','attila.tompa@hotmail.com','Barcelona','+1104319321','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1965','sándor.monoczki@hotmail.com','Miskolc','+5627258557','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1993','tamás.tompa@yahoo.com','Barcelona','+4135208746','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1969','pál.ciacka@hotmail.com','Budapest','+1119323635','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1976','prezmek.lebron@hotmail.com','Krakow','+90140591','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1989','sándor.hamilton@hotmail.com','Krakow','+6782743175','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1969','tim.lebron@yahoo.com','Krakow','+6600849248','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1980','miklós.carrey@hotmail.com','New York','+2134558804','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1985','john.carrey@yahoo.com','Krakow','+7614151936','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1989','dániel.monoczki@gmail.com','New York','+7057591527','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1973','miklós.szodoray@gmail.com','New York','+955229715','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1977','mateusz.szodoray@gmail.com','Barcelona','+5663124828','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1978','miklós.molnár@hotmail.com','Miskolc','+1263303413','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1969','matthew.molnár@gmail.com','Miskolc','+1282590516','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1988','giancarlo.obama@gmail.com','Budapest','+4743410346','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1972','giancarlo.ostafil@gmail.com','Miskolc','+1273449541','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1966','tamás.ciacka@gmail.com','New York','+4488536227','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1970','tim.hamilton@hotmail.com','Budapest','+6375723152','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1967','giancarlo.hamilton@yahoo.com','Krakow','+3721119181','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1986','john.tompa@yahoo.com','Budapest','+5592550397','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1991','matthew.fisichella@gmail.com','Krakow','+4820659045','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1989','miklós.salamon@yahoo.com','Budapest','+5913593982','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1982','andy.hamilton@yahoo.com','Miskolc','+6526044800','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1982','attila.fisichella@hotmail.com','Miskolc','+2370151751','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1975','andy.carrey@hotmail.com','Barcelona','+8044515493','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1969','andy.tompa@gmail.com','Krakow','+3203181528','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1973','matthew.ostafil@hotmail.com','Krakow','+4001921452','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1975','pál.ciacka@hotmail.com','Miskolc','+7563762433','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1968','john.fisichella@gmail.com','Barcelona','+940582644','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1973','andy.ciacka@hotmail.com','Barcelona','+6365491314','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1988','prezmek.monoczki@yahoo.com','New York','+739717695','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1973','dániel.hamilton@hotmail.com','Barcelona','+2765535193','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1967','prezmek.tompa@yahoo.com','Miskolc','+4470772499','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1990','matthew.carrey@gmail.com','New York','+7446831749','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1971','miklós.monoczki@gmail.com','Budapest','+8304046876','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1987','matthew.ciacka@gmail.com','Barcelona','+1365243995','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1976','john.fisichella@hotmail.com','Barcelona','+7461343425','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1972','tamás.fisichella@gmail.com','Krakow','+4837369835','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1991','giancarlo.carrey@gmail.com','Barcelona','+6063676376','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1993','mateusz.ciacka@gmail.com','Krakow','+4576802507','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1971','miklós.ciacka@yahoo.com','Budapest','+2007732171','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1971','prezmek.monoczki@gmail.com','Miskolc','+8439120543','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1983','miklós.tompa@yahoo.com','Krakow','+1197440329','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1982','dániel.molnár@gmail.com','Budapest','+1868943354','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1987','sándor.ostafil@yahoo.com','Miskolc','+4609632284','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1982','mateusz.salamon@hotmail.com','Miskolc','+8023803336','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1965','mateusz.fisichella@hotmail.com','New York','+8988536661','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1979','sándor.tompa@hotmail.com','New York','+9313709084','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1973','sándor.obama@hotmail.com','New York','+3174205179','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1995','pál.molnár@gmail.com','Miskolc','+9175090361','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1971','miklós.lebron@hotmail.com','Barcelona','+6758532211','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1993','prezmek.beöthy@hotmail.com','Miskolc','+9868244082','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1984','pál.molnár@gmail.com','New York','+8631588589','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1982','attila.szodoray@hotmail.com','New York','+1478676921','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1970','dániel.tompa@gmail.com','Miskolc','+9183926289','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1981','john.hamilton@hotmail.com','New York','+2575524092','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1995','pál.salamon@hotmail.com','Budapest','+3122775125','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1978','attila.obama@hotmail.com','Budapest','+4683301766','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1969','tamás.lebron@gmail.com','New York','+1804128793','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1979','pál.obama@yahoo.com','Krakow','+8286509117','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1994','giancarlo.carrey@gmail.com','Krakow','+2667126310','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1988','tamás.tompa@hotmail.com','Miskolc','+301594936','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1967','mateusz.monoczki@gmail.com','Budapest','+401385860','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1991','john.monoczki@hotmail.com','New York','+6413962403','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1988','miklós.salamon@gmail.com','New York','+839230201','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1968','andy.salamon@hotmail.com','New York','+5666527081','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1986','sándor.hamilton@gmail.com','New York','+9985649671','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1992','tim.molnár@hotmail.com','Budapest','+7058315491','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1978','giancarlo.hamilton@yahoo.com','Krakow','+1472361422','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1969','matthew.salamon@yahoo.com','Budapest','+3148671918','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1992','andy.ciacka@hotmail.com','Budapest','+4654622965','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1972','miklós.szodoray@yahoo.com','Budapest','+7714893171','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1993','sándor.tompa@gmail.com','Barcelona','+2465906935','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1983','dániel.monoczki@yahoo.com','Miskolc','+1295477781','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1980','mateusz.beöthy@yahoo.com','New York','+721472984','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1995','matthew.fisichella@yahoo.com','Barcelona','+8677197353','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1968','mateusz.monoczki@gmail.com','New York','+9143167798','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1992','john.molnár@gmail.com','Budapest','+8805565976','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1979','attila.monoczki@hotmail.com','Barcelona','+4099741198','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1990','matthew.tompa@hotmail.com','Miskolc','+9857740370','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1978','andy.tompa@hotmail.com','Barcelona','+9633291660','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1984','matthew.beöthy@yahoo.com','Miskolc','+9084549040','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1976','pál.szodoray@gmail.com','New York','+6137657500','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1971','miklós.carrey@yahoo.com','Budapest','+8895724236','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1966','attila.hamilton@yahoo.com','Miskolc','+2972917143','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1981','tamás.salamon@hotmail.com','Miskolc','+3441023347','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1975','pál.salamon@hotmail.com','Budapest','+3411133890','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1990','miklós.ostafil@hotmail.com','Barcelona','+2049915290','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1966','mateusz.tompa@hotmail.com','Krakow','+2797241216','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1973','tim.salamon@yahoo.com','Miskolc','+1554800574','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1983','tamás.lebron@yahoo.com','New York','+6048690762','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1977','tim.tompa@yahoo.com','Krakow','+2137726798','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1986','attila.obama@yahoo.com','Miskolc','+3903641634','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1994','mateusz.tompa@gmail.com','New York','+1018792820','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1968','andy.tompa@gmail.com','New York','+7207519654','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1989','sándor.ciacka@gmail.com','Miskolc','+6612134249','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1988','tamás.ostafil@gmail.com','Miskolc','+4985959938','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1980','sándor.ostafil@hotmail.com','Krakow','+6181714290','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1995','prezmek.monoczki@hotmail.com','New York','+1142888574','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1971','tamás.obama@gmail.com','Krakow','+6008992343','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1981','sándor.fisichella@gmail.com','Miskolc','+5894828372','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1987','mateusz.ostafil@yahoo.com','Krakow','+7084357573','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1984','attila.szodoray@gmail.com','Krakow','+447085434','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1969','attila.obama@hotmail.com','Krakow','+7256585125','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1981','miklós.salamon@gmail.com','Budapest','+9181588631','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1988','mateusz.carrey@yahoo.com','Barcelona','+2521620707','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1977','prezmek.ostafil@hotmail.com','Krakow','+9623500582','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1986','pál.salamon@yahoo.com','New York','+2352116500','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1975','giancarlo.fisichella@gmail.com','Krakow','+7492234039','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1988','dániel.molnár@hotmail.com','New York','+6989972667','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1995','prezmek.tompa@gmail.com','Budapest','+598523218','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1970','john.beöthy@yahoo.com','Budapest','+8600000561','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1977','tim.ostafil@hotmail.com','New York','+2312669607','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1966','prezmek.ciacka@gmail.com','Barcelona','+5537011961','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1994','matthew.lebron@gmail.com','Krakow','+5501057012','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1970','tim.carrey@gmail.com','Krakow','+8742556369','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1978','andy.szodoray@gmail.com','Barcelona','+1449674248','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1972','attila.molnár@gmail.com','New York','+6052265892','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1972','attila.tompa@yahoo.com','Budapest','+8220567396','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1984','tamás.szodoray@yahoo.com','Krakow','+1785056594','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1976','miklós.tompa@hotmail.com','New York','+5824859462','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1966','andy.beöthy@gmail.com','Miskolc','+6677144849','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1971','tim.molnár@hotmail.com','Barcelona','+9656601651','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1988','giancarlo.tompa@hotmail.com','Barcelona','+744457480','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1980','mateusz.obama@gmail.com','Krakow','+8257734163','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1973','andy.salamon@hotmail.com','Miskolc','+4973634303','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1967','dániel.beöthy@yahoo.com','Budapest','+6077860738','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1989','matthew.ciacka@gmail.com','New York','+5955536635','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1978','john.fisichella@hotmail.com','Budapest','+8056124208','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1985','matthew.ostafil@yahoo.com','Budapest','+8939804796','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1994','giancarlo.beöthy@hotmail.com','Miskolc','+8832877416','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1969','miklós.molnár@gmail.com','New York','+2306085915','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1977','miklós.ciacka@hotmail.com','Budapest','+6549109087','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1983','tamás.szodoray@hotmail.com','New York','+2624687155','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1975','tim.lebron@yahoo.com','Miskolc','+6973288576','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1972','pál.szodoray@yahoo.com','Barcelona','+4295426901','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1984','miklós.obama@yahoo.com','Budapest','+6102672821','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1983','giancarlo.molnár@gmail.com','Barcelona','+7238494422','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1977','mateusz.ciacka@yahoo.com','Barcelona','+989358638','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1986','attila.ciacka@gmail.com','Barcelona','+8837647844','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1984','miklós.ciacka@hotmail.com','New York','+1435813092','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1992','miklós.carrey@hotmail.com','Barcelona','+4811661319','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1966','tim.ostafil@yahoo.com','Krakow','+8061160821','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1971','attila.molnár@yahoo.com','Miskolc','+1856270439','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1980','miklós.obama@gmail.com','New York','+5892734661','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1980','prezmek.molnár@yahoo.com','Krakow','+1632109556','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1974','dániel.monoczki@gmail.com','Barcelona','+1169001223','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1967','tim.obama@gmail.com','Miskolc','+9699072934','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1987','matthew.ciacka@hotmail.com','Budapest','+4305665542','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1972','matthew.obama@hotmail.com','Barcelona','+1963059040','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1988','matthew.monoczki@yahoo.com','Miskolc','+4236007230','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1986','tamás.hamilton@yahoo.com','Budapest','+5778522085','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1966','giancarlo.szodoray@yahoo.com','Krakow','+2782326397','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1975','tim.obama@hotmail.com','Budapest','+2806879836','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1985','andy.lebron@yahoo.com','Budapest','+4199724466','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1984','pál.carrey@hotmail.com','Miskolc','+1947429679','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1975','tim.tompa@yahoo.com','Miskolc','+4836353113','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1988','giancarlo.beöthy@hotmail.com','New York','+7046387259','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1976','attila.ostafil@yahoo.com','Barcelona','+6202441415','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1970','tamás.szodoray@yahoo.com','Miskolc','+8091925392','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1977','mateusz.ostafil@yahoo.com','New York','+8085617588','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1970','tamás.salamon@hotmail.com','New York','+5607627926','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1965','john.lebron@yahoo.com','Krakow','+8373877255','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1979','sándor.monoczki@hotmail.com','Budapest','+7031941302','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1991','attila.lebron@yahoo.com','New York','+8795723655','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1989','pál.ostafil@hotmail.com','Barcelona','+5097301268','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1967','andy.fisichella@hotmail.com','New York','+7815105650','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1982','pál.fisichella@hotmail.com','Budapest','+9609952702','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1991','giancarlo.szodoray@gmail.com','Barcelona','+8794108823','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1974','mateusz.monoczki@yahoo.com','Krakow','+6642523665','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1992','pál.salamon@yahoo.com','Barcelona','+7809070918','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1994','dániel.beöthy@hotmail.com','Budapest','+6749437022','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1980','andy.tompa@yahoo.com','Budapest','+5389239251','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1984','tamás.carrey@yahoo.com','New York','+5385365620','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1995','dániel.obama@gmail.com','Krakow','+2939653151','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1982','giancarlo.obama@gmail.com','Miskolc','+7294114178','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1976','giancarlo.carrey@yahoo.com','New York','+6621193396','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1977','giancarlo.obama@hotmail.com','Miskolc','+8117559357','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1986','dániel.ciacka@gmail.com','Krakow','+8520861398','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1991','pál.lebron@gmail.com','Budapest','+2124419162','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1979','andy.molnár@gmail.com','Miskolc','+6804091533','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1971','dániel.lebron@hotmail.com','Budapest','+5693769123','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1987','tamás.obama@gmail.com','New York','+8642256552','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Lebron','1973','pál.lebron@yahoo.com','Miskolc','+7834321344','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1974','tim.fisichella@hotmail.com','New York','+6529843846','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1976','matthew.szodoray@hotmail.com','Miskolc','+6015592242','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1974','sándor.fisichella@hotmail.com','Miskolc','+2996929021','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1990','tamás.ciacka@gmail.com','Krakow','+1859285599','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1982','giancarlo.molnár@yahoo.com','Krakow','+2723504281','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1983','matthew.ciacka@yahoo.com','Krakow','+5614728901','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1992','mateusz.tompa@gmail.com','Krakow','+6539757340','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1986','matthew.monoczki@gmail.com','New York','+5865010761','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1992','andy.tompa@gmail.com','Krakow','+1671751814','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1992','miklós.tompa@gmail.com','New York','+2375346227','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1984','miklós.monoczki@yahoo.com','Krakow','+9249576683','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1989','tamás.obama@gmail.com','New York','+8557490088','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1972','miklós.tompa@hotmail.com','Krakow','+282505451','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1984','giancarlo.beöthy@yahoo.com','New York','+9605694545','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1994','prezmek.beöthy@gmail.com','Krakow','+6537351317','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1976','matthew.tompa@yahoo.com','New York','+6408229854','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1974','dániel.salamon@gmail.com','New York','+2643600989','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1984','giancarlo.salamon@gmail.com','Barcelona','+7511651960','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1976','tamás.molnár@yahoo.com','New York','+711452098','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1973','tim.ciacka@yahoo.com','Krakow','+2719393270','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1975','matthew.lebron@hotmail.com','Budapest','+2749962844','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1979','john.monoczki@hotmail.com','Miskolc','+1857726650','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1981','prezmek.szodoray@hotmail.com','Barcelona','+3803625176','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1985','matthew.ciacka@gmail.com','Miskolc','+6561146557','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1966','mateusz.salamon@hotmail.com','Miskolc','+4929327532','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1967','dániel.obama@hotmail.com','Miskolc','+7245054323','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1973','giancarlo.molnár@yahoo.com','Barcelona','+3142205073','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1985','sándor.tompa@gmail.com','New York','+1647620542','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1981','sándor.ostafil@hotmail.com','Budapest','+1006030799','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1965','andy.molnár@gmail.com','Krakow','+7615939301','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1990','dániel.lebron@hotmail.com','Miskolc','+7982910776','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1990','giancarlo.tompa@hotmail.com','Budapest','+9545033095','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1979','giancarlo.hamilton@hotmail.com','Budapest','+8566985807','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1976','john.ostafil@hotmail.com','Miskolc','+8984642878','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1994','pál.beöthy@hotmail.com','Barcelona','+8217039888','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1979','attila.obama@yahoo.com','New York','+9152722162','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1978','john.molnár@hotmail.com','Krakow','+4840302124','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1984','john.tompa@yahoo.com','Budapest','+7944082867','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1965','matthew.molnár@yahoo.com','Miskolc','+2281486047','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1973','giancarlo.szodoray@hotmail.com','New York','+7767957625','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1982','andy.beöthy@yahoo.com','Barcelona','+860334791','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1981','miklós.lebron@gmail.com','New York','+5874760448','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1974','matthew.monoczki@yahoo.com','Barcelona','+2097494353','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1969','mateusz.szodoray@hotmail.com','Barcelona','+2037290611','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1967','miklós.hamilton@gmail.com','New York','+2920188089','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1965','pál.salamon@yahoo.com','Miskolc','+9952703176','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1978','tamás.szodoray@yahoo.com','Budapest','+8106656864','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1982','tim.szodoray@hotmail.com','Krakow','+8144242537','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1985','attila.obama@yahoo.com','Barcelona','+3996737618','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1985','attila.carrey@gmail.com','Miskolc','+6982366535','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1983','mateusz.tompa@yahoo.com','New York','+7114193858','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1990','attila.beöthy@yahoo.com','Krakow','+1953273870','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1982','mateusz.molnár@yahoo.com','Miskolc','+8051893467','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1985','andy.fisichella@hotmail.com','Miskolc','+9061186181','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1991','tamás.szodoray@yahoo.com','Miskolc','+6897599281','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1970','prezmek.carrey@hotmail.com','Barcelona','+8967798324','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1965','tim.beöthy@gmail.com','Barcelona','+794715829','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1980','matthew.lebron@hotmail.com','Miskolc','+5865511382','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1988','andy.hamilton@hotmail.com','New York','+5084994679','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1971','giancarlo.ciacka@gmail.com','Barcelona','+8986183907','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1988','john.carrey@gmail.com','Miskolc','+1395985842','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1975','sándor.monoczki@yahoo.com','New York','+6984557716','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1994','mateusz.molnár@gmail.com','Budapest','+8027824447','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1988','attila.ostafil@hotmail.com','Barcelona','+4526764427','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1972','attila.monoczki@yahoo.com','New York','+9426661773','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1966','mateusz.ciacka@hotmail.com','Miskolc','+8437662400','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1991','dániel.szodoray@hotmail.com','New York','+8811982919','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1980','tamás.ciacka@yahoo.com','Miskolc','+7817472306','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1970','andy.szodoray@hotmail.com','New York','+5559821976','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1987','attila.salamon@yahoo.com','Budapest','+5931048261','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1994','miklós.monoczki@hotmail.com','New York','+4695983697','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1985','matthew.hamilton@hotmail.com','Miskolc','+8506699147','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1968','dániel.obama@gmail.com','Miskolc','+7785163398','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1982','matthew.fisichella@gmail.com','Budapest','+6245728889','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1965','andy.monoczki@yahoo.com','New York','+6363979628','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1967','pál.salamon@yahoo.com','Barcelona','+6001181993','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1969','tamás.fisichella@hotmail.com','Krakow','+484292048','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1970','tim.carrey@hotmail.com','Budapest','+1511816869','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1972','andy.molnár@yahoo.com','Barcelona','+5022372502','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1993','matthew.hamilton@yahoo.com','New York','+9878658211','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1976','andy.ostafil@yahoo.com','New York','+6948194523','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1989','dániel.obama@yahoo.com','Barcelona','+257272697','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1973','pál.molnár@gmail.com','Budapest','+8871412138','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1975','miklós.ciacka@hotmail.com','Miskolc','+3074088014','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1976','andy.molnár@yahoo.com','Barcelona','+5602546480','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1990','andy.tompa@gmail.com','Budapest','+3991403182','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1993','john.obama@yahoo.com','Barcelona','+729533749','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1976','giancarlo.molnár@gmail.com','Miskolc','+2443516355','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1981','dániel.monoczki@hotmail.com','New York','+322125706','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1966','matthew.molnár@hotmail.com','New York','+8569018248','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1986','tim.monoczki@yahoo.com','Budapest','+2301113306','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1992','tamás.fisichella@hotmail.com','Budapest','+6141687615','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1968','attila.szodoray@yahoo.com','Barcelona','+165977885','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1991','attila.molnár@yahoo.com','Krakow','+5299565320','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1980','pál.ostafil@hotmail.com','New York','+353737341','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1969','john.ciacka@yahoo.com','Krakow','+1462256927','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1992','andy.lebron@gmail.com','New York','+5229396920','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1971','miklós.salamon@yahoo.com','Barcelona','+7883884255','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1967','sándor.ostafil@gmail.com','Barcelona','+5682254321','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1980','prezmek.hamilton@yahoo.com','Barcelona','+6599871904','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1981','prezmek.beöthy@hotmail.com','Krakow','+2097704949','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1971','dániel.salamon@yahoo.com','Budapest','+768528598','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1977','tim.molnár@hotmail.com','Krakow','+1535941969','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1991','matthew.obama@gmail.com','Krakow','+5110522688','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1990','prezmek.fisichella@hotmail.com','Budapest','+7287432455','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1966','sándor.monoczki@hotmail.com','Krakow','+4694427527','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1976','dániel.beöthy@yahoo.com','Krakow','+5626203408','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1971','giancarlo.ostafil@gmail.com','Miskolc','+125194398','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1972','prezmek.ostafil@gmail.com','Budapest','+544410426','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1991','sándor.ostafil@gmail.com','Miskolc','+8670853327','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1969','prezmek.fisichella@gmail.com','Krakow','+2604702142','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1982','prezmek.ciacka@hotmail.com','Miskolc','+1532349137','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1985','matthew.salamon@gmail.com','Barcelona','+2174001956','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1972','attila.hamilton@hotmail.com','Budapest','+5629434078','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1994','giancarlo.szodoray@gmail.com','New York','+7613061737','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1974','pál.tompa@hotmail.com','Barcelona','+6177567885','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1967','tim.obama@gmail.com','Krakow','+3439420376','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1969','attila.ostafil@gmail.com','Miskolc','+2503387272','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1979','sándor.obama@yahoo.com','New York','+5339460791','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1984','prezmek.fisichella@hotmail.com','Barcelona','+8984725091','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1976','attila.szodoray@gmail.com','Miskolc','+3113436008','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1992','andy.salamon@hotmail.com','New York','+520445797','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1965','mateusz.szodoray@yahoo.com','Miskolc','+2479169465','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1985','dániel.hamilton@hotmail.com','Miskolc','+3944760459','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1972','prezmek.beöthy@yahoo.com','Budapest','+7832879220','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1976','attila.beöthy@hotmail.com','Miskolc','+1919298589','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1980','giancarlo.fisichella@gmail.com','Krakow','+5129303563','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1978','dániel.tompa@gmail.com','Barcelona','+4981622550','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1970','sándor.salamon@yahoo.com','Budapest','+3807563575','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1965','john.molnár@yahoo.com','Barcelona','+8968983977','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1979','mateusz.carrey@hotmail.com','Krakow','+5849341261','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1973','attila.salamon@gmail.com','Budapest','+1394859306','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1968','john.ostafil@gmail.com','New York','+5608097134','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1988','attila.fisichella@yahoo.com','Miskolc','+1796771638','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1980','mateusz.molnár@hotmail.com','Krakow','+6624603490','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1984','attila.tompa@hotmail.com','Budapest','+5569398943','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1971','pál.carrey@yahoo.com','Budapest','+4570026366','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1995','matthew.hamilton@yahoo.com','Miskolc','+2877806949','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1977','miklós.carrey@hotmail.com','Barcelona','+412923042','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1968','john.fisichella@yahoo.com','Budapest','+8331531908','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1982','sándor.monoczki@yahoo.com','New York','+813159087','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1977','mateusz.carrey@hotmail.com','New York','+9646349722','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1973','mateusz.molnár@yahoo.com','Barcelona','+9869147974','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1983','attila.molnár@gmail.com','Barcelona','+9167113418','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1994','andy.tompa@gmail.com','Barcelona','+7021985855','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1971','dániel.szodoray@gmail.com','New York','+8135623091','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1971','tim.fisichella@yahoo.com','Budapest','+739074639','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1979','attila.molnár@hotmail.com','Barcelona','+3266907424','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1971','pál.ostafil@gmail.com','New York','+2595193263','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1993','john.fisichella@yahoo.com','Barcelona','+3050058491','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1968','john.ostafil@yahoo.com','Budapest','+7381251320','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1977','mateusz.beöthy@hotmail.com','Krakow','+700045911','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1980','dániel.molnár@hotmail.com','Barcelona','+4567660962','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1992','pál.monoczki@yahoo.com','Budapest','+159162391','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1965','john.molnár@gmail.com','New York','+9210893596','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1987','giancarlo.tompa@yahoo.com','Miskolc','+2917544320','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1992','miklós.molnár@gmail.com','Krakow','+7379081089','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1965','mateusz.salamon@hotmail.com','Miskolc','+6522113289','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1984','mateusz.hamilton@hotmail.com','Budapest','+4750595088','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1986','giancarlo.salamon@gmail.com','Budapest','+8920129337','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1987','miklós.fisichella@gmail.com','Miskolc','+5137785719','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1984','andy.szodoray@gmail.com','New York','+2129754641','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1967','dániel.salamon@hotmail.com','Miskolc','+9430019142','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1989','dániel.salamon@yahoo.com','Krakow','+2244868734','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1990','prezmek.szodoray@yahoo.com','Barcelona','+6248633162','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1989','attila.ostafil@yahoo.com','Budapest','+7835712601','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1982','pál.hamilton@hotmail.com','Barcelona','+1674684361','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1969','john.fisichella@gmail.com','Krakow','+2909743947','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1970','tim.salamon@gmail.com','Barcelona','+5367297704','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1984','matthew.beöthy@yahoo.com','Budapest','+453870527','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1978','andy.ciacka@hotmail.com','Miskolc','+5440304444','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1967','andy.obama@hotmail.com','Budapest','+1149641893','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1990','attila.carrey@gmail.com','New York','+509026217','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1988','matthew.fisichella@yahoo.com','Barcelona','+6418992960','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1988','miklós.ostafil@gmail.com','Budapest','+7134354407','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1974','dániel.hamilton@hotmail.com','Miskolc','+8166042754','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1978','tim.obama@hotmail.com','New York','+2793174028','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1981','dániel.salamon@yahoo.com','New York','+2615487910','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1987','miklós.ciacka@hotmail.com','Barcelona','+9759248353','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1979','andy.beöthy@gmail.com','Budapest','+8570110569','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1972','tim.obama@gmail.com','Barcelona','+2737383286','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1979','matthew.ciacka@gmail.com','Miskolc','+1762324224','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1994','tim.hamilton@hotmail.com','New York','+6242266573','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1984','sándor.ostafil@gmail.com','Budapest','+9493407374','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1978','attila.monoczki@hotmail.com','New York','+996951738','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1988','tim.monoczki@yahoo.com','Barcelona','+50571587','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1987','pál.hamilton@hotmail.com','Miskolc','+3195065741','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1979','mateusz.hamilton@yahoo.com','Budapest','+5292422830','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1994','tamás.szodoray@hotmail.com','Barcelona','+9242661367','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1979','attila.beöthy@gmail.com','Budapest','+8193199939','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1968','john.fisichella@gmail.com','Miskolc','+7851967546','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1966','miklós.tompa@hotmail.com','New York','+1872745653','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1983','sándor.szodoray@yahoo.com','Budapest','+6430954298','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1976','prezmek.hamilton@yahoo.com','Miskolc','+2390794228','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1988','john.ostafil@yahoo.com','New York','+136033434','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1983','sándor.salamon@hotmail.com','Miskolc','+4672713095','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1972','giancarlo.obama@yahoo.com','Krakow','+1470275224','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1968','giancarlo.fisichella@gmail.com','New York','+7742569779','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1978','andy.ostafil@hotmail.com','Miskolc','+5340678944','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1971','sándor.ciacka@yahoo.com','Barcelona','+9029913907','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1976','sándor.szodoray@gmail.com','Krakow','+1731682657','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1991','matthew.tompa@yahoo.com','Krakow','+6780534889','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1973','dániel.lebron@yahoo.com','New York','+6233697073','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1967','tim.ciacka@yahoo.com','Budapest','+6560252462','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1976','andy.fisichella@gmail.com','New York','+7490896381','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1986','mateusz.molnár@gmail.com','New York','+496164231','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1981','attila.monoczki@gmail.com','New York','+4900379390','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1971','sándor.ciacka@yahoo.com','Budapest','+479078836','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1989','prezmek.ostafil@yahoo.com','Krakow','+8182825571','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1994','dániel.molnár@gmail.com','Miskolc','+1064351813','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1969','pál.szodoray@hotmail.com','New York','+5596373146','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1987','tim.ostafil@hotmail.com','New York','+2217435097','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1967','tim.salamon@yahoo.com','Miskolc','+849086282','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1968','prezmek.ciacka@gmail.com','Budapest','+9915548782','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1979','matthew.carrey@gmail.com','New York','+9568761512','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1966','john.szodoray@hotmail.com','New York','+6972727981','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1976','john.tompa@hotmail.com','Miskolc','+697486056','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1977','miklós.salamon@hotmail.com','Budapest','+5448104998','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1973','pál.monoczki@gmail.com','Miskolc','+9713537662','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1989','matthew.molnár@gmail.com','Miskolc','+3056309358','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1969','andy.beöthy@gmail.com','Budapest','+9889573130','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1987','sándor.lebron@yahoo.com','Miskolc','+63671875','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1982','giancarlo.fisichella@gmail.com','Barcelona','+8330420064','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1980','andy.tompa@hotmail.com','Krakow','+7598614126','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1994','giancarlo.ostafil@gmail.com','Barcelona','+706201304','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1980','andy.tompa@hotmail.com','New York','+7178172105','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1967','matthew.ostafil@gmail.com','Barcelona','+2941976374','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1988','mateusz.lebron@hotmail.com','New York','+5966296407','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1981','pál.hamilton@yahoo.com','Barcelona','+9838263668','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1972','john.tompa@yahoo.com','Krakow','+601991372','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1976','dániel.obama@hotmail.com','Miskolc','+7457111700','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1985','mateusz.szodoray@hotmail.com','Barcelona','+7491149400','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1986','andy.carrey@yahoo.com','New York','+8121878172','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1974','matthew.szodoray@yahoo.com','New York','+6139096896','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1977','prezmek.ostafil@yahoo.com','Krakow','+5761976941','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1974','tamás.szodoray@hotmail.com','New York','+141740542','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1990','mateusz.tompa@yahoo.com','Barcelona','+8063565817','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1994','prezmek.carrey@gmail.com','Krakow','+2120385356','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1966','pál.monoczki@gmail.com','Barcelona','+524696746','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1970','andy.beöthy@gmail.com','Krakow','+753330333','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1984','tim.salamon@gmail.com','Miskolc','+7249025032','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1989','pál.carrey@gmail.com','New York','+5655422577','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1968','pál.fisichella@hotmail.com','Barcelona','+6494550714','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1970','tim.fisichella@gmail.com','Budapest','+8275465027','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1984','giancarlo.carrey@hotmail.com','Miskolc','+5543804371','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1973','dániel.hamilton@gmail.com','Budapest','+5503622970','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1980','sándor.ciacka@gmail.com','Krakow','+6444581881','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1979','sándor.ostafil@hotmail.com','New York','+9057974284','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1988','tim.salamon@hotmail.com','Budapest','+4235910185','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1972','tamás.szodoray@hotmail.com','Budapest','+6755754550','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1983','giancarlo.molnár@yahoo.com','New York','+3484930365','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1967','john.fisichella@gmail.com','Miskolc','+6431046590','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1987','mateusz.beöthy@hotmail.com','New York','+3228210406','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1979','sándor.szodoray@hotmail.com','Budapest','+9241033202','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1965','john.tompa@hotmail.com','Budapest','+5020895208','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1976','matthew.salamon@hotmail.com','Krakow','+6101043898','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1973','mateusz.obama@hotmail.com','Barcelona','+3185591854','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1967','dániel.ciacka@gmail.com','Budapest','+8279582943','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1981','giancarlo.tompa@hotmail.com','Miskolc','+3693380807','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1989','sándor.obama@gmail.com','Budapest','+4960890102','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1977','john.beöthy@gmail.com','Barcelona','+2647561300','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1981','andy.ciacka@yahoo.com','Budapest','+9841293575','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1973','prezmek.monoczki@gmail.com','New York','+2753542310','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1965','john.szodoray@gmail.com','New York','+7064384617','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1995','matthew.obama@yahoo.com','New York','+1453037449','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1989','prezmek.beöthy@yahoo.com','New York','+8602350530','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1981','tamás.tompa@hotmail.com','Budapest','+7828209141','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1979','matthew.molnár@gmail.com','New York','+4311326487','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1966','tim.szodoray@yahoo.com','Miskolc','+6280199952','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1984','andy.carrey@hotmail.com','Krakow','+1644411715','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1969','dániel.beöthy@gmail.com','Miskolc','+8846899025','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1971','mateusz.salamon@gmail.com','New York','+1205359024','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1980','prezmek.ostafil@gmail.com','Barcelona','+3884351672','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1978','andy.salamon@yahoo.com','Miskolc','+5854114728','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1968','prezmek.obama@yahoo.com','Miskolc','+3253968787','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1987','attila.szodoray@hotmail.com','Barcelona','+7440217285','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1966','prezmek.szodoray@yahoo.com','Barcelona','+9843259844','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1992','mateusz.beöthy@yahoo.com','Krakow','+479066809','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1995','matthew.beöthy@hotmail.com','Miskolc','+8492513184','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1983','miklós.hamilton@hotmail.com','Barcelona','+6804224731','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1971','giancarlo.carrey@gmail.com','Budapest','+6673728991','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1990','mateusz.molnár@hotmail.com','Miskolc','+6592943290','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1981','andy.obama@gmail.com','Barcelona','+6241646736','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1966','andy.monoczki@hotmail.com','Miskolc','+3506350985','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1984','attila.tompa@gmail.com','Budapest','+2843946542','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1983','john.fisichella@hotmail.com','Miskolc','+6895210352','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1971','mateusz.fisichella@hotmail.com','Budapest','+9730115137','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1968','sándor.ciacka@gmail.com','Krakow','+1895965174','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1988','giancarlo.salamon@hotmail.com','Budapest','+3990363620','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1982','dániel.tompa@gmail.com','Miskolc','+1716547200','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1995','matthew.salamon@gmail.com','Krakow','+1588889201','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1970','dániel.molnár@yahoo.com','Krakow','+380358773','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1993','miklós.molnár@hotmail.com','Krakow','+4834550628','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1966','andy.fisichella@yahoo.com','New York','+8116013540','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1975','matthew.monoczki@gmail.com','Budapest','+1992463966','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1984','attila.beöthy@gmail.com','Krakow','+4092694862','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1986','sándor.obama@gmail.com','Miskolc','+1178898237','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1994','sándor.szodoray@hotmail.com','Budapest','+5382139155','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1989','attila.hamilton@gmail.com','Miskolc','+8023276886','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1977','sándor.ostafil@hotmail.com','Barcelona','+8261651438','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1980','sándor.fisichella@hotmail.com','Krakow','+8524606471','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1977','matthew.molnár@gmail.com','New York','+6419243570','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1971','giancarlo.molnár@yahoo.com','New York','+8785124780','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1966','matthew.obama@yahoo.com','Budapest','+212139071','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1992','prezmek.obama@hotmail.com','Barcelona','+4922816089','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1991','giancarlo.szodoray@hotmail.com','Barcelona','+8325984974','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1972','prezmek.fisichella@gmail.com','New York','+7702545606','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1981','attila.monoczki@gmail.com','Budapest','+6413201048','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1982','sándor.hamilton@gmail.com','Krakow','+961558276','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1969','giancarlo.monoczki@yahoo.com','Barcelona','+7041733749','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1989','john.monoczki@yahoo.com','Barcelona','+3114306904','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1973','tim.monoczki@hotmail.com','New York','+6850464485','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1965','mateusz.ciacka@yahoo.com','Barcelona','+2258515987','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1988','attila.szodoray@gmail.com','Miskolc','+8351154614','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1971','dániel.hamilton@hotmail.com','Barcelona','+5351369425','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1971','tamás.carrey@yahoo.com','Budapest','+2088180161','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1984','tim.hamilton@yahoo.com','New York','+6341334231','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1969','pál.monoczki@gmail.com','Miskolc','+6715333784','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1995','matthew.fisichella@hotmail.com','Barcelona','+6264749038','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1983','mateusz.obama@hotmail.com','Miskolc','+5035536164','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1972','tim.fisichella@hotmail.com','New York','+8153300939','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1975','giancarlo.szodoray@yahoo.com','New York','+3664080130','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1977','andy.monoczki@gmail.com','Miskolc','+1138714667','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1992','miklós.obama@gmail.com','Budapest','+6549786138','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1995','mateusz.salamon@hotmail.com','Miskolc','+6339995001','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1978','andy.molnár@yahoo.com','Barcelona','+5490827222','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1975','mateusz.ostafil@yahoo.com','New York','+8830503412','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1969','john.monoczki@hotmail.com','Barcelona','+5113241689','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1966','giancarlo.hamilton@hotmail.com','New York','+9870462414','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1985','sándor.salamon@gmail.com','New York','+1679950183','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1982','sándor.beöthy@hotmail.com','New York','+9082364582','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1978','matthew.beöthy@yahoo.com','Budapest','+5017825737','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1977','dániel.ciacka@yahoo.com','Miskolc','+7220583951','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1975','tamás.ciacka@hotmail.com','Krakow','+7296489775','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1985','attila.ostafil@gmail.com','Barcelona','+9070166798','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1979','attila.lebron@hotmail.com','Krakow','+5983284789','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1967','john.obama@hotmail.com','Miskolc','+1236699151','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1975','attila.molnár@gmail.com','Miskolc','+1754097812','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1991','prezmek.molnár@yahoo.com','Barcelona','+9394100904','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1977','tamás.beöthy@gmail.com','New York','+175300316','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1973','dániel.molnár@yahoo.com','Krakow','+192409894','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1968','john.beöthy@gmail.com','Krakow','+5372707255','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1972','miklós.szodoray@hotmail.com','Miskolc','+2266267082','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1968','andy.obama@hotmail.com','Barcelona','+3926063699','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1967','prezmek.ciacka@gmail.com','New York','+7554964374','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1984','attila.salamon@hotmail.com','Krakow','+4873006121','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1968','andy.molnár@gmail.com','New York','+2599856116','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1988','dániel.lebron@gmail.com','Krakow','+3285923714','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1989','miklós.obama@yahoo.com','Krakow','+8354808019','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1995','dániel.lebron@gmail.com','Miskolc','+4264849021','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1994','tamás.ostafil@yahoo.com','New York','+8448271910','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1982','tim.lebron@yahoo.com','Miskolc','+8117077455','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1986','miklós.carrey@hotmail.com','Barcelona','+9208798383','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1989','tamás.obama@gmail.com','Krakow','+2164269418','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1986','john.ciacka@yahoo.com','Barcelona','+9368837447','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1986','attila.tompa@yahoo.com','Krakow','+8131658599','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1990','dániel.tompa@hotmail.com','Budapest','+446972570','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1971','andy.monoczki@yahoo.com','Miskolc','+742737836','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1976','tim.fisichella@hotmail.com','Barcelona','+735528799','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1983','dániel.ciacka@yahoo.com','New York','+3211966572','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1981','andy.salamon@hotmail.com','New York','+2055325902','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1993','pál.obama@hotmail.com','New York','+4239342470','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1976','giancarlo.ostafil@hotmail.com','Barcelona','+702974201','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1992','matthew.salamon@yahoo.com','Krakow','+2039869229','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1973','sándor.fisichella@hotmail.com','Krakow','+9226316676','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1994','sándor.molnár@hotmail.com','Miskolc','+7053307483','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1971','tamás.monoczki@gmail.com','Krakow','+4134671098','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1994','giancarlo.szodoray@gmail.com','Budapest','+8123320918','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1975','sándor.fisichella@gmail.com','Barcelona','+8998990877','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1969','mateusz.ostafil@hotmail.com','Krakow','+7868621729','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1987','tamás.ostafil@gmail.com','Budapest','+4988280171','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1976','sándor.beöthy@yahoo.com','Miskolc','+4040095171','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1978','andy.carrey@yahoo.com','Miskolc','+2222890348','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1965','mateusz.hamilton@hotmail.com','New York','+8517279221','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1984','tim.lebron@hotmail.com','Barcelona','+797610334','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1982','sándor.salamon@yahoo.com','Krakow','+8523471542','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1984','attila.lebron@yahoo.com','Miskolc','+2070450119','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1973','sándor.carrey@hotmail.com','New York','+6743098627','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1965','andy.fisichella@hotmail.com','Budapest','+5247236626','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1981','attila.monoczki@yahoo.com','New York','+8226313823','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1968','giancarlo.szodoray@gmail.com','Krakow','+9992033842','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1994','andy.tompa@hotmail.com','Budapest','+9804701779','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1971','matthew.monoczki@gmail.com','Budapest','+7014110340','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1967','miklós.szodoray@yahoo.com','Barcelona','+8242054298','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1985','dániel.molnár@gmail.com','Barcelona','+5839339745','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1968','sándor.beöthy@hotmail.com','Krakow','+3833478468','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1973','andy.lebron@gmail.com','Barcelona','+9969244560','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1992','tamás.hamilton@yahoo.com','Miskolc','+8184812206','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1979','dániel.ostafil@gmail.com','Miskolc','+5394069404','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1973','tamás.fisichella@gmail.com','New York','+5621023328','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1967','pál.ciacka@hotmail.com','New York','+6231101279','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1973','john.beöthy@gmail.com','Miskolc','+7246227293','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1980','sándor.monoczki@yahoo.com','Barcelona','+3372838138','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1969','mateusz.ostafil@yahoo.com','New York','+8496861064','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1969','john.lebron@yahoo.com','Krakow','+6157170881','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1982','prezmek.monoczki@gmail.com','Krakow','+8328604852','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1976','giancarlo.carrey@yahoo.com','Budapest','+4355411467','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1987','giancarlo.molnár@hotmail.com','Krakow','+3889400353','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1977','matthew.beöthy@hotmail.com','Barcelona','+7499576689','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1978','attila.lebron@yahoo.com','Miskolc','+4982740917','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1988','andy.szodoray@hotmail.com','Miskolc','+8731491153','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1977','andy.fisichella@yahoo.com','Miskolc','+3797346365','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1982','attila.beöthy@gmail.com','Miskolc','+2956004760','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1990','andy.beöthy@gmail.com','New York','+1306842134','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1992','john.salamon@hotmail.com','New York','+8159562337','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1973','pál.monoczki@hotmail.com','Krakow','+3807216473','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1983','tim.obama@yahoo.com','Miskolc','+9289358218','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1969','tim.molnár@yahoo.com','Barcelona','+6019174330','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1991','dániel.salamon@gmail.com','Krakow','+3444336104','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1987','prezmek.ciacka@hotmail.com','Krakow','+8951916097','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1976','dániel.ciacka@hotmail.com','Miskolc','+5313089795','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1979','matthew.lebron@yahoo.com','Barcelona','+8322650908','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1994','matthew.obama@yahoo.com','Budapest','+7460146561','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1992','miklós.fisichella@yahoo.com','Budapest','+1827015253','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1991','pál.szodoray@gmail.com','Barcelona','+2440141704','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1971','dániel.szodoray@gmail.com','New York','+4707397708','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1977','john.fisichella@yahoo.com','Miskolc','+8879009528','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1995','tamás.molnár@gmail.com','Budapest','+5416236323','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1986','tamás.ciacka@gmail.com','New York','+5354867127','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1973','tamás.tompa@gmail.com','Miskolc','+6066524006','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1966','attila.hamilton@gmail.com','Krakow','+7203621947','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1988','tamás.ostafil@hotmail.com','Miskolc','+4370342427','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1987','john.ostafil@hotmail.com','Barcelona','+6535897351','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1975','john.lebron@yahoo.com','New York','+3809826672','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1995','matthew.salamon@gmail.com','New York','+5938771551','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1994','prezmek.obama@yahoo.com','Barcelona','+1960946023','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1994','matthew.fisichella@yahoo.com','Krakow','+488880070','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1968','giancarlo.monoczki@yahoo.com','Budapest','+2753907642','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1973','dániel.ostafil@hotmail.com','Barcelona','+5505082440','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1971','sándor.szodoray@gmail.com','Barcelona','+5096166686','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1966','mateusz.ostafil@yahoo.com','Krakow','+5969602018','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1975','john.salamon@hotmail.com','Krakow','+714882622','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1971','attila.molnár@yahoo.com','New York','+7062455859','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1965','prezmek.salamon@hotmail.com','Budapest','+3957887532','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1975','dániel.monoczki@gmail.com','Budapest','+2194283916','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1972','attila.molnár@gmail.com','Barcelona','+3672306834','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1978','sándor.monoczki@yahoo.com','Miskolc','+1234879943','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Tompa','1995','dániel.tompa@yahoo.com','New York','+8324779613','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1984','pál.fisichella@gmail.com','Krakow','+297532083','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1991','attila.lebron@gmail.com','Barcelona','+6579974474','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1971','tamás.monoczki@hotmail.com','New York','+9622642151','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1993','john.monoczki@gmail.com','Miskolc','+6232556934','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1978','matthew.tompa@hotmail.com','Krakow','+6836055054','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1981','dániel.szodoray@hotmail.com','Miskolc','+6512593950','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1993','tamás.fisichella@hotmail.com','Barcelona','+6183491346','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1984','matthew.ciacka@yahoo.com','Barcelona','+1497689950','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1992','miklós.molnár@gmail.com','Barcelona','+2450600557','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1977','giancarlo.szodoray@yahoo.com','New York','+1069733349','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1974','mateusz.monoczki@yahoo.com','New York','+4078120054','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1978','pál.carrey@hotmail.com','Budapest','+3646238508','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1972','dániel.hamilton@yahoo.com','Budapest','+2269856111','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1972','prezmek.obama@hotmail.com','Krakow','+7704681721','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1974','tim.salamon@hotmail.com','Barcelona','+6614210347','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1971','john.tompa@yahoo.com','Barcelona','+1647826292','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1989','tim.obama@gmail.com','Krakow','+1866219710','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1974','matthew.szodoray@hotmail.com','Miskolc','+455567114','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1967','mateusz.beöthy@hotmail.com','Miskolc','+7433375931','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1984','mateusz.tompa@hotmail.com','Krakow','+5755514698','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1973','john.tompa@yahoo.com','Krakow','+4432711659','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1989','dániel.fisichella@hotmail.com','Miskolc','+9876860979','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1982','tim.salamon@hotmail.com','Budapest','+8880651031','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1989','pál.carrey@gmail.com','Krakow','+7608047502','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1994','dániel.carrey@hotmail.com','Barcelona','+2144812035','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1965','tim.ciacka@yahoo.com','Krakow','+5076343766','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1968','john.fisichella@yahoo.com','Krakow','+9553687682','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1965','john.lebron@yahoo.com','Miskolc','+1668128367','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1984','prezmek.molnár@hotmail.com','Budapest','+303446149','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1986','tamás.tompa@yahoo.com','New York','+7388030070','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1992','prezmek.obama@hotmail.com','Miskolc','+3620540193','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1985','dániel.obama@hotmail.com','New York','+7277111093','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1975','giancarlo.tompa@hotmail.com','Barcelona','+3286529657','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1995','pál.beöthy@hotmail.com','New York','+5643893645','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1967','giancarlo.lebron@yahoo.com','Barcelona','+2050723012','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1970','dániel.carrey@gmail.com','Budapest','+5678128191','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1979','matthew.carrey@yahoo.com','Barcelona','+498604743','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1987','mateusz.salamon@hotmail.com','Miskolc','+887769014','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1986','matthew.monoczki@yahoo.com','Budapest','+3630568214','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1986','tamás.szodoray@hotmail.com','Miskolc','+5119240424','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1967','miklós.monoczki@hotmail.com','New York','+3065228921','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1993','matthew.beöthy@yahoo.com','Barcelona','+2017982109','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1988','tamás.hamilton@gmail.com','Barcelona','+1298872102','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1990','miklós.salamon@yahoo.com','Budapest','+4081532594','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1968','giancarlo.salamon@hotmail.com','Krakow','+6700679887','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1976','matthew.salamon@hotmail.com','Barcelona','+6341515137','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1965','miklós.molnár@yahoo.com','Miskolc','+9004998296','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1980','tamás.ciacka@hotmail.com','New York','+1095885606','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1992','giancarlo.molnár@yahoo.com','Budapest','+4446843796','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1992','matthew.monoczki@yahoo.com','Miskolc','+325676625','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1987','giancarlo.ostafil@gmail.com','Krakow','+3875897039','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1994','prezmek.obama@yahoo.com','Miskolc','+3373267922','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1966','pál.salamon@gmail.com','Barcelona','+4302627774','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1971','prezmek.monoczki@hotmail.com','Barcelona','+2988952430','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1966','john.lebron@hotmail.com','Krakow','+7982692029','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1965','miklós.carrey@yahoo.com','New York','+2295385957','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1995','prezmek.ciacka@yahoo.com','Budapest','+5491377446','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1980','sándor.obama@hotmail.com','Miskolc','+7731656662','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1992','attila.fisichella@hotmail.com','Barcelona','+52195142','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1972','pál.hamilton@gmail.com','Krakow','+4514804250','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1975','sándor.beöthy@gmail.com','New York','+996851177','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1978','dániel.molnár@hotmail.com','Krakow','+3009504420','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1975','sándor.szodoray@gmail.com','Barcelona','+3209280964','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1969','john.carrey@yahoo.com','Miskolc','+3292025423','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1974','pál.molnár@yahoo.com','Budapest','+8432777347','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1969','miklós.molnár@gmail.com','Miskolc','+9608570286','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1972','prezmek.szodoray@gmail.com','New York','+5096827532','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1977','attila.szodoray@yahoo.com','New York','+9723574857','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1976','sándor.ciacka@gmail.com','New York','+664015328','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1969','sándor.beöthy@hotmail.com','Barcelona','+5886290127','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1975','sándor.salamon@hotmail.com','Krakow','+3010302317','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1991','john.szodoray@gmail.com','Barcelona','+3015220668','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1968','dániel.fisichella@gmail.com','Miskolc','+8095116722','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1977','pál.hamilton@hotmail.com','Miskolc','+4178659956','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1974','giancarlo.szodoray@hotmail.com','Barcelona','+835599951','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1984','john.lebron@yahoo.com','New York','+7636637777','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1993','giancarlo.obama@hotmail.com','Krakow','+8552720212','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1968','giancarlo.ostafil@yahoo.com','Barcelona','+6415708250','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1982','pál.obama@gmail.com','Barcelona','+6330693879','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1969','mateusz.beöthy@hotmail.com','New York','+3551819519','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1988','john.obama@hotmail.com','Krakow','+8535772490','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1976','matthew.molnár@yahoo.com','Barcelona','+3409596174','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1981','pál.monoczki@hotmail.com','Budapest','+1953335446','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1994','tamás.carrey@hotmail.com','New York','+2084239479','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1974','sándor.tompa@gmail.com','Krakow','+6120148858','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1987','sándor.monoczki@yahoo.com','Krakow','+9544026300','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1995','tamás.obama@yahoo.com','New York','+1805247998','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1974','giancarlo.carrey@yahoo.com','Barcelona','+4635468048','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1973','sándor.fisichella@hotmail.com','Barcelona','+8665615646','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1985','sándor.obama@yahoo.com','Barcelona','+4973386137','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1968','giancarlo.obama@yahoo.com','New York','+8005833053','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1984','matthew.salamon@yahoo.com','Miskolc','+5695113950','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1968','prezmek.fisichella@hotmail.com','Krakow','+8030857107','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1993','tim.carrey@hotmail.com','Barcelona','+9516168948','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1993','matthew.fisichella@hotmail.com','Krakow','+1448770870','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1973','miklós.ciacka@yahoo.com','New York','+8076027964','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1995','mateusz.ciacka@yahoo.com','Barcelona','+4446180953','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1979','tamás.monoczki@hotmail.com','New York','+2877503678','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1985','sándor.carrey@yahoo.com','Budapest','+6039689206','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1972','pál.beöthy@gmail.com','Barcelona','+6996237952','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1981','mateusz.lebron@yahoo.com','Krakow','+1633406168','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1988','pál.beöthy@yahoo.com','Barcelona','+4502421592','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1977','prezmek.ciacka@hotmail.com','Barcelona','+7468104807','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1991','tim.szodoray@yahoo.com','Krakow','+9990199888','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1976','sándor.ciacka@gmail.com','Krakow','+5376453142','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1970','sándor.carrey@hotmail.com','Budapest','+3659702336','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1982','giancarlo.hamilton@yahoo.com','Miskolc','+5097675454','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1985','john.beöthy@yahoo.com','Miskolc','+9917944584','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1987','tim.salamon@hotmail.com','Budapest','+8843629448','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1982','andy.salamon@yahoo.com','Krakow','+8186709306','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1994','attila.lebron@yahoo.com','Miskolc','+8337188051','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1994','prezmek.hamilton@hotmail.com','Krakow','+4174806544','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1977','dániel.salamon@gmail.com','Budapest','+8086668059','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1994','matthew.carrey@hotmail.com','Miskolc','+6852888289','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1969','pál.hamilton@yahoo.com','Budapest','+1995924637','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1977','andy.beöthy@gmail.com','Barcelona','+6110708744','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1982','matthew.molnár@yahoo.com','Barcelona','+725470479','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1965','prezmek.fisichella@yahoo.com','New York','+8211583597','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1976','giancarlo.obama@hotmail.com','Budapest','+1425961375','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1976','matthew.carrey@yahoo.com','Barcelona','+7095611249','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1992','sándor.obama@yahoo.com','Krakow','+5306507552','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1992','matthew.monoczki@gmail.com','Budapest','+3207573471','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1978','john.szodoray@hotmail.com','Krakow','+5571484920','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1987','tim.hamilton@gmail.com','Miskolc','+8693399941','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1965','prezmek.ostafil@yahoo.com','New York','+7803585062','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1979','giancarlo.szodoray@hotmail.com','New York','+9773475633','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1987','andy.obama@hotmail.com','Budapest','+2329963206','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1987','tim.tompa@hotmail.com','New York','+2502390157','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1991','miklós.hamilton@gmail.com','Barcelona','+9290797083','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1973','matthew.szodoray@yahoo.com','Miskolc','+8966594135','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1980','mateusz.szodoray@hotmail.com','Krakow','+5338044302','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1965','tamás.tompa@gmail.com','Budapest','+4914978643','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1982','attila.salamon@yahoo.com','Budapest','+3978548453','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1966','pál.hamilton@yahoo.com','Barcelona','+996706169','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1991','miklós.hamilton@hotmail.com','Barcelona','+7646098277','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Lebron','1973','sándor.lebron@hotmail.com','Barcelona','+6865109633','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1969','dániel.carrey@gmail.com','Krakow','+8364977424','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1990','andy.szodoray@yahoo.com','Miskolc','+73701043','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1966','andy.molnár@hotmail.com','Barcelona','+7740622156','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1991','giancarlo.beöthy@gmail.com','New York','+2372269175','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1968','attila.tompa@yahoo.com','Barcelona','+181839565','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1971','pál.tompa@hotmail.com','Budapest','+1852459428','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1993','john.ostafil@yahoo.com','Krakow','+8795836411','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1995','john.carrey@yahoo.com','Barcelona','+2441968927','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1966','mateusz.ciacka@yahoo.com','Budapest','+6876815852','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1982','matthew.szodoray@hotmail.com','Krakow','+5581107245','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1979','tim.obama@gmail.com','Krakow','+9374140578','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1975','sándor.szodoray@yahoo.com','Krakow','+2854279355','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1972','tim.tompa@yahoo.com','Barcelona','+1510053246','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1985','tamás.lebron@yahoo.com','New York','+4778859206','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1995','prezmek.lebron@yahoo.com','Barcelona','+163451830','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1994','pál.beöthy@yahoo.com','Miskolc','+7563678607','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1995','john.obama@yahoo.com','New York','+8494319318','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1991','tim.lebron@yahoo.com','Miskolc','+8363205842','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1969','andy.molnár@yahoo.com','Miskolc','+4063411226','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1975','john.beöthy@gmail.com','New York','+6117455042','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1992','dániel.fisichella@hotmail.com','New York','+2521043557','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1984','tim.salamon@yahoo.com','Miskolc','+4935816250','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1972','mateusz.tompa@yahoo.com','Miskolc','+54323154','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1988','attila.fisichella@hotmail.com','Barcelona','+375173281','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1973','dániel.obama@hotmail.com','Barcelona','+2143139859','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1990','mateusz.monoczki@gmail.com','Miskolc','+3165378099','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1979','john.molnár@gmail.com','Krakow','+6642357747','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1992','matthew.ciacka@hotmail.com','Budapest','+680558657','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1992','tim.lebron@yahoo.com','Budapest','+1869525866','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1982','attila.carrey@gmail.com','New York','+4786991512','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1981','attila.carrey@yahoo.com','Krakow','+5205440019','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1970','giancarlo.lebron@yahoo.com','Barcelona','+1158771026','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1981','matthew.molnár@yahoo.com','Barcelona','+2740070838','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1976','tim.fisichella@gmail.com','Krakow','+3300862511','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1980','mateusz.monoczki@gmail.com','Barcelona','+4741391104','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1978','dániel.beöthy@yahoo.com','Barcelona','+6799377016','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1990','miklós.monoczki@hotmail.com','Miskolc','+3952935575','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1968','tamás.salamon@yahoo.com','New York','+2755518594','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1994','tamás.lebron@hotmail.com','Barcelona','+5506268998','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1989','miklós.szodoray@hotmail.com','Miskolc','+1725880840','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1986','tamás.fisichella@gmail.com','Budapest','+9577243606','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1976','pál.ostafil@gmail.com','Miskolc','+1142377750','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1985','prezmek.lebron@yahoo.com','New York','+6258670901','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1989','john.salamon@yahoo.com','Barcelona','+1255414007','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1965','tim.fisichella@gmail.com','Krakow','+625951226','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1983','giancarlo.beöthy@gmail.com','Miskolc','+8659360783','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1975','john.lebron@hotmail.com','Miskolc','+9580277570','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1978','mateusz.salamon@yahoo.com','Barcelona','+1830882386','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1992','sándor.carrey@hotmail.com','Miskolc','+2127533701','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1983','matthew.carrey@hotmail.com','Budapest','+392690089','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1983','andy.carrey@hotmail.com','New York','+872168030','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1985','miklós.salamon@gmail.com','Krakow','+5165972680','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1970','giancarlo.ostafil@yahoo.com','Miskolc','+6931039960','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1974','dániel.hamilton@hotmail.com','Barcelona','+1674407520','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1983','tim.monoczki@yahoo.com','Budapest','+4285711316','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1968','miklós.ostafil@yahoo.com','New York','+2782440171','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1981','prezmek.molnár@hotmail.com','Barcelona','+6727084019','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1967','tamás.obama@yahoo.com','Krakow','+5795349345','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1977','andy.ciacka@hotmail.com','Budapest','+2106470447','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1973','attila.fisichella@yahoo.com','Miskolc','+9811547623','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1965','tamás.lebron@hotmail.com','New York','+61791609','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1965','pál.fisichella@hotmail.com','New York','+1506184246','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1977','giancarlo.carrey@gmail.com','Barcelona','+4634662049','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1994','sándor.beöthy@yahoo.com','Barcelona','+3062849336','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1978','mateusz.ostafil@gmail.com','Budapest','+1400726464','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1990','andy.hamilton@gmail.com','Barcelona','+8471568194','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1989','miklós.monoczki@gmail.com','Budapest','+1197574992','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1974','tamás.salamon@yahoo.com','Miskolc','+1827295720','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1993','sándor.obama@yahoo.com','Miskolc','+4911765465','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1995','john.ostafil@hotmail.com','Miskolc','+5283413668','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1969','dániel.hamilton@yahoo.com','Krakow','+6143258194','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1984','giancarlo.monoczki@yahoo.com','Krakow','+8474998710','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1986','john.carrey@yahoo.com','New York','+6793103332','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1981','giancarlo.beöthy@hotmail.com','Krakow','+5603405879','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1990','andy.monoczki@yahoo.com','New York','+8976699189','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1978','giancarlo.monoczki@yahoo.com','Barcelona','+367453126','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1969','giancarlo.carrey@gmail.com','Miskolc','+437068795','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1973','mateusz.tompa@yahoo.com','Miskolc','+101535184','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1989','mateusz.molnár@hotmail.com','Barcelona','+1093633229','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1979','matthew.salamon@hotmail.com','New York','+572160625','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1973','dániel.carrey@yahoo.com','Barcelona','+4765793334','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1979','sándor.tompa@hotmail.com','Budapest','+1449921042','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1980','pál.hamilton@yahoo.com','Barcelona','+4642074524','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1968','mateusz.monoczki@hotmail.com','Barcelona','+462859585','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1990','sándor.szodoray@hotmail.com','Budapest','+7142153342','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1986','pál.tompa@hotmail.com','Miskolc','+6529311545','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1988','pál.beöthy@yahoo.com','Miskolc','+1553848056','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1986','giancarlo.carrey@yahoo.com','Miskolc','+9196308722','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1986','dániel.ostafil@gmail.com','Budapest','+5018234579','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1994','john.ostafil@yahoo.com','Barcelona','+3406398657','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1972','tamás.ostafil@gmail.com','New York','+8063300279','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1969','pál.hamilton@yahoo.com','Barcelona','+1431243190','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1992','miklós.ostafil@hotmail.com','Miskolc','+3365516768','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1978','matthew.obama@gmail.com','Miskolc','+4764634850','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1990','attila.obama@gmail.com','New York','+1403078530','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1965','dániel.ostafil@gmail.com','Krakow','+7311451235','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1971','mateusz.hamilton@hotmail.com','Budapest','+6371954352','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1988','tamás.carrey@yahoo.com','Krakow','+1272362237','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1966','sándor.ostafil@yahoo.com','Miskolc','+3074807413','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1969','dániel.monoczki@hotmail.com','Miskolc','+2276716522','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1990','john.hamilton@gmail.com','Budapest','+5426509786','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1985','attila.szodoray@gmail.com','New York','+4397685788','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1983','matthew.fisichella@gmail.com','Budapest','+5612953006','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1965','matthew.hamilton@hotmail.com','Barcelona','+8924324098','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1990','andy.ostafil@gmail.com','Miskolc','+172565421','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1976','dániel.lebron@yahoo.com','New York','+1291895180','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1976','john.salamon@hotmail.com','Barcelona','+9585249754','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1992','tim.lebron@yahoo.com','Miskolc','+1486597503','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1994','miklós.obama@yahoo.com','Miskolc','+1536254942','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1974','attila.tompa@gmail.com','Krakow','+7661267686','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1981','attila.fisichella@gmail.com','Miskolc','+2501844370','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1989','dániel.lebron@hotmail.com','Miskolc','+3156042414','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1984','pál.beöthy@hotmail.com','Miskolc','+3271021073','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1995','pál.tompa@hotmail.com','Budapest','+1074792694','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1995','john.ostafil@gmail.com','Budapest','+5673336872','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1969','mateusz.carrey@hotmail.com','Miskolc','+5078292915','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1965','giancarlo.ciacka@gmail.com','Barcelona','+4062656177','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1978','prezmek.szodoray@gmail.com','Barcelona','+3000928039','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1982','mateusz.tompa@hotmail.com','Miskolc','+1343371911','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1978','giancarlo.hamilton@yahoo.com','Barcelona','+1241002243','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1992','tamás.molnár@yahoo.com','Miskolc','+7658885650','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1968','tamás.ostafil@yahoo.com','Budapest','+1754625449','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1967','mateusz.carrey@yahoo.com','Barcelona','+6887570827','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1979','john.fisichella@gmail.com','Miskolc','+1558472491','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1977','sándor.monoczki@yahoo.com','Krakow','+1701017609','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1978','andy.obama@yahoo.com','New York','+292106625','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1992','miklós.ciacka@hotmail.com','Miskolc','+7456844769','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1974','giancarlo.obama@yahoo.com','Barcelona','+6873012092','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1995','dániel.fisichella@yahoo.com','Budapest','+4757063239','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1992','dániel.carrey@yahoo.com','Miskolc','+5555544641','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1977','attila.obama@yahoo.com','Miskolc','+7317845884','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1968','pál.monoczki@hotmail.com','New York','+9243439492','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1978','miklós.carrey@yahoo.com','Budapest','+4971800084','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1985','attila.obama@yahoo.com','Krakow','+3230947837','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1991','sándor.obama@hotmail.com','Budapest','+8375368544','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1975','matthew.tompa@yahoo.com','New York','+3520935500','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1966','mateusz.hamilton@hotmail.com','Krakow','+7331206355','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1972','giancarlo.hamilton@yahoo.com','Miskolc','+2193374102','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1979','matthew.carrey@yahoo.com','Budapest','+9093444710','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1982','prezmek.beöthy@yahoo.com','Krakow','+4209787596','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1987','mateusz.ciacka@yahoo.com','New York','+5757436363','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1992','prezmek.salamon@yahoo.com','New York','+4431924574','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1972','prezmek.molnár@yahoo.com','Krakow','+6917926262','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1965','tim.tompa@hotmail.com','Barcelona','+6851105875','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1965','dániel.ostafil@yahoo.com','Barcelona','+6627914100','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1977','pál.fisichella@yahoo.com','Miskolc','+3884334743','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1982','tim.fisichella@hotmail.com','Barcelona','+8015243294','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1993','tim.ciacka@gmail.com','Krakow','+9190382885','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1994','andy.molnár@gmail.com','New York','+9236174709','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1988','attila.lebron@gmail.com','Miskolc','+4348036573','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1967','tim.tompa@yahoo.com','Barcelona','+4095506061','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1986','matthew.monoczki@yahoo.com','Krakow','+6752363228','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1993','pál.fisichella@gmail.com','Miskolc','+9875630517','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1971','miklós.tompa@yahoo.com','New York','+3598028612','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1977','giancarlo.lebron@yahoo.com','Krakow','+8961056471','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1994','attila.ciacka@gmail.com','Miskolc','+185687326','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1983','attila.fisichella@hotmail.com','New York','+6887748828','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1990','pál.ciacka@yahoo.com','Miskolc','+6222492227','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1978','mateusz.ostafil@gmail.com','Miskolc','+9736340061','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1983','tim.hamilton@hotmail.com','Budapest','+9495680438','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1982','tim.monoczki@hotmail.com','Miskolc','+5628474740','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1982','miklós.molnár@hotmail.com','Barcelona','+8293382955','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1987','prezmek.hamilton@gmail.com','Krakow','+7736722070','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1970','sándor.salamon@yahoo.com','Barcelona','+2947296063','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1988','sándor.tompa@gmail.com','Barcelona','+1608097299','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Carrey','1986','pál.carrey@hotmail.com','Miskolc','+5220889703','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1972','prezmek.lebron@gmail.com','Barcelona','+5851385311','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1967','attila.fisichella@yahoo.com','Miskolc','+8460043948','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Monoczki','1970','andy.monoczki@gmail.com','New York','+4900875885','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1986','attila.hamilton@hotmail.com','Miskolc','+3696745355','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1973','sándor.molnár@hotmail.com','Budapest','+7007589389','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1991','sándor.beöthy@yahoo.com','Krakow','+8963077090','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1995','mateusz.ostafil@gmail.com','Miskolc','+8003660076','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1977','tamás.molnár@gmail.com','Krakow','+8727374035','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1990','john.tompa@yahoo.com','Barcelona','+8954577671','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1979','prezmek.fisichella@hotmail.com','New York','+9651273780','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1972','dániel.lebron@yahoo.com','Miskolc','+311696356','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1976','prezmek.obama@yahoo.com','Barcelona','+7831890331','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1967','john.ciacka@gmail.com','New York','+1106808455','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1984','dániel.molnár@gmail.com','New York','+5823332678','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1982','tim.salamon@hotmail.com','Budapest','+949675621','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1979','prezmek.monoczki@gmail.com','New York','+480111145','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1972','prezmek.carrey@gmail.com','Krakow','+6443228722','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1968','mateusz.monoczki@gmail.com','Barcelona','+9024332320','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1980','tamás.molnár@yahoo.com','Miskolc','+8194509060','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1968','attila.obama@yahoo.com','Budapest','+9030341572','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1994','mateusz.ciacka@yahoo.com','Krakow','+3556745433','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1976','attila.molnár@yahoo.com','Krakow','+7752341872','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1974','dániel.ciacka@yahoo.com','New York','+4162292995','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1983','attila.hamilton@gmail.com','Budapest','+315418518','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1993','prezmek.hamilton@gmail.com','Krakow','+5172240190','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1967','giancarlo.molnár@gmail.com','Miskolc','+7704494160','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1990','tim.obama@yahoo.com','Budapest','+7310245894','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1979','pál.ciacka@hotmail.com','New York','+8924900743','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1971','miklós.hamilton@hotmail.com','New York','+2912794754','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1969','john.szodoray@hotmail.com','Barcelona','+5532114259','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1967','sándor.szodoray@gmail.com','Miskolc','+8947980552','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1966','john.hamilton@yahoo.com','Krakow','+7902552228','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1979','attila.fisichella@yahoo.com','Krakow','+5774331563','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1967','pál.ostafil@gmail.com','Barcelona','+2366224676','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1968','attila.lebron@gmail.com','Miskolc','+3218552042','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1979','john.beöthy@hotmail.com','Miskolc','+5719859557','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1966','sándor.fisichella@gmail.com','Barcelona','+7926035793','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1993','dániel.ostafil@yahoo.com','New York','+1904980979','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1986','prezmek.ostafil@gmail.com','Barcelona','+3562199532','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1983','giancarlo.molnár@gmail.com','Barcelona','+6979556401','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1966','tamás.salamon@yahoo.com','Miskolc','+447828923','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1969','andy.obama@hotmail.com','Budapest','+2288347939','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1977','pál.szodoray@hotmail.com','Krakow','+601818470','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1965','dániel.molnár@hotmail.com','Miskolc','+471373173','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1970','sándor.molnár@yahoo.com','Miskolc','+3220768118','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1968','matthew.salamon@hotmail.com','Krakow','+5708979042','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1984','tim.monoczki@gmail.com','Budapest','+9816704556','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1995','andy.lebron@gmail.com','Barcelona','+6614114775','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1983','prezmek.ciacka@hotmail.com','Budapest','+6347151411','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1970','miklós.fisichella@yahoo.com','New York','+2595713692','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1981','andy.ostafil@yahoo.com','Budapest','+9730772507','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1971','tamás.carrey@gmail.com','Budapest','+8445311142','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1983','dániel.fisichella@yahoo.com','Barcelona','+6890069632','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1976','matthew.salamon@gmail.com','Budapest','+2404126845','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1972','attila.tompa@yahoo.com','Budapest','+7453364594','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1978','dániel.salamon@hotmail.com','Krakow','+9508313048','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1974','attila.ciacka@hotmail.com','Krakow','+8017504000','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1972','attila.tompa@yahoo.com','Miskolc','+5473051219','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1986','mateusz.ostafil@gmail.com','Budapest','+7135593737','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1989','attila.carrey@yahoo.com','Budapest','+6565243614','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1966','tim.molnár@gmail.com','Budapest','+5350249451','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1972','matthew.salamon@gmail.com','New York','+2759329986','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1980','sándor.beöthy@yahoo.com','New York','+876284765','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1974','tim.beöthy@hotmail.com','New York','+6745372962','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1987','tim.monoczki@hotmail.com','Krakow','+9659575789','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1984','tamás.carrey@hotmail.com','Miskolc','+7028601652','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1987','matthew.fisichella@yahoo.com','Barcelona','+8227367158','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1985','giancarlo.szodoray@hotmail.com','New York','+7757817787','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1989','tamás.szodoray@yahoo.com','Budapest','+9080537751','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1978','prezmek.obama@hotmail.com','Miskolc','+3485377991','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1989','andy.lebron@hotmail.com','Budapest','+8113726606','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1991','dániel.molnár@yahoo.com','Budapest','+5082336077','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1972','tamás.lebron@yahoo.com','New York','+1047195674','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1984','prezmek.salamon@hotmail.com','Miskolc','+1364822352','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1986','miklós.beöthy@yahoo.com','Miskolc','+4431161297','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1965','tim.monoczki@gmail.com','New York','+1477333110','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1970','tim.obama@gmail.com','Budapest','+8882644984','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1990','mateusz.hamilton@yahoo.com','New York','+8949329477','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1990','mateusz.ciacka@hotmail.com','Krakow','+1334055340','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1973','dániel.carrey@hotmail.com','New York','+7073549973','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1995','dániel.fisichella@gmail.com','Miskolc','+5202272567','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1985','mateusz.fisichella@gmail.com','New York','+2843402560','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1993','giancarlo.szodoray@hotmail.com','Miskolc','+7114724542','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1975','tim.hamilton@yahoo.com','Barcelona','+6246354570','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1981','pál.tompa@hotmail.com','Krakow','+2431895813','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1979','john.monoczki@hotmail.com','Miskolc','+2420439258','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1979','mateusz.beöthy@yahoo.com','New York','+4304797945','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1977','sándor.salamon@gmail.com','Krakow','+2506847419','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1988','andy.salamon@yahoo.com','Budapest','+3785771969','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1976','andy.ostafil@hotmail.com','Miskolc','+3637728761','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1994','tamás.monoczki@gmail.com','Barcelona','+8325905158','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1967','sándor.szodoray@yahoo.com','Krakow','+841333511','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1970','tim.carrey@hotmail.com','Krakow','+8555314492','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1972','tim.lebron@gmail.com','New York','+7337448089','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Szodoray','1968','pál.szodoray@hotmail.com','New York','+5581373376','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1978','miklós.lebron@gmail.com','Budapest','+8480943289','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1982','tamás.ostafil@yahoo.com','Miskolc','+8064159590','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1965','sándor.ciacka@gmail.com','Miskolc','+9266454706','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1971','prezmek.fisichella@gmail.com','Krakow','+3883570773','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1973','tim.lebron@gmail.com','New York','+1710290996','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1994','prezmek.carrey@gmail.com','Miskolc','+3913561283','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1994','attila.salamon@hotmail.com','New York','+7501046854','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1977','dániel.fisichella@yahoo.com','New York','+4852813213','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1983','tamás.beöthy@gmail.com','Budapest','+43028824','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1970','sándor.salamon@gmail.com','Krakow','+754166553','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1981','tamás.tompa@gmail.com','Krakow','+9191766029','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1976','sándor.hamilton@yahoo.com','New York','+13073901','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1965','attila.salamon@yahoo.com','Miskolc','+8715343980','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1985','tamás.obama@yahoo.com','Barcelona','+6436850082','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1972','tamás.beöthy@gmail.com','Miskolc','+9331609969','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1973','prezmek.carrey@yahoo.com','Krakow','+4079835425','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1972','john.carrey@gmail.com','Budapest','+49826351','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1974','prezmek.hamilton@hotmail.com','Budapest','+6366597120','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1973','dániel.beöthy@hotmail.com','Budapest','+8259906967','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1977','tamás.salamon@yahoo.com','Krakow','+6113616887','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1992','mateusz.tompa@yahoo.com','Krakow','+9959002732','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1981','john.tompa@gmail.com','Miskolc','+8536850392','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1993','pál.molnár@gmail.com','Miskolc','+6867553189','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1987','sándor.obama@yahoo.com','Krakow','+5627806786','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Carrey','1983','mateusz.carrey@gmail.com','New York','+3691096467','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1975','john.molnár@gmail.com','Barcelona','+454845485','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1969','attila.ciacka@yahoo.com','Miskolc','+6894735634','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1975','giancarlo.hamilton@hotmail.com','Krakow','+1771757304','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1988','miklós.ostafil@gmail.com','Barcelona','+4270327548','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1976','sándor.monoczki@hotmail.com','Miskolc','+6889192324','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1987','giancarlo.obama@hotmail.com','Budapest','+8731289522','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1976','mateusz.molnár@hotmail.com','Budapest','+5391948926','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1993','mateusz.ciacka@gmail.com','Krakow','+7301224832','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1974','john.tompa@yahoo.com','Budapest','+7432515828','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1988','mateusz.szodoray@yahoo.com','New York','+7034236755','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1986','dániel.carrey@gmail.com','New York','+1050727494','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1969','mateusz.hamilton@hotmail.com','New York','+7704396523','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1978','mateusz.ostafil@hotmail.com','Krakow','+8282492989','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1968','john.carrey@yahoo.com','New York','+3419606065','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1976','dániel.szodoray@hotmail.com','Barcelona','+1143673490','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1967','tim.ciacka@gmail.com','Barcelona','+2141767135','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1988','prezmek.ciacka@yahoo.com','Barcelona','+1255708304','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1990','matthew.monoczki@yahoo.com','Krakow','+3365938022','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1994','miklós.ciacka@gmail.com','New York','+3600186285','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1965','matthew.lebron@yahoo.com','Barcelona','+280574992','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1993','attila.salamon@gmail.com','Miskolc','+9729303899','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1977','giancarlo.ostafil@hotmail.com','Budapest','+3153729569','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1992','pál.obama@gmail.com','New York','+4056305750','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1985','tamás.ostafil@yahoo.com','Barcelona','+4878933672','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1967','miklós.hamilton@yahoo.com','Budapest','+2048803714','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1990','miklós.molnár@yahoo.com','Budapest','+5049217044','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1982','sándor.ciacka@yahoo.com','Barcelona','+9200498140','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1971','dániel.ciacka@yahoo.com','Krakow','+9734276204','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1986','sándor.beöthy@yahoo.com','Barcelona','+187494870','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1986','prezmek.molnár@hotmail.com','Krakow','+7732161418','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1995','sándor.tompa@yahoo.com','Budapest','+4621694870','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1989','dániel.szodoray@gmail.com','Budapest','+4668454689','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1982','prezmek.monoczki@yahoo.com','New York','+1777507149','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1980','john.carrey@hotmail.com','Miskolc','+9960774547','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1966','miklós.salamon@yahoo.com','Barcelona','+6966935857','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1988','mateusz.lebron@yahoo.com','Barcelona','+3552441582','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1979','dániel.salamon@yahoo.com','Budapest','+9259211333','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1990','giancarlo.molnár@hotmail.com','Budapest','+5684926078','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1965','attila.salamon@hotmail.com','Miskolc','+7014898248','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1974','attila.salamon@hotmail.com','Krakow','+2710489770','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1982','dániel.lebron@yahoo.com','Barcelona','+2623421494','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1965','tim.salamon@yahoo.com','New York','+293323600','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1982','sándor.fisichella@yahoo.com','Miskolc','+2574738532','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1988','prezmek.molnár@hotmail.com','Barcelona','+7143265671','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1965','dániel.szodoray@hotmail.com','Krakow','+3017175946','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1965','tamás.obama@yahoo.com','Barcelona','+8933594694','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1967','pál.fisichella@yahoo.com','Barcelona','+7877593141','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1983','mateusz.tompa@yahoo.com','Krakow','+8714390279','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1978','matthew.hamilton@hotmail.com','Barcelona','+9875118711','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1971','prezmek.fisichella@yahoo.com','Miskolc','+9899529634','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1968','sándor.ostafil@yahoo.com','New York','+4927015891','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1965','giancarlo.beöthy@hotmail.com','Budapest','+6903683602','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1969','miklós.salamon@hotmail.com','Barcelona','+1528862661','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1970','sándor.hamilton@yahoo.com','Barcelona','+8679288027','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1971','prezmek.obama@yahoo.com','New York','+8569062077','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1990','tim.ciacka@yahoo.com','Barcelona','+1793983344','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1974','tim.ciacka@gmail.com','Krakow','+7972001594','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1975','pál.monoczki@hotmail.com','Krakow','+9988141736','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1972','tim.obama@yahoo.com','New York','+3506349797','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Tompa','1989','tamás.tompa@yahoo.com','Krakow','+135239564','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1977','mateusz.fisichella@gmail.com','Miskolc','+9976186324','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1984','attila.obama@gmail.com','Barcelona','+9932622432','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1972','pál.tompa@gmail.com','Barcelona','+2611516829','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1986','tamás.monoczki@hotmail.com','Budapest','+3889439428','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1987','tim.ostafil@hotmail.com','Miskolc','+5371863234','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1993','john.szodoray@yahoo.com','Krakow','+6541546534','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1980','prezmek.szodoray@gmail.com','Budapest','+7466545414','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1968','prezmek.obama@gmail.com','Krakow','+8733775208','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1989','sándor.beöthy@yahoo.com','Budapest','+1759484504','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1987','mateusz.monoczki@yahoo.com','New York','+1170452131','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1965','sándor.beöthy@gmail.com','Krakow','+655637753','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1968','sándor.tompa@yahoo.com','Budapest','+3958490472','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1978','andy.molnár@gmail.com','New York','+7310740048','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1965','tamás.molnár@gmail.com','New York','+8971503558','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1970','pál.hamilton@yahoo.com','Barcelona','+5973107175','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1984','giancarlo.tompa@yahoo.com','Barcelona','+3693298779','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1983','mateusz.ostafil@hotmail.com','Krakow','+8068762748','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1967','andy.obama@hotmail.com','New York','+8757782416','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1994','mateusz.monoczki@hotmail.com','Krakow','+8797621166','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1967','mateusz.szodoray@yahoo.com','Budapest','+8937219420','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1975','miklós.obama@gmail.com','New York','+1425309646','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1974','matthew.obama@gmail.com','New York','+88547302','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1988','pál.salamon@hotmail.com','Barcelona','+7714641756','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1993','prezmek.beöthy@gmail.com','Miskolc','+1080812529','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1987','giancarlo.salamon@hotmail.com','Budapest','+7797688970','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1993','attila.fisichella@hotmail.com','Budapest','+1921246383','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1983','john.salamon@gmail.com','Miskolc','+7770298938','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1969','tamás.fisichella@yahoo.com','Barcelona','+235485838','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1980','matthew.fisichella@hotmail.com','Miskolc','+7549694715','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1994','dániel.hamilton@gmail.com','Miskolc','+2168497160','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1980','john.monoczki@gmail.com','Miskolc','+1051799317','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1971','andy.obama@hotmail.com','Budapest','+3914418908','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1981','attila.fisichella@hotmail.com','New York','+1293281440','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1976','prezmek.szodoray@yahoo.com','New York','+9049189331','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1972','dániel.fisichella@yahoo.com','Krakow','+3460878854','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1991','matthew.ostafil@yahoo.com','Krakow','+5652631397','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1988','mateusz.monoczki@yahoo.com','Miskolc','+4645249472','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1992','sándor.monoczki@gmail.com','New York','+5855060771','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ostafil','1991','john.ostafil@hotmail.com','Krakow','+3368209220','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1971','sándor.ostafil@gmail.com','Miskolc','+7186218488','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1974','john.molnár@gmail.com','Miskolc','+9852523751','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1967','miklós.ostafil@hotmail.com','Krakow','+1699970033','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1991','tim.carrey@hotmail.com','Krakow','+4877342706','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1976','prezmek.monoczki@yahoo.com','New York','+1010681501','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1968','prezmek.monoczki@hotmail.com','New York','+106270008','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1990','mateusz.molnár@yahoo.com','New York','+9603585343','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1969','matthew.hamilton@gmail.com','Miskolc','+7791742063','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1965','miklós.tompa@hotmail.com','Barcelona','+8282932002','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1993','john.salamon@yahoo.com','Miskolc','+8913837102','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1987','attila.lebron@hotmail.com','Miskolc','+3808775602','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1966','sándor.obama@gmail.com','New York','+5512498488','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1988','pál.tompa@yahoo.com','Budapest','+512932036','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1977','tamás.lebron@yahoo.com','Barcelona','+5153283680','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1995','mateusz.szodoray@gmail.com','Budapest','+7957129059','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Szodoray','1969','miklós.szodoray@gmail.com','New York','+4405698203','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1988','dániel.obama@yahoo.com','New York','+4746879506','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1989','prezmek.carrey@gmail.com','New York','+6707177476','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1969','pál.fisichella@yahoo.com','Krakow','+7785319134','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1981','miklós.fisichella@hotmail.com','Budapest','+49971043','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1970','john.molnár@hotmail.com','Budapest','+2065651205','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1994','tamás.beöthy@gmail.com','New York','+2679750735','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1994','mateusz.beöthy@hotmail.com','Miskolc','+680795645','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Molnár','1985','giancarlo.molnár@hotmail.com','Budapest','+3445527650','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1995','sándor.tompa@hotmail.com','Krakow','+4028694466','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1977','giancarlo.hamilton@hotmail.com','Barcelona','+8652094706','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1970','sándor.szodoray@gmail.com','New York','+809357089','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1975','attila.salamon@yahoo.com','Barcelona','+5727537515','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1965','dániel.monoczki@hotmail.com','Krakow','+1324653986','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1978','tamás.monoczki@hotmail.com','Miskolc','+7970867713','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1993','attila.carrey@yahoo.com','New York','+6205860950','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1989','pál.beöthy@yahoo.com','Budapest','+3177858878','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1981','prezmek.lebron@hotmail.com','Miskolc','+7387423173','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1969','tamás.szodoray@yahoo.com','Miskolc','+7109947142','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1966','tim.carrey@yahoo.com','Barcelona','+2708784521','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1992','andy.tompa@yahoo.com','Barcelona','+6129095703','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1975','tamás.lebron@gmail.com','Budapest','+6951116610','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1975','dániel.carrey@gmail.com','Barcelona','+7017114034','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1967','tamás.lebron@yahoo.com','Miskolc','+7406196533','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1975','john.fisichella@yahoo.com','Krakow','+6969538793','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1973','andy.molnár@hotmail.com','Krakow','+1366832385','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1989','sándor.szodoray@hotmail.com','New York','+2281491542','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1983','miklós.lebron@hotmail.com','Miskolc','+7346544315','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1982','sándor.molnár@gmail.com','Budapest','+5090728685','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1976','andy.beöthy@hotmail.com','Barcelona','+9453299795','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1972','prezmek.molnár@gmail.com','Budapest','+8143485260','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1985','andy.hamilton@gmail.com','Krakow','+3146355955','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ciacka','1975','tim.ciacka@hotmail.com','New York','+5523916734','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1969','matthew.molnár@yahoo.com','Krakow','+5042791363','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1965','attila.hamilton@gmail.com','Barcelona','+4954692309','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1987','giancarlo.lebron@gmail.com','Budapest','+3515625355','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1968','giancarlo.ostafil@yahoo.com','Barcelona','+7109507489','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1966','miklós.monoczki@yahoo.com','New York','+8018071687','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1972','pál.obama@hotmail.com','Budapest','+5868414656','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1981','attila.tompa@gmail.com','New York','+6861709946','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1979','john.molnár@yahoo.com','Barcelona','+4878008051','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1986','tamás.szodoray@yahoo.com','Krakow','+8711792456','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1975','dániel.carrey@hotmail.com','Krakow','+9701110854','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1968','tim.carrey@gmail.com','Miskolc','+3115991511','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1992','pál.monoczki@gmail.com','New York','+8015144370','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Hamilton','1984','prezmek.hamilton@yahoo.com','Krakow','+8406744467','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1990','dániel.ciacka@hotmail.com','Miskolc','+5028385208','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1994','pál.ostafil@hotmail.com','Miskolc','+9133675264','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1966','matthew.beöthy@hotmail.com','Barcelona','+4431758321','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Salamon','1991','miklós.salamon@gmail.com','Barcelona','+9952676986','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1966','tamás.beöthy@hotmail.com','New York','+3399566137','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1975','matthew.ciacka@hotmail.com','Miskolc','+4043229632','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1988','prezmek.beöthy@gmail.com','Barcelona','+366979622','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1965','sándor.hamilton@yahoo.com','Budapest','+9760150054','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1979','miklós.molnár@hotmail.com','Budapest','+6070995276','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1969','mateusz.lebron@hotmail.com','Krakow','+6081981515','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1972','pál.tompa@hotmail.com','Miskolc','+5745839484','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1985','matthew.salamon@gmail.com','Budapest','+57227383','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1986','tim.tompa@yahoo.com','Barcelona','+8689340113','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1979','attila.tompa@hotmail.com','Barcelona','+3019949198','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1969','andy.molnár@hotmail.com','New York','+2451737097','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1980','andy.tompa@yahoo.com','Krakow','+8230227190','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ostafil','1985','sándor.ostafil@gmail.com','Krakow','+9600215428','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1981','andy.lebron@yahoo.com','Budapest','+3849279088','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1977','attila.lebron@yahoo.com','Miskolc','+2349938617','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1980','pál.monoczki@gmail.com','New York','+7060380562','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1982','dániel.molnár@yahoo.com','Barcelona','+715710997','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1985','dániel.szodoray@yahoo.com','Miskolc','+9500002910','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1988','andy.obama@gmail.com','Barcelona','+9082067663','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1971','prezmek.obama@hotmail.com','Barcelona','+5918775350','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Carrey','1986','matthew.carrey@hotmail.com','New York','+4378056738','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1985','tim.hamilton@hotmail.com','Budapest','+2743918215','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1980','mateusz.monoczki@hotmail.com','Barcelona','+671117680','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1975','prezmek.beöthy@gmail.com','Barcelona','+6990267637','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1975','giancarlo.beöthy@gmail.com','Barcelona','+8037572056','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1989','dániel.salamon@yahoo.com','Krakow','+2957270665','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1981','miklós.molnár@hotmail.com','New York','+9996505037','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1976','tamás.lebron@hotmail.com','New York','+3467037913','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1971','john.beöthy@gmail.com','Barcelona','+2529254596','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1977','mateusz.szodoray@yahoo.com','Barcelona','+3765920857','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Szodoray','1975','andy.szodoray@yahoo.com','Miskolc','+9404333248','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1993','tamás.molnár@hotmail.com','Barcelona','+5021447418','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1983','pál.hamilton@gmail.com','Miskolc','+1371608000','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1989','prezmek.szodoray@gmail.com','New York','+4587560362','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1993','miklós.ciacka@gmail.com','Krakow','+6792909340','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ostafil','1975','attila.ostafil@gmail.com','Barcelona','+1427434764','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1973','matthew.ciacka@hotmail.com','Krakow','+6029131625','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1968','prezmek.monoczki@yahoo.com','Barcelona','+5514317481','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1989','attila.lebron@yahoo.com','New York','+1400221266','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1967','giancarlo.hamilton@gmail.com','New York','+9521879590','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1983','mateusz.salamon@yahoo.com','Miskolc','+3460886913','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1979','pál.hamilton@yahoo.com','Budapest','+8562910609','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1993','andy.hamilton@gmail.com','Budapest','+5950440390','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1989','attila.molnár@yahoo.com','Barcelona','+8241538028','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1973','dániel.monoczki@yahoo.com','Barcelona','+7110956616','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1965','tamás.ostafil@gmail.com','Barcelona','+1213038160','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1968','matthew.fisichella@gmail.com','Barcelona','+8905151289','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1975','dániel.fisichella@hotmail.com','Barcelona','+2723140621','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1982','sándor.beöthy@gmail.com','New York','+5488661061','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1981','prezmek.beöthy@yahoo.com','New York','+8945154846','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1983','sándor.szodoray@gmail.com','Budapest','+875666902','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1967','pál.salamon@hotmail.com','Budapest','+7065231614','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1985','pál.salamon@yahoo.com','Budapest','+1841755120','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1971','tim.carrey@yahoo.com','Budapest','+9589963004','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1991','tamás.obama@hotmail.com','Barcelona','+8724112014','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1992','andy.fisichella@hotmail.com','Miskolc','+2717339015','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1969','mateusz.ostafil@hotmail.com','Budapest','+6644159500','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1988','pál.ostafil@gmail.com','Barcelona','+1828008522','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1992','tim.obama@yahoo.com','New York','+3701474656','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1979','mateusz.hamilton@gmail.com','Budapest','+4162320496','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1978','prezmek.monoczki@hotmail.com','New York','+6856665046','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1975','dániel.obama@yahoo.com','Miskolc','+7199137985','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1965','pál.molnár@yahoo.com','Budapest','+8501219956','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1993','attila.beöthy@yahoo.com','New York','+6974304339','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Szodoray','1985','attila.szodoray@gmail.com','Miskolc','+4330332261','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1981','mateusz.fisichella@gmail.com','New York','+5086626113','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1994','dániel.ciacka@hotmail.com','Miskolc','+2682369940','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1981','tamás.szodoray@yahoo.com','Barcelona','+1377511701','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1982','andy.hamilton@hotmail.com','Krakow','+2535064430','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Lebron','1973','giancarlo.lebron@hotmail.com','Miskolc','+2506949462','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1973','attila.obama@yahoo.com','Barcelona','+7677998113','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1973','prezmek.molnár@hotmail.com','Krakow','+2008921624','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1974','miklós.monoczki@gmail.com','Miskolc','+312848388','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1965','attila.beöthy@gmail.com','Krakow','+2026032313','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1965','prezmek.carrey@yahoo.com','Miskolc','+602784018','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1985','matthew.hamilton@yahoo.com','Barcelona','+6550429043','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1982','dániel.fisichella@hotmail.com','New York','+2887711245','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1967','john.szodoray@hotmail.com','Miskolc','+3108361825','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1983','tim.obama@hotmail.com','Barcelona','+309512827','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1966','matthew.szodoray@yahoo.com','Barcelona','+4627713774','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1983','andy.lebron@hotmail.com','Krakow','+1695170211','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1989','miklós.hamilton@yahoo.com','Barcelona','+5747990710','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1988','sándor.molnár@gmail.com','New York','+6050162611','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1994','sándor.hamilton@gmail.com','Miskolc','+3715495182','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1985','attila.fisichella@yahoo.com','Barcelona','+2440515698','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1968','tamás.ostafil@hotmail.com','Krakow','+7599869121','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1974','sándor.molnár@yahoo.com','Krakow','+8852851835','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Monoczki','1977','mateusz.monoczki@gmail.com','Miskolc','+1246555966','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1974','pál.hamilton@yahoo.com','Krakow','+6691396160','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1969','tim.carrey@yahoo.com','Barcelona','+8674408202','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1971','attila.carrey@gmail.com','Krakow','+7360871883','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1995','miklós.carrey@hotmail.com','Krakow','+8198148139','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1973','andy.ostafil@yahoo.com','Barcelona','+1285268944','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1971','tamás.hamilton@hotmail.com','Barcelona','+1827631807','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Obama','1985','tim.obama@gmail.com','Barcelona','+2348677586','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1969','tamás.szodoray@gmail.com','Barcelona','+4573136289','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1986','attila.obama@gmail.com','Barcelona','+1909870777','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Beöthy','1985','tamás.beöthy@yahoo.com','Miskolc','+257600875','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1966','mateusz.molnár@yahoo.com','Krakow','+7657064662','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ostafil','1977','mateusz.ostafil@yahoo.com','Krakow','+948168598','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1978','sándor.fisichella@yahoo.com','Miskolc','+992230955','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1989','prezmek.salamon@hotmail.com','Budapest','+784102277','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1971','sándor.hamilton@hotmail.com','Miskolc','+1578321320','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1975','john.beöthy@yahoo.com','Budapest','+5501046351','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1983','tamás.szodoray@yahoo.com','Barcelona','+7400774578','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1975','tamás.carrey@gmail.com','Barcelona','+692796917','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1995','andy.molnár@gmail.com','Krakow','+5724912734','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Carrey','1969','attila.carrey@gmail.com','Budapest','+6390506249','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1973','dániel.ostafil@yahoo.com','Krakow','+6688070680','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1995','sándor.obama@hotmail.com','Barcelona','+5171967407','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1992','dániel.hamilton@gmail.com','New York','+7171747254','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1990','miklós.lebron@gmail.com','Budapest','+4126696817','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1967','giancarlo.monoczki@gmail.com','New York','+3006947346','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1973','miklós.monoczki@gmail.com','New York','+4675016455','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1973','prezmek.salamon@gmail.com','New York','+7379642058','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1992','attila.molnár@yahoo.com','Budapest','+314886712','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1977','attila.fisichella@gmail.com','Krakow','+4856936739','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Carrey','1972','sándor.carrey@yahoo.com','Krakow','+2562169287','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Molnár','1983','tim.molnár@hotmail.com','Budapest','+3435882737','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Tompa','1993','attila.tompa@yahoo.com','Krakow','+4498410503','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Molnár','1992','miklós.molnár@gmail.com','Budapest','+9656807469','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1979','matthew.molnár@gmail.com','Barcelona','+5434700999','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Obama','1968','dániel.obama@gmail.com','New York','+8136441740','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1993','mateusz.fisichella@hotmail.com','Budapest','+744316911','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1986','dániel.salamon@hotmail.com','Barcelona','+4887939873','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1994','prezmek.ciacka@hotmail.com','Budapest','+2632303955','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1976','sándor.monoczki@gmail.com','Budapest','+8450643909','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Hamilton','1971','miklós.hamilton@gmail.com','New York','+6646366249','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Monoczki','1967','matthew.monoczki@yahoo.com','Barcelona','+2646731585','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1967','prezmek.fisichella@hotmail.com','Krakow','+2213352163','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1978','tamás.molnár@yahoo.com','Miskolc','+4347210787','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1969','giancarlo.carrey@hotmail.com','Barcelona','+6340841057','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1985','andy.beöthy@gmail.com','Krakow','+89245268','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1980','mateusz.szodoray@yahoo.com','Miskolc','+4370797469','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1989','pál.tompa@hotmail.com','New York','+9668630214','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1987','attila.monoczki@gmail.com','Krakow','+2256771277','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Hamilton','1989','sándor.hamilton@gmail.com','Budapest','+5893272655','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1974','miklós.fisichella@hotmail.com','Krakow','+8813571572','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1975','prezmek.salamon@gmail.com','New York','+5848222634','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Molnár','1979','pál.molnár@hotmail.com','Barcelona','+4298357516','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1992','andy.lebron@gmail.com','Barcelona','+8443559988','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Fisichella','1989','andy.fisichella@gmail.com','Barcelona','+525087482','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1972','mateusz.obama@hotmail.com','Miskolc','+7762968565','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1988','mateusz.szodoray@yahoo.com','Barcelona','+5171049342','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Monoczki','1981','dániel.monoczki@gmail.com','Miskolc','+7110930339','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1968','mateusz.molnár@yahoo.com','Budapest','+2100493386','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1993','giancarlo.tompa@yahoo.com','Miskolc','+3597801666','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1971','prezmek.ciacka@yahoo.com','Krakow','+704780937','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1985','prezmek.ostafil@hotmail.com','Krakow','+5203255420','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1970','tamás.hamilton@gmail.com','Miskolc','+3850282809','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1974','sándor.fisichella@hotmail.com','New York','+1422199365','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1973','john.tompa@yahoo.com','Krakow','+646249219','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1993','prezmek.molnár@hotmail.com','Budapest','+7665541704','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1970','matthew.molnár@hotmail.com','New York','+3646225488','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1984','john.obama@gmail.com','Krakow','+5265544696','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Carrey','1979','tamás.carrey@yahoo.com','Budapest','+8837998123','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1972','mateusz.hamilton@gmail.com','Krakow','+7336449197','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1965','tamás.obama@gmail.com','Krakow','+8814319750','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1973','prezmek.ostafil@hotmail.com','New York','+8860681785','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Obama','1989','prezmek.obama@hotmail.com','New York','+916007293','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Szodoray','1969','sándor.szodoray@gmail.com','Miskolc','+200081246','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1994','andy.ostafil@hotmail.com','Barcelona','+1545920739','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1987','prezmek.lebron@yahoo.com','Krakow','+6527716828','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1988','prezmek.tompa@yahoo.com','Barcelona','+5072318816','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1987','giancarlo.salamon@gmail.com','Budapest','+9262932610','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Tompa','1992','john.tompa@yahoo.com','Budapest','+12370954','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1976','giancarlo.szodoray@hotmail.com','Budapest','+4677377344','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1969','miklós.fisichella@yahoo.com','Miskolc','+7383752260','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1991','matthew.salamon@hotmail.com','Budapest','+6286358334','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1983','tim.fisichella@yahoo.com','Barcelona','+5688520123','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1966','mateusz.fisichella@yahoo.com','Krakow','+3967684879','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1981','dániel.ostafil@yahoo.com','Krakow','+3121829607','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1987','matthew.fisichella@hotmail.com','New York','+8491057906','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1965','attila.lebron@hotmail.com','Miskolc','+2444800770','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ciacka','1976','giancarlo.ciacka@hotmail.com','Krakow','+990126372','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1983','mateusz.beöthy@gmail.com','Miskolc','+8001240017','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1972','andy.ciacka@hotmail.com','Miskolc','+5140452680','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1989','matthew.beöthy@hotmail.com','Barcelona','+1181611891','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1981','andy.salamon@yahoo.com','Barcelona','+2723513229','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1984','dániel.szodoray@hotmail.com','Krakow','+5455780783','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1979','tamás.hamilton@yahoo.com','Krakow','+7517808425','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1993','tim.carrey@yahoo.com','New York','+780180629','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ciacka','1977','dániel.ciacka@yahoo.com','Miskolc','+9272781385','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Szodoray','1979','matthew.szodoray@yahoo.com','New York','+9857571505','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1983','attila.beöthy@yahoo.com','Budapest','+4942651937','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Beöthy','1970','john.beöthy@gmail.com','Barcelona','+5194102335','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1968','attila.hamilton@gmail.com','Budapest','+3057886116','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1969','prezmek.ostafil@gmail.com','Miskolc','+4856302003','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Szodoray','1977','mateusz.szodoray@yahoo.com','New York','+491785373','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1977','miklós.lebron@yahoo.com','Miskolc','+8305993014','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1990','tamás.szodoray@gmail.com','Budapest','+7642136361','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1985','attila.obama@yahoo.com','Miskolc','+996551764','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1967','john.lebron@gmail.com','Barcelona','+2381701041','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Szodoray','1993','dániel.szodoray@yahoo.com','New York','+2810163957','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1995','dániel.molnár@hotmail.com','New York','+8769795048','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1965','giancarlo.beöthy@gmail.com','New York','+6597936407','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Beöthy','1976','tim.beöthy@gmail.com','Budapest','+8762693344','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ostafil','1974','matthew.ostafil@yahoo.com','Budapest','+8420420524','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1981','john.hamilton@gmail.com','Budapest','+7569482553','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1978','dániel.lebron@hotmail.com','New York','+8318216009','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1972','tamás.salamon@yahoo.com','Budapest','+3251510636','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1974','dániel.molnár@gmail.com','Budapest','+7291965895','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Monoczki','1977','attila.monoczki@hotmail.com','Krakow','+6050283797','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1990','attila.ciacka@yahoo.com','Budapest','+612695633','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Carrey','1977','tim.carrey@hotmail.com','New York','+7324832090','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Molnár','1978','andy.molnár@yahoo.com','Barcelona','+4792302859','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1995','matthew.ciacka@yahoo.com','Krakow','+1825498397','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ciacka','1976','andy.ciacka@gmail.com','Budapest','+1524899058','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1980','john.obama@hotmail.com','Barcelona','+1507791014','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Carrey','1986','john.carrey@hotmail.com','Miskolc','+446303313','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Lebron','1977','attila.lebron@gmail.com','Miskolc','+2394023535','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Beöthy','1966','giancarlo.beöthy@gmail.com','New York','+843204730','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1984','miklós.ciacka@hotmail.com','Budapest','+7832104209','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1980','attila.ciacka@yahoo.com','Krakow','+6533514191','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Obama','1973','attila.obama@gmail.com','Barcelona','+7565756553','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1987','sándor.molnár@hotmail.com','Krakow','+7077647066','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1989','dániel.ostafil@hotmail.com','Barcelona','+1391385010','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1979','attila.molnár@gmail.com','Krakow','+5065082783','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Carrey','1982','dániel.carrey@yahoo.com','Krakow','+3346027207','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Beöthy','1975','prezmek.beöthy@gmail.com','Budapest','+4912816119','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1988','pál.fisichella@yahoo.com','Krakow','+6691163958','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Obama','1986','giancarlo.obama@hotmail.com','Barcelona','+9448727088','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Salamon','1978','andy.salamon@gmail.com','Budapest','+2214058629','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Salamon','1966','matthew.salamon@yahoo.com','Barcelona','+8242151213','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Salamon','1982','tim.salamon@yahoo.com','Barcelona','+4018273434','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1976','pál.obama@hotmail.com','New York','+7505912600','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Fisichella','1977','sándor.fisichella@yahoo.com','Miskolc','+179099938','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Monoczki','1969','tamás.monoczki@gmail.com','Miskolc','+9729383139','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Hamilton','1977','john.hamilton@gmail.com','Miskolc','+4447410802','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1967','attila.salamon@yahoo.com','Barcelona','+7779911247','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1967','miklós.tompa@gmail.com','Budapest','+9171901339','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1980','tamás.szodoray@hotmail.com','Krakow','+9563501608','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1988','pál.salamon@gmail.com','Miskolc','+2791511903','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1992','prezmek.molnár@yahoo.com','Barcelona','+9061225557','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Tompa','1986','andy.tompa@yahoo.com','Miskolc','+6271602326','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1980','sándor.salamon@gmail.com','Barcelona','+3648836690','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1993','tim.szodoray@yahoo.com','Barcelona','+5752902551','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Fisichella','1984','tamás.fisichella@gmail.com','New York','+1748598246','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1975','tim.ostafil@hotmail.com','Krakow','+3868109336','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1989','matthew.tompa@yahoo.com','Miskolc','+2054232826','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Beöthy','1994','dániel.beöthy@hotmail.com','Krakow','+4654818423','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1978','john.molnár@hotmail.com','Miskolc','+1038493393','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Molnár','1971','attila.molnár@gmail.com','Miskolc','+3814974605','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Tompa','1977','mateusz.tompa@hotmail.com','New York','+9784087132','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Szodoray','1984','tamás.szodoray@hotmail.com','Krakow','+3170445467','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1970','attila.beöthy@gmail.com','Krakow','+9847211796','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1994','giancarlo.fisichella@gmail.com','Krakow','+7882330959','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1989','andy.lebron@hotmail.com','New York','+9425840001','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1991','mateusz.salamon@hotmail.com','Miskolc','+5322384057','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1974','matthew.obama@hotmail.com','Miskolc','+2340041187','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Ciacka','1987','matthew.ciacka@yahoo.com','Barcelona','+2472479467','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Beöthy','1984','mateusz.beöthy@hotmail.com','Budapest','+7209348600','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1995','john.molnár@gmail.com','Budapest','+6431510346','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1982','sándor.salamon@yahoo.com','Barcelona','+8011515717','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Fisichella','1972','tim.fisichella@yahoo.com','Krakow','+3939000794','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Molnár','1976','dániel.molnár@gmail.com','Budapest','+3573231606','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Szodoray','1995','john.szodoray@hotmail.com','Miskolc','+9393014150','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Monoczki','1982','prezmek.monoczki@yahoo.com','Budapest','+3740372682','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Beöthy','1975','sándor.beöthy@hotmail.com','Miskolc','+2326505429','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1968','prezmek.salamon@hotmail.com','Barcelona','+9187327051','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Ostafil','1984','tim.ostafil@hotmail.com','Krakow','+6647236867','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1970','mateusz.ciacka@hotmail.com','New York','+161146088','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Molnár','1968','john.molnár@gmail.com','Barcelona','+3209143828','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1983','andy.lebron@gmail.com','New York','+8207595608','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Obama','1995','sándor.obama@gmail.com','Barcelona','+5681469402','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Fisichella','1984','matthew.fisichella@yahoo.com','Krakow','+6886420681','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Ciacka','1975','mateusz.ciacka@hotmail.com','Krakow','+3747340603','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1986','tim.szodoray@gmail.com','New York','+5423582491','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1967','dániel.salamon@yahoo.com','New York','+6853200671','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Lebron','1977','prezmek.lebron@yahoo.com','Barcelona','+5427185929','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1966','giancarlo.tompa@yahoo.com','New York','+1886137080','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Tompa','1992','miklós.tompa@hotmail.com','Miskolc','+955962420','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Lebron','1965','andy.lebron@yahoo.com','Barcelona','+705285501','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1974','prezmek.ostafil@gmail.com','New York','+2911008972','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1986','mateusz.molnár@gmail.com','New York','+5901569168','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Molnár','1965','matthew.molnár@yahoo.com','Barcelona','+9334147266','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Monoczki','1986','john.monoczki@gmail.com','New York','+3504135500','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1993','sándor.monoczki@yahoo.com','Budapest','+5557505779','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1983','tim.lebron@yahoo.com','New York','+5627214276','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1977','sándor.tompa@yahoo.com','Miskolc','+3253457854','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1973','miklós.ciacka@yahoo.com','Barcelona','+9918311830','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Obama','1979','matthew.obama@yahoo.com','New York','+1377469687','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1974','dániel.hamilton@gmail.com','Krakow','+5703226612','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Salamon','1968','john.salamon@gmail.com','Budapest','+9709547520','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Hamilton','1979','attila.hamilton@hotmail.com','Krakow','+9994390287','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Tompa','1990','prezmek.tompa@yahoo.com','Krakow','+5798737993','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Tompa','1972','matthew.tompa@yahoo.com','Miskolc','+3475857526','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1968','tamás.ostafil@yahoo.com','Miskolc','+4748697660','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1994','andy.beöthy@yahoo.com','New York','+4718915014','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1975','mateusz.lebron@hotmail.com','New York','+3917812810','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Obama','1978','mateusz.obama@yahoo.com','Barcelona','+596635085','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Salamon','1965','giancarlo.salamon@hotmail.com','Budapest','+3627285506','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1986','tamás.ostafil@gmail.com','Budapest','+5731350383','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1965','dániel.ostafil@hotmail.com','Barcelona','+1029602117','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1978','mateusz.hamilton@hotmail.com','New York','+8169427909','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1965','prezmek.ostafil@yahoo.com','Budapest','+497305435','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1981','pál.hamilton@gmail.com','New York','+9552932040','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1985','andy.hamilton@gmail.com','Miskolc','+8106783766','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1974','tim.monoczki@hotmail.com','Krakow','+2733724103','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Fisichella','1971','dániel.fisichella@gmail.com','Barcelona','+4422668747','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Ciacka','1974','attila.ciacka@hotmail.com','Barcelona','+5231125835','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1992','tim.monoczki@yahoo.com','Barcelona','+6866506166','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Tompa','1971','giancarlo.tompa@yahoo.com','Barcelona','+7997616137','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Lebron','1979','tamás.lebron@yahoo.com','Krakow','+3763692780','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1968','pál.fisichella@hotmail.com','Budapest','+7555940421','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Lebron','1975','john.lebron@yahoo.com','New York','+2909600069','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1986','attila.salamon@hotmail.com','New York','+1723618795','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Fisichella','1981','prezmek.fisichella@hotmail.com','Barcelona','+9080208155','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1988','prezmek.szodoray@yahoo.com','New York','+8615377451','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1979','john.ciacka@hotmail.com','Barcelona','+8747594024','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Tompa','1987','tim.tompa@hotmail.com','New York','+289647002','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Fisichella','1974','pál.fisichella@yahoo.com','Budapest','+4213641178','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Szodoray','1991','prezmek.szodoray@gmail.com','Krakow','+2528610112','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1986','attila.beöthy@yahoo.com','Barcelona','+7193993093','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1988','giancarlo.carrey@gmail.com','Krakow','+8066303554','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1990','miklós.carrey@hotmail.com','Budapest','+4815771261','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Hamilton','1972','matthew.hamilton@gmail.com','Budapest','+1145509324','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1970','attila.salamon@gmail.com','New York','+2506466590','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1993','tim.hamilton@yahoo.com','Barcelona','+719518984','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Molnár','1988','prezmek.molnár@hotmail.com','Budapest','+6643650974','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Molnár','1993','mateusz.molnár@yahoo.com','Budapest','+6882741649','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1983','matthew.beöthy@gmail.com','New York','+3621235113','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ciacka','1973','tamás.ciacka@hotmail.com','Krakow','+1101859899','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Beöthy','1987','attila.beöthy@hotmail.com','Krakow','+8172217605','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1987','miklós.beöthy@hotmail.com','Barcelona','+294269737','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1980','miklós.ciacka@hotmail.com','Barcelona','+9973234143','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ostafil','1973','prezmek.ostafil@gmail.com','New York','+5297039250','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Fisichella','1981','attila.fisichella@gmail.com','Budapest','+6528580114','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1984','pál.obama@gmail.com','Barcelona','+7295365829','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1988','tamás.ostafil@hotmail.com','Krakow','+3245547606','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Salamon','1977','mateusz.salamon@hotmail.com','Krakow','+188954937','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1986','dániel.hamilton@yahoo.com','Barcelona','+1119591195','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Molnár','1978','sándor.molnár@yahoo.com','Miskolc','+628464927','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Ostafil','1968','dániel.ostafil@hotmail.com','New York','+2109187002','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ostafil','1980','miklós.ostafil@hotmail.com','New York','+9133538640','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Obama','1993','pál.obama@yahoo.com','Barcelona','+1782520082','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1973','miklós.beöthy@gmail.com','Krakow','+8877880489','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Ostafil','1983','andy.ostafil@yahoo.com','Miskolc','+9094009495','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Obama','1968','john.obama@gmail.com','Budapest','+6919668322','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Monoczki','1973','miklós.monoczki@gmail.com','Barcelona','+1589594467','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Ostafil','1995','giancarlo.ostafil@hotmail.com','Barcelona','+8491837634','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Attila','Salamon','1971','attila.salamon@gmail.com','Miskolc','+967260732','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Salamon','1981','prezmek.salamon@hotmail.com','Krakow','+5504633479','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1995','miklós.ciacka@hotmail.com','Budapest','+3149349683','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1968','giancarlo.hamilton@yahoo.com','Krakow','+6951968927','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Salamon','1983','dániel.salamon@hotmail.com','Miskolc','+8228367309','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Tompa','1981','sándor.tompa@gmail.com','New York','+350688996','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1978','tim.monoczki@yahoo.com','Barcelona','+1954265552','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Obama','1994','tamás.obama@yahoo.com','New York','+238756343','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Fisichella','1995','mateusz.fisichella@gmail.com','Barcelona','+1154663440','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Hamilton','1994','pál.hamilton@hotmail.com','Budapest','+7190278740','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Hamilton','1978','mateusz.hamilton@gmail.com','Budapest','+1277588908','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ostafil','1975','pál.ostafil@gmail.com','New York','+1854936671','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1979','john.ciacka@yahoo.com','Miskolc','+5773915295','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1977','pál.monoczki@hotmail.com','Miskolc','+7228113282','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Fisichella','1974','john.fisichella@hotmail.com','Budapest','+6236706855','5'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Monoczki','1993','giancarlo.monoczki@gmail.com','Budapest','+7179999548','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1995','andy.beöthy@yahoo.com','Barcelona','+1132559704','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Carrey','1972','andy.carrey@hotmail.com','Miskolc','+5085122052','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Beöthy','1993','pál.beöthy@hotmail.com','Krakow','+5647882754','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1980','sándor.salamon@hotmail.com','Krakow','+4638252460','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Hamilton','1982','tamás.hamilton@gmail.com','Barcelona','+2645982968','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Ciacka','1991','prezmek.ciacka@gmail.com','Budapest','+5248108514','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Fisichella','1989','miklós.fisichella@yahoo.com','Krakow','+5395115415','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Hamilton','1975','dániel.hamilton@hotmail.com','Barcelona','+9105847873','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Lebron','1992','tim.lebron@yahoo.com','Miskolc','+666170120','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Szodoray','1979','tim.szodoray@gmail.com','Krakow','+6289152391','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Ciacka','1974','miklós.ciacka@yahoo.com','Barcelona','+9788981537','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Prezmek','Carrey','1974','prezmek.carrey@yahoo.com','New York','+9439442485','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Mateusz','Lebron','1977','mateusz.lebron@hotmail.com','Barcelona','+7750490815','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Ciacka','1972','sándor.ciacka@gmail.com','Barcelona','+873293776','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Ciacka','1981','pál.ciacka@hotmail.com','Krakow','+4541551087','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Fisichella','1978','giancarlo.fisichella@gmail.com','Krakow','+4343770245','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1993','tamás.ostafil@yahoo.com','Budapest','+9244118532','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Lebron','1975','miklós.lebron@hotmail.com','Budapest','+2179099680','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Carrey','1975','giancarlo.carrey@yahoo.com','Budapest','+2692992088','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1981','tim.hamilton@hotmail.com','New York','+4411732305','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Obama','1987','andy.obama@hotmail.com','New York','+508000017','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Hamilton','1991','andy.hamilton@gmail.com','Barcelona','+5800989944','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Salamon','1965','sándor.salamon@hotmail.com','New York','+7697221218','2'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Ostafil','1972','tamás.ostafil@hotmail.com','Miskolc','+5091838548','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1965','tamás.salamon@gmail.com','Barcelona','+7766116648','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Monoczki','1986','pál.monoczki@yahoo.com','New York','+3203087275','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Carrey','1977','miklós.carrey@gmail.com','New York','+7479765254','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Beöthy','1988','matthew.beöthy@gmail.com','Budapest','+4708183553','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Molnár','1979','tamás.molnár@yahoo.com','Miskolc','+6485226322','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Dániel','Lebron','1972','dániel.lebron@hotmail.com','Krakow','+1975955142','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Hamilton','1966','tim.hamilton@gmail.com','Budapest','+1563240837','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Obama','1968','miklós.obama@gmail.com','Krakow','+9717799921','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Matthew','Lebron','1995','matthew.lebron@hotmail.com','Budapest','+8584410839','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Sándor','Monoczki','1989','sándor.monoczki@yahoo.com','Krakow','+3761085784','10'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Tompa','1977','pál.tompa@gmail.com','Miskolc','+9941628195','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tamás','Salamon','1969','tamás.salamon@gmail.com','Miskolc','+8918073734','7'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Tim','Monoczki','1971','tim.monoczki@hotmail.com','Budapest','+3152086754','4'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('John','Ciacka','1987','john.ciacka@hotmail.com','Barcelona','+2254388200','6'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Hamilton','1994','giancarlo.hamilton@hotmail.com','New York','+6775035845','1'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Pál','Salamon','1979','pál.salamon@gmail.com','Barcelona','+4324224522','9'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Miklós','Beöthy','1982','miklós.beöthy@gmail.com','Budapest','+6352997937','8'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Giancarlo','Szodoray','1992','giancarlo.szodoray@gmail.com','Budapest','+2148753851','3'); INSERT INTO "mentor_candidates" (first_name, last_name, birth_year, email, city, phone_number, level) VALUES ('Andy','Beöthy','1983','andy.beöthy@yahoo.com','Miskolc','+2685960587','8'); END TRANSACTION;
drop table members; create table members( id serial primary key, firstname text not null, lastname text not null, password text not null );
-- Provide a query that shows all Invoices but includes the # of invoice line items. select i.InvoiceId, count(l.InvoiceLIneId) as NumberOfItems from Invoice i, InvoiceLine l where l.InvoiceId = i.invoiceId group by i.InvoiceId
select debutModule,finModule,evenement.nomEvenement,evenement.descriptifEvenement from module join session on session.id_session=module.id_session join evenement on session.id_evenement=evenement.id_evenement
CREATE TABLE test_table2 ( id BIGSERIAL PRIMARY KEY, test TEXT UNIQUE );
-- MySQL Script generated by MySQL Workbench -- Sat Oct 13 10:53:06 2018 -- Model: New Model Version: 1.0 -- MySQL Workbench Forward Engineering SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES'; -- ----------------------------------------------------- -- Schema plpg_transaksi -- ----------------------------------------------------- -- ----------------------------------------------------- -- Schema plpg_transaksi -- ----------------------------------------------------- CREATE SCHEMA IF NOT EXISTS `plpg_transaksi` DEFAULT CHARACTER SET utf8 ; USE `plpg_transaksi` ; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`produk` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`produk` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`produk` ( `id_produk` INT(32) NOT NULL AUTO_INCREMENT, `nama_produk` VARCHAR(255) NULL, `produkcol` VARCHAR(45) NULL, PRIMARY KEY (`id_produk`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`users` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`users` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`users` ( `id` INT(10) NOT NULL, `name` VARCHAR(255) NOT NULL, `email` VARCHAR(255) NOT NULL, `password` VARCHAR(255) NOT NULL, `tgl_lahir` DATE NULL, `jns_kel` TINYINT(4) NULL, `token` VARCHAR(255) NULL, `created_at` DATETIME NULL, `updated_at` DATETIME NULL, PRIMARY KEY (`id`), UNIQUE INDEX `email_UNIQUE` (`email` ASC)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`countries` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`countries` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`countries` ( `id` INT(10) NOT NULL, `code` VARCHAR(45) NULL, `name` VARCHAR(255) NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`adrresses` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`adrresses` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`adrresses` ( `id` INT(10) NOT NULL, `user_id` INT(10) NOT NULL, `country_id` INT(10) NOT NULL, `name` VARCHAR(255) NULL, `address_1` VARCHAR(255) NULL, `address_2` VARCHAR(255) NULL, `country` VARCHAR(255) NULL, `city` VARCHAR(255) NULL, `postal_code` VARCHAR(45) NULL, `phone` VARCHAR(45) NULL, `mobile_phone` VARCHAR(45) NULL, `comment` MEDIUMTEXT NULL, `created_at` DATETIME NULL, `updated_at` DATETIME NOT NULL, PRIMARY KEY (`id`), INDEX `fk_adrresses_countries_idx` (`country_id` ASC), INDEX `fk_adrresses_users1_idx` (`user_id` ASC), CONSTRAINT `fk_adrresses_countries` FOREIGN KEY (`country_id`) REFERENCES `plpg_transaksi`.`countries` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_adrresses_users1` FOREIGN KEY (`user_id`) REFERENCES `plpg_transaksi`.`users` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`categories` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`categories` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`categories` ( `id` INT(10) NOT NULL, `parent_id` INT(11) NULL, `name` VARCHAR(255) NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`taxes` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`taxes` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`taxes` ( `id` INT(10) NOT NULL, `name` VARCHAR(255) NULL, `value` DECIMAL(13,2) NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`shops` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`shops` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`shops` ( `id` INT(10) NOT NULL, `shop_name` VARCHAR(100) NULL, `name` VARCHAR(255) NULL, `user_id` INT(10) NOT NULL, `address` VARCHAR(255) NULL, `description` VARCHAR(255) NULL, `notes` TEXT NULL, `verified` TINYINT(1) NULL, `followers` INT(16) NULL, `banner` VARCHAR(255) NULL, PRIMARY KEY (`id`, `user_id`), UNIQUE INDEX `shop_name_UNIQUE` (`shop_name` ASC), INDEX `fk_shops_users1_idx` (`user_id` ASC), UNIQUE INDEX `user_id_UNIQUE` (`user_id` ASC), CONSTRAINT `fk_shops_users1` FOREIGN KEY (`user_id`) REFERENCES `plpg_transaksi`.`users` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`products` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`products` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`products` ( `id` INT(10) NOT NULL, `name` VARCHAR(255) NULL, `description` TEXT NULL, `price` DECIMAL(13,2) NULL, `sku` VARCHAR(100) NOT NULL, `stock` INT(16) NULL, `active` TINYINT(4) NULL, `created_at` DATETIME NULL, `updated_at` DATETIME NULL, `tax_id` INT(10) NOT NULL, `shop_id` INT(10) NOT NULL, PRIMARY KEY (`id`), INDEX `fk_products_taxes1_idx` (`tax_id` ASC), INDEX `fk_products_shops1_idx` (`shop_id` ASC), CONSTRAINT `fk_products_taxes1` FOREIGN KEY (`tax_id`) REFERENCES `plpg_transaksi`.`taxes` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_products_shops1` FOREIGN KEY (`shop_id`) REFERENCES `plpg_transaksi`.`shops` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`category_product` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`category_product` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`category_product` ( `categori_id` INT(10) NOT NULL, `product_id` INT(10) NOT NULL, INDEX `fk_category_product_products1_idx` (`product_id` ASC), CONSTRAINT `fk_category_product_categories1` FOREIGN KEY (`categori_id`) REFERENCES `plpg_transaksi`.`categories` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_category_product_products1` FOREIGN KEY (`product_id`) REFERENCES `plpg_transaksi`.`products` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`product_images` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`product_images` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`product_images` ( `id` INT(10) NOT NULL, `product_id` INT(10) NULL, `name` VARCHAR(100) NULL, `url` VARCHAR(255) NULL, `order` INT(11) NOT NULL, PRIMARY KEY (`id`), INDEX `fk_product_images_products1_idx` (`product_id` ASC), CONSTRAINT `fk_product_images_products1` FOREIGN KEY (`product_id`) REFERENCES `plpg_transaksi`.`products` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`specific_prices` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`specific_prices` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`specific_prices` ( `id` INT(10) NOT NULL, `reduction` DECIMAL(13,2) NULL, `start_date` DATETIME NULL, `expiration_date` DATETIME NULL, `product_id` VARCHAR(45) NULL, PRIMARY KEY (`id`), INDEX `fk_specific_prices_products1_idx` (`product_id` ASC), CONSTRAINT `fk_specific_prices_products1` FOREIGN KEY (`product_id`) REFERENCES `plpg_transaksi`.`products` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`carriers` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`carriers` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`carriers` ( `id` INT(10) NOT NULL, `name` VARCHAR(45) NULL, `price` DECIMAL(13,2) NULL, `delivery_text` VARCHAR(255) NULL, `logo` VARCHAR(255) NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`currencies` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`currencies` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`currencies` ( `id` INT(10) NOT NULL, `name` VARCHAR(45) NULL, `iso` VARCHAR(45) NULL, `value` VARCHAR(45) NULL, `default` TINYINT(4) NOT NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`status` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`status` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`status` ( `id` INT(10) NOT NULL, `value` VARCHAR(255) NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`orders` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`orders` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`orders` ( `id` INT(10) NOT NULL, `user_id` INT(10) NOT NULL, `status_id` INT(10) NOT NULL, `carrier_id` INT(10) NOT NULL, `shipping_address_id` INT(10) NULL, `billing_address_id` INT(10) NULL, `billing_company_id` INT(10) NULL, `currency_id` INT(10) NULL, `comment` MEDIUMTEXT NULL, `invoice_no` VARCHAR(45) NULL, `invoice_date` DATETIME NULL, `delivery_date` DATETIME NULL, `total_discount` DECIMAL(13,2) NULL, `total_discount_tax` DECIMAL(13,2) NULL, `total_shipping` DECIMAL(13,2) NULL, `total_shipping_tax` DECIMAL(13,2) NULL, `total` DECIMAL(13,2) NULL, `total_tax` DECIMAL(13,2) NULL, `created_at` DATETIME NULL, `updated_at` DATETIME NULL, PRIMARY KEY (`id`), INDEX `fk_orders_users1_idx` (`user_id` ASC), INDEX `fk_orders_carriers1_idx` (`carrier_id` ASC), INDEX `fk_orders_currencies1_idx` (`currency_id` ASC), INDEX `fk_orders_status1_idx` (`status_id` ASC), CONSTRAINT `fk_orders_users1` FOREIGN KEY (`user_id`) REFERENCES `plpg_transaksi`.`users` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_orders_carriers1` FOREIGN KEY (`carrier_id`) REFERENCES `plpg_transaksi`.`carriers` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_orders_currencies1` FOREIGN KEY (`currency_id`) REFERENCES `plpg_transaksi`.`currencies` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_orders_status1` FOREIGN KEY (`status_id`) REFERENCES `plpg_transaksi`.`status` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`settings` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`settings` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`settings` ( `id` INT(10) NOT NULL, `key` VARCHAR(255) NULL, `name` VARCHAR(255) NULL, `descriptions` VARCHAR(255) NULL, `value` VARCHAR(255) NULL, `field` TEXT NULL, `active` TINYINT(4) NULL, `created_at` DATETIME NULL, `updated_at` DATETIME NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`password_resets` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`password_resets` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`password_resets` ( `user_id` INT(10) NULL, `email` VARCHAR(255) NOT NULL, `token` VARCHAR(255) NULL, `created_at` VARCHAR(255) NULL, INDEX `fk_password_resets_users1_idx` (`email` ASC), INDEX `fk_password_resets_users2_idx` (`user_id` ASC), CONSTRAINT `fk_password_resets_users1` FOREIGN KEY (`email`) REFERENCES `plpg_transaksi`.`users` (`email`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_password_resets_users2` FOREIGN KEY (`user_id`) REFERENCES `plpg_transaksi`.`users` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`notifications` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`notifications` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`notifications` ( `id` INT(10) NOT NULL, `user_id` INT(10) NOT NULL, `name` VARCHAR(255) NULL, `model` VARCHAR(255) NULL, `body` LONGTEXT NULL, PRIMARY KEY (`id`), INDEX `fk_notifications_users1_idx` (`user_id` ASC), CONSTRAINT `fk_notifications_users1` FOREIGN KEY (`user_id`) REFERENCES `plpg_transaksi`.`users` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`roles` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`roles` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`roles` ( `id` INT(10) NOT NULL, `name` VARCHAR(255) NULL, `created_at` DATETIME NULL, `updated_at` DATETIME NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`role_users` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`role_users` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`role_users` ( `role_id` INT(10) NOT NULL, `user_id` INT(10) NOT NULL, INDEX `fk_role_users_users1_idx` (`user_id` ASC), CONSTRAINT `fk_role_users_roles1` FOREIGN KEY (`role_id`) REFERENCES `plpg_transaksi`.`roles` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_role_users_users1` FOREIGN KEY (`user_id`) REFERENCES `plpg_transaksi`.`users` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`order_product` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`order_product` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`order_product` ( `product_id` INT(10) NOT NULL, `order_id` INT(10) NOT NULL, `name` VARCHAR(255) NULL, `sku` VARCHAR(100) NULL, `price` DECIMAL(13,2) NULL, `price_with_tax` DECIMAL(13,2) NULL, `quantity` INT(11) NULL, INDEX `fk_order_product_products1_idx` (`product_id` ASC), INDEX `fk_order_product_orders1_idx` (`order_id` ASC), CONSTRAINT `fk_order_product_products1` FOREIGN KEY (`product_id`) REFERENCES `plpg_transaksi`.`products` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_order_product_orders1` FOREIGN KEY (`order_id`) REFERENCES `plpg_transaksi`.`orders` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`order_statuses` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`order_statuses` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`order_statuses` ( `id` INT(10) NOT NULL, `name` VARCHAR(50) NULL, `notification` INT(10) NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`order_status_history` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`order_status_history` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`order_status_history` ( `id` INT(10) NOT NULL, `order_id` INT(10) NOT NULL, `status_id` INT(10) NOT NULL, `created_at` DATETIME NULL, `updated_at` DATETIME NULL, PRIMARY KEY (`id`), INDEX `fk_order_status_history_orders1_idx` (`order_id` ASC), INDEX `fk_order_status_history_order_statuses1_idx` (`status_id` ASC), CONSTRAINT `fk_order_status_history_orders1` FOREIGN KEY (`order_id`) REFERENCES `plpg_transaksi`.`orders` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_order_status_history_order_statuses1` FOREIGN KEY (`status_id`) REFERENCES `plpg_transaksi`.`order_statuses` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`permissions` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`permissions` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`permissions` ( `id` INT(10) NOT NULL, `name` VARCHAR(255) NULL, `created_at` DATETIME NULL, `updated_at` DATETIME NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`permission_roles` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`permission_roles` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`permission_roles` ( `permission_id` INT(10) NOT NULL, `role_id` INT(10) NOT NULL, PRIMARY KEY (`role_id`, `permission_id`), INDEX `fk_permission_roles_roles1_idx` (`role_id` ASC), CONSTRAINT `fk_permission_roles_roles1` FOREIGN KEY (`role_id`) REFERENCES `plpg_transaksi`.`roles` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_permission_roles_permissions1` FOREIGN KEY (`permission_id`) REFERENCES `plpg_transaksi`.`permissions` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`permissions_users` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`permissions_users` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`permissions_users` ( `user_id` INT(10) NOT NULL, `permission_id` INT(10) NOT NULL, PRIMARY KEY (`user_id`, `permission_id`), INDEX `fk_permissions_users_permissions1_idx` (`permission_id` ASC), CONSTRAINT `fk_permissions_users_permissions1` FOREIGN KEY (`permission_id`) REFERENCES `plpg_transaksi`.`permissions` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_permissions_users_users1` FOREIGN KEY (`user_id`) REFERENCES `plpg_transaksi`.`users` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`cart_rules` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`cart_rules` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`cart_rules` ( `id` INT(10) NOT NULL, `name` VARCHAR(255) NULL, `code` VARCHAR(100) NULL, `priority` TINYINT(4) NULL, `start_date` DATETIME NULL, `expiration_date` DATETIME NULL, `status` TINYINT(1) NULL, `highglight` TINYINT(1) NULL, `minimum_amount` INT(11) NULL, `free_delivery` TINYINT(1) NULL, `total_available` INT(11) NULL, `total_available_each_user` INT(11) NULL, `promo_label` VARCHAR(255) NULL, `promo_text` VARCHAR(1000) NULL, `multiply_gift` INT(11) NULL, `customer_id` INT(10) NULL, `created_at` DATETIME NULL, `updated_at` DATETIME NULL, PRIMARY KEY (`id`), INDEX `fk_cart_rules_users1_idx` (`customer_id` ASC), CONSTRAINT `fk_cart_rules_users1` FOREIGN KEY (`customer_id`) REFERENCES `plpg_transaksi`.`users` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`cart_rules_customers` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`cart_rules_customers` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`cart_rules_customers` ( `cart_rule_id` INT(10) NOT NULL, `customer_id` INT(10) NOT NULL, `created_at` DATETIME NULL, `updated_at` DATETIME NULL, INDEX `fk_cart_rules_customers_cart_rules1_idx` (`cart_rule_id` ASC), INDEX `fk_cart_rules_customers_users1_idx` (`customer_id` ASC), CONSTRAINT `fk_cart_rules_customers_cart_rules1` FOREIGN KEY (`cart_rule_id`) REFERENCES `plpg_transaksi`.`cart_rules` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_cart_rules_customers_users1` FOREIGN KEY (`customer_id`) REFERENCES `plpg_transaksi`.`users` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`deposits` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`deposits` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`deposits` ( `id` INT(10) NOT NULL, `user_id` INT(10) NOT NULL, `cedit` DECIMAL(12,2) NULL, `debit` DECIMAL(12,2) NULL, `deposit_date` DATETIME NULL, PRIMARY KEY (`id`), INDEX `fk_deposits_users1_idx` (`user_id` ASC), CONSTRAINT `fk_deposits_users1` FOREIGN KEY (`user_id`) REFERENCES `plpg_transaksi`.`users` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `plpg_transaksi`.`bank` -- ----------------------------------------------------- DROP TABLE IF EXISTS `plpg_transaksi`.`bank` ; CREATE TABLE IF NOT EXISTS `plpg_transaksi`.`bank` ( `id` INT(10) NOT NULL, `user_id` INT(10) NOT NULL, `account_number` VARCHAR(100) NULL, `account_name` VARCHAR(255) NULL, `bank_name` VARCHAR(255) NULL, PRIMARY KEY (`id`), INDEX `fk_bank_users1_idx` (`user_id` ASC), CONSTRAINT `fk_bank_users1` FOREIGN KEY (`user_id`) REFERENCES `plpg_transaksi`.`users` (`id`) ON DELETE RESTRICT ON UPDATE CASCADE) ENGINE = InnoDB; SET SQL_MODE=@OLD_SQL_MODE; SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
drop table board_event CASCADE CONSTRAINTS; create table board_event( event_board_num number primary key, id varchar2(30) references member(USER_ID) on delete cascade, content varchar2(200) , event_re_ref number, event_re_lev number(1) check(event_re_lev in (0,1,2)), event_re_seq number, reg_date date ); --create table MEMBER( -- USER_ID varchar2(20) primary key, --아이디 -- USER_PASS varchar2(20) NOT NULL, --패스워드 -- USER_NAME varchar2(20) NOT NULL, --이름 -- USER_NICKNAME varchar2(20) NOT NULL unique, --닉네임 -- USER_EMAIL varchar2(30) NOT NULL unique, --이메일 -- USER_ADDRESS_POST varchar2(5) NOT NULL, --우편번호 -- USER_ADDRESS varchar2(100) NOT NULL, --우편주소 -- USER_PHONE varchar2(20) NOT NULL, --핸드폰 -- USER_FILE varchar2(100) , -- USER_IMG varchar2(100) NOT NULL, --유저이미지 -- USER_CHECK char(1) check(USER_CHECK='0' or USER_CHECK='1'), --당일체크 -- USER_LASTLOGIN DATE default sysdate --최근로그인날짜 --); --위에 보드 이벤트 테이블을 생성해주시면 됩니다. select * from ( select rownum rnum, b.* from (select event_board_num, id, content, event_re_ref, event_re_lev, event_re_seq, reg_date, c.user_file from board_event a join member c on a.id=c.user_id order by event_RE_REF desc, event_RE_SEQ asc) b ) where rnum >1 and rnum < 3 select * from board select * from member select * from board_event delete BOARD_EVENT
create or replace package PK_T056_PANTALLA is /******************************************************************************** DESCRIPCION : Contiene los servicios CRUD sobre la tabla GPYT_T056_PANTALLA REALIZADO POR : Luis Felipe Galeano Castro FECHA CREACION : 25/12/2016 FECHA MODIFICA : MODIFICADO POR : DESCRIPCION CAMBIO: *******************************************************************************/ NOMBRE_PAQUETE CONSTANT VARCHAR2(100) := 'PK_T056_PANTALLA'; TYPE CURSOR_SALIDA IS REF CURSOR; -- Funciones y Procedimientos del paquete PROCEDURE Pr_Insertar (p_A056NOMPANTALLA IN GPYT_T056_PANTALLA.A056NOMPANTALLA%TYPE, p_idUsuario IN NUMBER, p_resultado OUT CURSOR_SALIDA, p_codError OUT NUMBER, p_msjError OUT VARCHAR2); PROCEDURE Pr_Eliminar (p_A056CODIGO IN GPYT_T056_PANTALLA.A056CODIGO%TYPE, p_idUsuario IN NUMBER, p_resultado OUT CURSOR_SALIDA, p_codError OUT NUMBER, p_msjError OUT VARCHAR2); PROCEDURE Pr_Actualizar (p_A056CODIGO IN GPYT_T056_PANTALLA.A056CODIGO%TYPE, p_A056NOMPANTALLA IN GPYT_T056_PANTALLA.A056NOMPANTALLA%TYPE, p_idUsuario IN NUMBER, p_resultado OUT CURSOR_SALIDA, p_codError OUT NUMBER, p_msjError OUT VARCHAR2); PROCEDURE Pr_ConsultarPorFiltro (p_Filtro IN VARCHAR2, p_idUsuario IN NUMBER, p_resultado OUT CURSOR_SALIDA, p_codError OUT NUMBER, p_msjError OUT VARCHAR2); end PK_T056_PANTALLA;
-- -- TODAYS METRICS -- Number of Completed Transactions for Today -- @param : Rest_ID ; ID of the restaurant SELECT IFNULL(COUNT(ID),0) FROM ORDERS WHERE DATE(ENDED) = DATE(SYSDATE()) AND REST_ID = 1 AND ACTIVE =0; -- Total Sales for today -- @param : Rest_ID ; ID of the restaurant SELECT IFNULL(SUM(TOTAL),0) FROM ORDERS WHERE DATE(ENDED) = DATE(SYSDATE()) AND REST_ID =1 AND ACTIVE =0; -- Percentage increase from Yesterday -- @param : Rest_ID ; ID of the restaurant -- Percentage equation is simplied (A-B)/B*100 = (A/B - 1)*100 SELECT IFNULL(((( (SELECT IFNULL(SUM(TOTAL),0) FROM ORDERS WHERE DATE(ENDED) = DATE(SYSDATE()) AND REST_ID =1 AND ACTIVE =0) / (SELECT IFNULL(SUM(TOTAL),0) FROM ORDERS WHERE DATE(ENDED) = DATE(SUBDATE(SYSDATE(),1)) AND REST_ID =1 AND ACTIVE =0) ) -1 ) *100 ) ,0) AS PERCENTAGE FROM DUAL -- -- TO DATE's METRICS -- Number of Transactions till this year -- @param : Rest_ID ; ID of the restaurant SELECT IFNULL(COUNT(ID),0) FROM ORDERS WHERE YEAR(ENDED) = YEAR(SYSDATE()) AND REST_ID =1 AND ACTIVE =0; -- Total Sales this year -- @param : Rest_ID ; ID of the restaurant SELECT IFNULL(SUM(TOTAL),0) FROM ORDERS WHERE YEAR(ENDED) = YEAR(SYSDATE()) AND REST_ID =1 AND ACTIVE =0; -- Percentage increase from last week -- @param : Rest_ID ; ID of the restaurant -- Percentage equation is simplied (A-B)/B*100 = (A/B - 1)*100 SELECT IFNULL(((( (SELECT IFNULL(SUM(TOTAL),0) FROM ORDERS WHERE YEAR(ENDED) = YEAR(SYSDATE()) AND REST_ID = 1 AND ACTIVE =0) / (SELECT IFNULL(SUM(TOTAL),0) FROM ORDERS WHERE (YEAR(ENDED) = YEAR(SYSDATE())) AND (DATE(ENDED) < DATE(SUBDATE(SYSDATE(),7))) AND REST_ID = 1 AND ACTIVE =0) ) -1 ) *100 ) ,0) AS PERCENTAGE FROM DUAL -- Percentage increase from 6 months ago or beginning of this year (whichever is greater) -- @param : Rest_ID ; ID of the restaurant -- Percentage equation is simplied (A-B)/B*100 = (A/B - 1)*100 SELECT IFNULL(((( (SELECT IFNULL(SUM(TOTAL),0) FROM ORDERS WHERE YEAR(ENDED) = YEAR(SYSDATE()) AND REST_ID = 1 AND ACTIVE =0) / (SELECT IFNULL(SUM(TOTAL),0) FROM ORDERS WHERE (YEAR(ENDED) = YEAR(SYSDATE())) AND ( DATE(ENDED) < GREATEST(DATE_FORMAT(NOW() ,'%Y-01-01'), DATE_SUB(SYSDATE(), INTERVAL 6 MONTH)) ) AND REST_ID = 1 AND ACTIVE =0) ) -1 ) *100 ) ,0) AS PERCENTAGE FROM DUAL -- -- CUSTOMER METRICS -- Total number of customers in the last 30 days -- @param : Rest_ID ; ID of the restaurant SELECT IFNULL(COUNT(C.ID),0) FROM CUSTOMERS C INNER JOIN ORDERS O ON O.CUSTOMER_ID = C.ID WHERE O.REST_ID = 1 AND O.ENDED > SUBDATE(SYSDATE(), 30)
CREATE TABLE DiagnosticReport ( id uniqueidentifier NOT NULL PRIMARY KEY, [status] nvarchar(255) NOT NULL, code_CodeableConcept uniqueidentifier NOT NULL FOREIGN KEY REFERENCES CodeableConcept(id), subject_Reference uniqueidentifier FOREIGN KEY REFERENCES Reference(id), encounter_Reference uniqueidentifier FOREIGN KEY REFERENCES Reference(id), -- effective[x]: Type[0..1] issued datetime, conclusion nvarchar(255) -- presentedForm -- conclusionCode -- imagingStudy -- result -- specimen -- resultsInterpreter -- performer -- category -- basedOn -- media ); CREATE TABLE DiagnosticReportBasedOn ( id_DiagnosticReport uniqueidentifier NOT NULL FOREIGN KEY REFERENCES DiagnosticReport(id), id_Reference uniqueidentifier NOT NULL FOREIGN KEY REFERENCES Reference(id), CONSTRAINT PK_DiagnosticReportBasedOn PRIMARY KEY (id_DiagnosticReport, id_Reference) ); CREATE TABLE DiagnosticReportCategory ( id_DiagnosticReport uniqueidentifier NOT NULL FOREIGN KEY REFERENCES DiagnosticReport(id), id_CodeableConcept uniqueidentifier NOT NULL FOREIGN KEY REFERENCES CodeableConcept(id), CONSTRAINT PK_DiagnosticReportCategory PRIMARY KEY (id_DiagnosticReport, id_CodeableConcept) ); CREATE TABLE DiagnosticReportPerformer ( id_DiagnosticReport uniqueidentifier NOT NULL FOREIGN KEY REFERENCES DiagnosticReport(id), id_Reference uniqueidentifier NOT NULL FOREIGN KEY REFERENCES Reference(id), CONSTRAINT PK_DiagnosticReportPerformer PRIMARY KEY (id_DiagnosticReport, id_Reference) ); CREATE TABLE DiagnosticReportResultsInterpreter ( id_DiagnosticReport uniqueidentifier NOT NULL FOREIGN KEY REFERENCES DiagnosticReport(id), id_Reference uniqueidentifier NOT NULL FOREIGN KEY REFERENCES Reference(id), CONSTRAINT PK_DiagnosticReportResultsInterpreter PRIMARY KEY (id_DiagnosticReport, id_Reference) ); CREATE TABLE DiagnosticReportSpecimen ( id_DiagnosticReport uniqueidentifier NOT NULL FOREIGN KEY REFERENCES DiagnosticReport(id), id_Reference uniqueidentifier NOT NULL FOREIGN KEY REFERENCES Reference(id), CONSTRAINT PK_DiagnosticReportSpecimen PRIMARY KEY (id_DiagnosticReport, id_Reference) ); CREATE TABLE DiagnosticReportResult ( id_DiagnosticReport uniqueidentifier NOT NULL FOREIGN KEY REFERENCES DiagnosticReport(id), id_Reference uniqueidentifier NOT NULL FOREIGN KEY REFERENCES Reference(id), CONSTRAINT PK_DiagnosticReportResult PRIMARY KEY (id_DiagnosticReport, id_Reference) ); CREATE TABLE DiagnosticReportImagingStudy ( id_DiagnosticReport uniqueidentifier NOT NULL FOREIGN KEY REFERENCES DiagnosticReport(id), id_Reference uniqueidentifier NOT NULL FOREIGN KEY REFERENCES Reference(id), CONSTRAINT PK_DiagnosticReportImagingStudy PRIMARY KEY (id_DiagnosticReport, id_Reference) ); CREATE TABLE DiagnosticReportConclusionCode ( id_DiagnosticReport uniqueidentifier NOT NULL FOREIGN KEY REFERENCES DiagnosticReport(id), id_CodeableConcept uniqueidentifier NOT NULL FOREIGN KEY REFERENCES CodeableConcept(id), CONSTRAINT PK_DiagnosticReportConclusionCode PRIMARY KEY (id_DiagnosticReport, id_CodeableConcept) ); CREATE TABLE DiagnosticReportPresentedForm ( id_DiagnosticReport uniqueidentifier NOT NULL FOREIGN KEY REFERENCES DiagnosticReport(id), id_Attachment uniqueidentifier NOT NULL FOREIGN KEY REFERENCES Attachment(id), CONSTRAINT PK_DiagnosticReportPresentedForm PRIMARY KEY (id_DiagnosticReport, id_Attachment) ); -- Hjelpetabeller og tilhørende referanser CREATE TABLE DiagnosticReportMedia_HT ( id uniqueidentifier NOT NULL PRIMARY KEY, comment nvarchar(255), link uniqueidentifier NOT NULL FOREIGN KEY REFERENCES Media(id) -- Denne tror jeg kanskje er feil. Er av typen Reference [1..1] <<Media>> ); CREATE TABLE DiagnosticReportMedia ( id_DiagnosticReport uniqueidentifier NOT NULL FOREIGN KEY REFERENCES DiagnosticReport(id), id_DiagnosticReportMedia_HT uniqueidentifier FOREIGN KEY REFERENCES DiagnosticReportMedia_HT(id), CONSTRAINT PK_DiagnosticReportMedia PRIMARY KEY (id_DiagnosticReport, id_DiagnosticReportMedia_HT) );
drop database torneo; create database torneo; USE torneo; CREATE TABLE equipos ( id_equipo int auto_increment primary key, nombre_equipo varchar(50), fecha_creacion datetime, CONSTRAINT UNQ_EQUIPOS_NOMBRE_EQUIPO UNIQUE (nombre_equipo)); ALTER TABLE equipos ADD COLUMN fecha_creacion date not null; CREATE TABLE partidos( id_partido int AUTO_INCREMENT primary key, id_equipo_local int not null , id_equipo_visitante int not null, fecha date, CONSTRAINT FK_PARTIDOS_ID_EQUIPO_LOCAL_EQUIPOS foreign key (id_equipo_local) references equipos(id_equipo), CONSTRAINT FK_PARTIDOS_ID_EQUIPO_VISITANTE_EQUIPOS foreign key (id_equipo_visitante) references equipos(id_equipo)); create table jugadores ( id_jugador int auto_increment primary key, nombre varchar(50), apellido varchar(50), id_equipo int, CONSTRAINT fk_jugadores_jugadores_equipos foreign key (id_equipo) references equipos(id_equipo)); ALTER TABLE jugadores modify column id_equipo int not null; create table jugadores_x_partido ( id_jugador_x_partido int auto_increment primary key, id_jugador int, id_partido int, puntos int, rebotes int, asistencias int, minutos int, faltas int, constraint fk_jugadores_x_partido_jugadores foreign key (id_jugador) references jugadores(id_jugador), constraint fk_jugadores_x_partido_partidos foreign key (id_partido) references partidos(id_partido));
CREATE ROLE [PASMrcApprovals]
CREATE PLUGGABLE DATABASE hr_pdb ADMIN USER hr_admin IDENTIFIED BY password ROLES = (dba) DEFAULT TABLESPACE my_tbs DATAFILE '/oradata/orcl/hr_pdb/mytbs01.dbf' SIZE 50M AUTOEXTEND ON FILE_NAME_CONVERT=('/oradata/orcl/pdbseed/','/oradata/orcl/hr_pdb/'); ALTER pluggable DATABASE hr_pdb OPEN;
-- MySQL dump 10.13 Distrib 8.0.13, for Win64 (x86_64) -- -- Host: localhost Database: electron_crud -- ------------------------------------------------------ -- Server version 8.0.13 /*!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 `proveedores` -- DROP TABLE IF EXISTS `proveedores`; /*!40101 SET @saved_cs_client = @@character_set_client */; SET character_set_client = utf8mb4 ; CREATE TABLE `proveedores` ( `Id` int(11) NOT NULL AUTO_INCREMENT, `Nombre` varchar(45) NOT NULL, `rif` varchar(20) DEFAULT NULL, `Material` varchar(45) NOT NULL, `precio` decimal(11,2) NOT NULL, `cantidad` decimal(5,1) DEFAULT '0.0', `saldo` decimal(12,2) DEFAULT '0.00', `factor` decimal(2,1) DEFAULT '0.0', PRIMARY KEY (`Id`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `proveedores` -- LOCK TABLES `proveedores` WRITE; /*!40000 ALTER TABLE `proveedores` DISABLE KEYS */; INSERT INTO `proveedores` VALUES (1,'Octavio Ramos','j235311549','Granza',2000.00,0.0,0.00,2.0),(2,'Luis Canales','23531154','Granza',90000.00,0.0,0.00,0.0),(3,'Pedro Perez','78125612','Granza',30000.00,0.0,0.00,0.0),(4,'Cristaleria','7456354','Piedra',3500.00,0.0,0.00,0.0),(5,'Cristaleria','2452534','Granza',3000.00,0.0,0.00,0.0),(6,'Jose Hernandez','1231241','Flete',4000.00,0.0,0.00,0.0),(7,'Jose Martinez','123456789','Agua',10000.00,0.0,0.00,0.0),(8,'Cerro Azul','12423545','Cemento',0.00,0.0,0.00,0.0),(9,'Jose Hernadez Cemento','123545','Flete',10000.00,0.0,0.00,0.0); /*!40000 ALTER TABLE `proveedores` 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-02-07 11:22:29
# # Table structure for table 'user_events_events_categories_mm' # # CREATE TABLE user_events_events_categories_mm ( uid_local int(11) DEFAULT '0' NOT NULL, uid_foreign int(11) DEFAULT '0' NOT NULL, tablenames varchar(30) DEFAULT '' NOT NULL, sorting int(11) DEFAULT '0' NOT NULL, KEY uid_local (uid_local), KEY uid_foreign (uid_foreign) ); # # Table structure for table 'user_events_events' # CREATE TABLE user_events_events ( uid int(11) NOT NULL auto_increment, pid int(11) DEFAULT '0' NOT NULL, tstamp int(11) DEFAULT '0' NOT NULL, crdate int(11) DEFAULT '0' NOT NULL, cruser_id int(11) DEFAULT '0' NOT NULL, t3ver_oid int(11) DEFAULT '0' NOT NULL, t3ver_id int(11) DEFAULT '0' NOT NULL, t3ver_wsid int(11) DEFAULT '0' NOT NULL, t3ver_label varchar(30) DEFAULT '' NOT NULL, t3ver_state tinyint(4) DEFAULT '0' NOT NULL, t3ver_stage int(11) DEFAULT '0' NOT NULL, t3ver_count int(11) DEFAULT '0' NOT NULL, t3ver_tstamp int(11) DEFAULT '0' NOT NULL, t3ver_move_id int(11) DEFAULT '0' NOT NULL, t3_origuid int(11) DEFAULT '0' NOT NULL, sys_language_uid int(11) DEFAULT '0' NOT NULL, l10n_parent int(11) DEFAULT '0' NOT NULL, l10n_diffsource mediumblob, deleted tinyint(4) DEFAULT '0' NOT NULL, hidden tinyint(4) DEFAULT '0' NOT NULL, starttime int(11) DEFAULT '0' NOT NULL, endtime int(11) DEFAULT '0' NOT NULL, fe_group int(11) DEFAULT '0' NOT NULL, eventdate int(11) DEFAULT '0' NOT NULL, title tinytext, subtitle tinytext, categories int(11) DEFAULT '0' NOT NULL, location text, shorttext text, bodytext text, image text, alttext tinytext, titletext tinytext, links text, documents text, PRIMARY KEY (uid), KEY parent (pid), KEY t3ver_oid (t3ver_oid,t3ver_wsid) ) ENGINE=InnoDB; # # Table structure for table 'user_events_categories' # CREATE TABLE user_events_categories ( uid int(11) NOT NULL auto_increment, pid int(11) DEFAULT '0' NOT NULL, tstamp int(11) DEFAULT '0' NOT NULL, crdate int(11) DEFAULT '0' NOT NULL, cruser_id int(11) DEFAULT '0' NOT NULL, t3ver_oid int(11) DEFAULT '0' NOT NULL, t3ver_id int(11) DEFAULT '0' NOT NULL, t3ver_wsid int(11) DEFAULT '0' NOT NULL, t3ver_label varchar(30) DEFAULT '' NOT NULL, t3ver_state tinyint(4) DEFAULT '0' NOT NULL, t3ver_stage int(11) DEFAULT '0' NOT NULL, t3ver_count int(11) DEFAULT '0' NOT NULL, t3ver_tstamp int(11) DEFAULT '0' NOT NULL, t3ver_move_id int(11) DEFAULT '0' NOT NULL, t3_origuid int(11) DEFAULT '0' NOT NULL, sys_language_uid int(11) DEFAULT '0' NOT NULL, l10n_parent int(11) DEFAULT '0' NOT NULL, l10n_diffsource mediumblob, deleted tinyint(4) DEFAULT '0' NOT NULL, hidden tinyint(4) DEFAULT '0' NOT NULL, title tinytext, PRIMARY KEY (uid), KEY parent (pid), KEY t3ver_oid (t3ver_oid,t3ver_wsid) ) ENGINE=InnoDB;
SELECT dt, code, value FROM example WHERE dt > SUBDATE(CURDATE(), {{days}})
CREATE PROCEDURE INSERTAR_COMPUTADORA @NUMERO_COMP INT, @ESTADO_COMP VARCHAR(20) AS BEGIN INSERT INTO COMPUTADORA VALUES(@NUMERO_COMP,@ESTADO_COMP) END
set pagesi 1000 linesi 120 trimspool on col member format a45 select l.thread#,lf.group#,lf.type,lf.member from v$logfile lf, v$log l where l.group#=lf.group# order by l.thread#, lf.group#;
/** * tblGuest.sql * * Creates the tblGuest table. * * @author A.J. Rodriguez <avrodriguezjr@gmail.com> */ USE `gildedrose`; CREATE TABLE `tblGuest` ( `ID` INT NOT NULL AUTO_INCREMENT, `FirstName` VARCHAR(255) NOT NULL, `LastName` VARCHAR(255) NOT NULL, `Email` VARCHAR(255) NOT NULL, PRIMARY KEY (`ID`), UNIQUE INDEX `ID_UNIQUE` (`ID` ASC), UNIQUE INDEX `Email_UNIQUE` (`Email` ASC) );
select sum(n254) from gz011cz where de011 = 2013 and de007 = '07' and jsdeg124 = 1 and czde701 = 1 select sum(n254) from gz011cz where de011 = 2013 and de007 = '07' and jsdeg124 = 1 and czde701 = 1 -- 126648379.8 17538639.03 109109740.77 select 17538639.03+109109740.77 from dual select * from gz215 where de007 = '07' ---公务员 select count(1) from gz_lasttime a where /*n172 > 0 and*/ exists (select 1 from gz011cz b where b.de011 = 2013 and b.de007 = '07' and b.jsdeg124 = 1 and b.czde701 = 2 and b.czde103 in (20130000000122,20130000000124,20130000000126) and a.c9 = b.c9 and a.c31 = b.c31) order by c10 select count(1) from gz011cz where de011 = 2013 and de007 = '07' and jsdeg124 = 1 and czde701 = 1 and n172 > 0 and czde103 in (20130000000122,20130000000124,20130000000126) order by c10 update gz_lasttime a set a.n235 = (select b.n235 from gz011cz b where b.de011 = 2013 and b.de007 = '07' and b.jsdeg124 = 1 and b.czde701 = 1 and b.czde103 in (20130000000122,20130000000124,20130000000126) and a.c9 = b.c9 and a.c31 = b.c31) select count(1) from gz_lasttime where n187 > 0 ---教委 select count(1) from gz_lasttime a where a.n235 > 0 and exists (select 1 from gz011cz b where b.de011 = 2013 and b.de007 = '07' and b.jsdeg124 = 1 and b.czde701 = 2 and b.czde103 = 20130000000128 and a.c9 = b.c9 and a.c31 = b.c31) order by c10 select c10,c11,n187 from gz011cz where de011 = 2013 and de007 = '07' and jsdeg124 = 1 and czde701 = 2 and czde103 = 20130000000128 and n187 > 0 order by c10 select count(1) from gz_lasttime where n187 > 0 update gz_lasttime a set a.n235 = (select b.n235 from gz011cz b where b.de011 = 2013 and b.de007 = '07' and b.jsdeg124 = 1 and b.czde701 = 2 and b.czde103 = 20130000000128 and a.c9 = b.c9 and a.c31 = b.c31) select * from bz008hd where czde103 = 20130000000128 --公务员在职 1--6 在职应发总额 : 798334539.06 select sum(n254) from gz011czw where de011 = 2013 and de007 <= '06' and czde701 = 1 and jsdeg124 in (1,2) and czde103 in (20130000000122,20130000000124,20130000000126) --公务员在职 6月 在职应发总额 : 148211534.86 select sum(n254) from gz011czw where de011 = 2013 and de007 = '06' and czde701 = 1 and jsdeg124 in (1,2) and czde103 in (20130000000122,20130000000124,20130000000126) -- 131915078.89 171290695.89 --教委 1-6 应发总额 : 683525618.32 select sum(n254) from gz011czw where de011 = 2013 and de007 <= '06' and czde701 = 2 and jsdeg124 = 1 and czde103 = 20130000000128 select * from gz215 where czde701 = 2 select * from bz008hd where czde103 = 20130000000128 and jsde902 like '代扣工伤%' select de042,sum(nvl(n170,0)),sum(nvl(n182,0)),sum(nvl(n172,0)),sum(nvl(n171,0)),sum(nvl(n181,0)),sum(nvl(n229,0)) from gz011cz where de011 = 2013 and de007 = '07' and jsdeg124 = 1 and czde701 = 2 and czde103 = 20130000000128 group by de042 order by de042 select sum(nvl(n254,0)),sum(nvl(n252,0)),sum(nvl(n253,0)) from gz011cz where de011 = 2013 and de007 = '07' and jsdeg124 = 1 and czde701 = 2 and czde103 = 20130000000128 -- 100288862.97 19830978.09 80457884.88 select 19830978.09+80457884.88 from dual select * from gz215 where de007 = '07' and czde701 = 2
ALTER TABLE `dmn_course_list` ADD `priorty_no` INT(6) NULL AFTER `courseDesc`; CREATE TABLE `app_polyglot_banners` ( `bannerId` int(11) NOT NULL, `position` int(4) DEFAULT NULL, `start_date` datetime DEFAULT NULL, `end_date` datetime DEFAULT NULL, `status` varchar(25) DEFAULT NULL, `is_active` varchar(1) DEFAULT NULL, `image_path` varchar(145) DEFAULT NULL, `created_time` datetime DEFAULT NULL, `modified_time` datetime DEFAULT NULL, `city_id` int(11) DEFAULT NULL, `partner_id` int(11) DEFAULT NULL, `course_id` int(11) DEFAULT NULL, PRIMARY KEY (`bannerId`), KEY `city_fk_idx` (`city_id`), KEY `partner_fk_idx` (`partner_id`), KEY `course_fk_idx` (`course_id`), CONSTRAINT `city_fk` FOREIGN KEY (`city_id`) REFERENCES `dmn_cities` (`city_id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `course_fk` FOREIGN KEY (`course_id`) REFERENCES `dmn_course_list` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `partner_fk` FOREIGN KEY (`partner_id`) REFERENCES `app_users` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) ENGINE=InnoDB DEFAULT CHARSET=utf8; ;
-- MySQL dump 10.13 Distrib 5.7.9, for Win32 (AMD64) -- -- Host: localhost Database: test_cars_hibernate -- ------------------------------------------------------ -- Server version 5.6.31-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 `body_type` -- DROP TABLE IF EXISTS `body_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `body_type` ( `BODY_TYPE_ID` int(11) NOT NULL, `BODY_NAME` varchar(255) NOT NULL, PRIMARY KEY (`BODY_TYPE_ID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `body_type` -- LOCK TABLES `body_type` WRITE; /*!40000 ALTER TABLE `body_type` DISABLE KEYS */; /*!40000 ALTER TABLE `body_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `brands` -- DROP TABLE IF EXISTS `brands`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `brands` ( `BRAND_ID` int(11) NOT NULL, `BRAND_NAME` varchar(255) NOT NULL, PRIMARY KEY (`BRAND_ID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `brands` -- LOCK TABLES `brands` WRITE; /*!40000 ALTER TABLE `brands` DISABLE KEYS */; /*!40000 ALTER TABLE `brands` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cars` -- DROP TABLE IF EXISTS `cars`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `cars` ( `CAR_ID` int(11) NOT NULL, `AMOUNT` double NOT NULL, `MODEL` varchar(255) NOT NULL, `YEAR_OF_MANUFACTURE` int(11) NOT NULL, `BODY_TYPE_ID` int(11) DEFAULT NULL, `BRAND_ID` int(11) DEFAULT NULL, `ENGINE_TYPE_ID` int(11) DEFAULT NULL, `STATUS_ID` int(11) DEFAULT NULL, `TRANSMISSION_TYPE_ID` int(11) DEFAULT NULL, PRIMARY KEY (`CAR_ID`), KEY `FK_hjejt9avm1ho1imxjgfwi3pmj` (`BODY_TYPE_ID`), KEY `FK_ofc5l26g459apjltwdkxwkjq2` (`BRAND_ID`), KEY `FK_pnjxv260jxbntlf53kxm2ri87` (`ENGINE_TYPE_ID`), KEY `FK_8ups6t9ym9alppnjbr7d8qirj` (`STATUS_ID`), KEY `FK_jd226cf4i8u63mosvne1edotp` (`TRANSMISSION_TYPE_ID`), CONSTRAINT `FK_8ups6t9ym9alppnjbr7d8qirj` FOREIGN KEY (`STATUS_ID`) REFERENCES `status_of_car` (`STATUS_OF_CAR_ID`), CONSTRAINT `FK_hjejt9avm1ho1imxjgfwi3pmj` FOREIGN KEY (`BODY_TYPE_ID`) REFERENCES `body_type` (`BODY_TYPE_ID`), CONSTRAINT `FK_jd226cf4i8u63mosvne1edotp` FOREIGN KEY (`TRANSMISSION_TYPE_ID`) REFERENCES `transmission_type` (`TRANSMISSION_TYPE_ID`), CONSTRAINT `FK_ofc5l26g459apjltwdkxwkjq2` FOREIGN KEY (`BRAND_ID`) REFERENCES `brands` (`BRAND_ID`), CONSTRAINT `FK_pnjxv260jxbntlf53kxm2ri87` FOREIGN KEY (`ENGINE_TYPE_ID`) REFERENCES `engine_type` (`ENGINE_TYPE_ID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cars` -- LOCK TABLES `cars` WRITE; /*!40000 ALTER TABLE `cars` DISABLE KEYS */; /*!40000 ALTER TABLE `cars` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `clients` -- DROP TABLE IF EXISTS `clients`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `clients` ( `CLIENT_ID` int(11) NOT NULL, `MAIL` varchar(255) NOT NULL, `NAME` varchar(255) NOT NULL, `PASSWORD` varchar(255) NOT NULL, `PHONE` varchar(255) DEFAULT NULL, `SURNAME` varchar(255) NOT NULL, `PASSPORT_NUMBER_ID` int(11) DEFAULT NULL, `ROLE_ID` int(11) DEFAULT NULL, `STATUS_ID` int(11) DEFAULT NULL, PRIMARY KEY (`CLIENT_ID`), KEY `FK_n5h5hulejpcayfjkg43ohmrxp` (`PASSPORT_NUMBER_ID`), KEY `FK_onsbdnpehghvr12rfxtyqf8tv` (`ROLE_ID`), KEY `FK_tl6jitl6h0hybox8rnov5ly7f` (`STATUS_ID`), CONSTRAINT `FK_n5h5hulejpcayfjkg43ohmrxp` FOREIGN KEY (`PASSPORT_NUMBER_ID`) REFERENCES `passports` (`PASSPORT_NUMBER_ID`), CONSTRAINT `FK_onsbdnpehghvr12rfxtyqf8tv` FOREIGN KEY (`ROLE_ID`) REFERENCES `roles` (`ROLE_ID`), CONSTRAINT `FK_tl6jitl6h0hybox8rnov5ly7f` FOREIGN KEY (`STATUS_ID`) REFERENCES `status_of_client` (`STATUS_ID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `clients` -- LOCK TABLES `clients` WRITE; /*!40000 ALTER TABLE `clients` DISABLE KEYS */; INSERT INTO `clients` VALUES (1,'vanu@mail.ru','Vania','1234','+3574554444444','Ivanow',1,1,1); /*!40000 ALTER TABLE `clients` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `engine_type` -- DROP TABLE IF EXISTS `engine_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `engine_type` ( `ENGINE_TYPE_ID` int(11) NOT NULL, `ENGINE_NAME` varchar(255) NOT NULL, PRIMARY KEY (`ENGINE_TYPE_ID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `engine_type` -- LOCK TABLES `engine_type` WRITE; /*!40000 ALTER TABLE `engine_type` DISABLE KEYS */; /*!40000 ALTER TABLE `engine_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `orders` -- DROP TABLE IF EXISTS `orders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `orders` ( `ORDER_ID` int(11) NOT NULL, `END_DATE` date NOT NULL, `MESSAGE` varchar(255) NOT NULL, `START_DATE` date NOT NULL, `CAR_ID` int(11) DEFAULT NULL, `CLIENT_ID` int(11) DEFAULT NULL, `STATUS_OF_ORDER` int(11) DEFAULT NULL, PRIMARY KEY (`ORDER_ID`), KEY `FK_gdldfd97sh64hqur1q3bk2m76` (`CAR_ID`), KEY `FK_9wssnydswiy9luile3d4hkd48` (`CLIENT_ID`), KEY `FK_l0bbcdm1i0tefofg3iku7nfp5` (`STATUS_OF_ORDER`), CONSTRAINT `FK_9wssnydswiy9luile3d4hkd48` FOREIGN KEY (`CLIENT_ID`) REFERENCES `clients` (`CLIENT_ID`), CONSTRAINT `FK_gdldfd97sh64hqur1q3bk2m76` FOREIGN KEY (`CAR_ID`) REFERENCES `cars` (`CAR_ID`), CONSTRAINT `FK_l0bbcdm1i0tefofg3iku7nfp5` FOREIGN KEY (`STATUS_OF_ORDER`) REFERENCES `status_of_order` (`STATUS_ID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `orders` -- LOCK TABLES `orders` WRITE; /*!40000 ALTER TABLE `orders` DISABLE KEYS */; /*!40000 ALTER TABLE `orders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `passports` -- DROP TABLE IF EXISTS `passports`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `passports` ( `PASSPORT_NUMBER_ID` int(11) NOT NULL, `PASSPORTS_NUMBER` varchar(255) NOT NULL, `DATE_OF_END` date NOT NULL, `DATE_OF_ISSUE` date NOT NULL, PRIMARY KEY (`PASSPORT_NUMBER_ID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `passports` -- LOCK TABLES `passports` WRITE; /*!40000 ALTER TABLE `passports` DISABLE KEYS */; INSERT INTO `passports` VALUES (1,'fffff','2322-02-05','2322-02-05'); /*!40000 ALTER TABLE `passports` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `roles` -- DROP TABLE IF EXISTS `roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `roles` ( `ROLE_ID` int(11) NOT NULL, `NAME` varchar(255) NOT NULL, PRIMARY KEY (`ROLE_ID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `roles` -- LOCK TABLES `roles` WRITE; /*!40000 ALTER TABLE `roles` DISABLE KEYS */; INSERT INTO `roles` VALUES (1,'USER'); /*!40000 ALTER TABLE `roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `status_of_car` -- DROP TABLE IF EXISTS `status_of_car`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `status_of_car` ( `STATUS_OF_CAR_ID` int(11) NOT NULL, `STATUS_NAME` varchar(255) NOT NULL, PRIMARY KEY (`STATUS_OF_CAR_ID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `status_of_car` -- LOCK TABLES `status_of_car` WRITE; /*!40000 ALTER TABLE `status_of_car` DISABLE KEYS */; /*!40000 ALTER TABLE `status_of_car` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `status_of_client` -- DROP TABLE IF EXISTS `status_of_client`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `status_of_client` ( `STATUS_ID` int(11) NOT NULL, `NAME_OF_STATUS` varchar(255) NOT NULL, PRIMARY KEY (`STATUS_ID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `status_of_client` -- LOCK TABLES `status_of_client` WRITE; /*!40000 ALTER TABLE `status_of_client` DISABLE KEYS */; INSERT INTO `status_of_client` VALUES (1,'CREATE'); /*!40000 ALTER TABLE `status_of_client` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `status_of_order` -- DROP TABLE IF EXISTS `status_of_order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `status_of_order` ( `STATUS_ID` int(11) NOT NULL, `STATUS_NAME` varchar(255) NOT NULL, PRIMARY KEY (`STATUS_ID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `status_of_order` -- LOCK TABLES `status_of_order` WRITE; /*!40000 ALTER TABLE `status_of_order` DISABLE KEYS */; /*!40000 ALTER TABLE `status_of_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `transmission_type` -- DROP TABLE IF EXISTS `transmission_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `transmission_type` ( `TRANSMISSION_TYPE_ID` int(11) NOT NULL, `TRANSMISSION_NAME` varchar(255) NOT NULL, PRIMARY KEY (`TRANSMISSION_TYPE_ID`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `transmission_type` -- LOCK TABLES `transmission_type` WRITE; /*!40000 ALTER TABLE `transmission_type` DISABLE KEYS */; /*!40000 ALTER TABLE `transmission_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database 'test_cars_hibernate' -- /*!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 2016-08-30 16:34:53
#sql('_initGoods') select * from v_eywa_syn_goods #end #sql('_initGoodsByPPIDRange') select * from v_eywa_syn_goods where spbh between @st and @ed #end #sql('_getGoodsPPIDRange') select max(spbh) as zd,min(spbh) as zx from v_eywa_syn_goods #end
CREATE PROCEDURE sp_Get_Beat AS select b.Beatid, b.[Description] from Beat B where b.active=1 order by b.beatid
/* 结算中心-应付海运,未付海运 */ delimiter $ drop procedure if exists Proc_Settlements_LastSeaFreightPayable $ create procedure Proc_Settlements_LastSeaFreightPayable(sInvoiceNO varchar(255)) begin declare fSeaFreightPayable decimal(18,2); set fSeaFreightPayable=(Select ifnull(SeaFreight,0) From Shipments Where InvoiceNo=sInvoiceNO Limit 0,1); Update Settlements set SeaFreightPayable=fSeaFreightPayable,SeaFreightRemain=(fSeaFreightPayable-ifnull(SeaFreightPaidUp,0)) Where InvoiceNO=sInvoiceNO; end $ delimiter ;
INSERT INTO `AddressProvince` VALUES ('1','Nebraska', now()), ('2','Massachusetts', now()), ('3','Arizona', now()), ('4','Georgia', now()), ('5','Kentucky', now()), ('6','Wyoming', now()), ('7','Virginia', now()), ('8','Connecticut', now()), ('9','Vermont', now()), ('10','Texas', now()), ('11','California', now()), ('12','Arkansas', now()), ('13','Pennsylvania', now()), ('14','Wisconsin', now()), ('15','Tennessee', now()), ('16','Colorado', now()), ('17','NewHampshire', now()), ('18','Oklahoma', now()), ('19','Iowa', now()), ('20','Washington', now()), ('21','RhodeIsland', now()), ('22','Idaho', now()), ('23','Delaware', now()), ('24','Hawaii', now()), ('25','Florida', now()), ('26','Michigan', now()), ('27','Missouri', now()), ('28','Louisiana', now()), ('29','Nevada', now()), ('30','NewYork', now()), ('31','Montana', now()), ('32','Maryland', now()), ('33','District of Columbia', now()), ('34','Alabama', now()), ('35','WestVirginia', now()), ('36','Utah', now()), ('37','Indiana', now()), ('38','Ohio', now()), ('39','NorthDakota', now()), ('40','SouthCarolina', now()), ('41','Kansas', now()), ('42','Minnesota', now()), ('43','NewJersey', now()), ('44','Maine', now()), ('45','Alaska', now()), ('46','Illinois', now()), ('47','Mississippi', now()), ('48','SouthDakota', now()), ('49','NewMexico', now()), ('50','Oregon',now());
DROP PROCEDURE [spCompiledQuestionsInsert] DROP PROCEDURE [spCompiledQuestionsDataInsert] DROP PROCEDURE [spThemesInsert] DROP PROCEDURE [spPagesInsert] DROP PROCEDURE [spFilesInsert] DROP PROCEDURE [spCoursesInsert] DROP PROCEDURE [spUserAnswersInsert] DROP PROCEDURE [spQuestionsInsert]
Create Procedure mERP_SP_updateIPAddress(@Node nvarchar(255),@IPAddress nvarchar(255),@RamSize nVarChar(100)) AS BEGIN /*Check whether the IPAddress is alsready updated for the system. Update it only if it is mismatch*/ if(Select isnull(IPAddress,'') from tblclientmaster where Node=@Node)<>@IPAddress BEGIN update tblclientmaster set IPAddress=@IPAddress where Node=@Node END /* On computers with more than 4 GB of memory, the GlobalMemoryStatus function can return incorrect information, reporting a value of �1 to indicate an overflow. For this reason, applications should use the GlobalMemoryStatusEx function instead. */ If(Select isnull(PrimaryMemSize,'') from tblclientmaster where Node=@Node)<>@RamSize BEGIN update tblclientmaster set PrimaryMemSize=@RamSize where Node=@Node END END
WITH S1 (CODE, STEP, MIN_TIME, MAX_TIME, AVG_TIME) AS ( SELECT CAST(CODE AS VARCHAR(255)), CAST(STEP AS VARCHAR(255)), MIN(DATEDIFF(ms, D.st, D.eT)) MIN_TIME, MAX(DATEDIFF(ms, D.st, D.eT)) MAX_TIME, AVG(DATEDIFF(ms, D.st, D.eT)) AVG_TIME FROM CTRL.IMP_DET D INNER JOIN CTRL.IMP_JOB J ON J.ID = D.ID WHERE D.ST >= '2017-03-01' GROUP BY CODE, STEP ) SELECT CODE, STEP, MIN_TIME, SUM(MIN_TIME) OVER (PARTITION BY CODE) MIN_TIME_ROLL, MAX_TIME, SUM(MAX_TIME) OVER (PARTITION BY CODE) MAX_TIME_ROLL, AVG_TIME, SUM(AVG_TIME) OVER (PARTITION BY CODE) AVG_TIME_ROLL FROM S1
create table goat ( id bigint not null, nombre varchar(40) not null, producing boolean not null, primary key (id) ); create table production_event ( id bigint not null AUTO_INCREMENT, version smallint not null, created TIMESTAMP NOT NULL, quantity DECIMAL(6,2) NOT NULL, units_id bigint not null, producers int not null, storage_id bigint, note varchar(255), disposition varchar(255), primary key (id) ); create table sample ( id bigint not null AUTO_INCREMENT, version smallint not null, liters DECIMAL(3,2) not null, goat_id bigint not null, sample_date TIMESTAMP NOT NULL, primary key (id) ); create table storage ( id bigint not null AUTO_INCREMENT, location varchar(40) not null, active boolean not null, primary key (id) ); create table units ( id bigint not null AUTO_INCREMENT, name varchar(40), active boolean not null, primary key (id) ); alter table production_event add constraint units_production_event_fk foreign key (units_id) references units(id); alter table production_event add constraint storage_production_event_fk foreign key (storage_id) references storage(id); alter table sample add constraint goat_sample_fk foreign key (goat_id) references goat(id);
SELECT a.*, b.product_category_name FROM ecommerce_db.order_items a JOIN ecommerce_db.products b ON a.product_id = b.product_id WHERE date(a.shipping_limit_date)<='2018-09-31';
select "user".id, coalesce(tmp1.posts_count, 0) + coalesce(tmp2.reactions_count, 0) from "user" left join ( select post.creator_user_id as user_id, count(post.id) as posts_count from post where post.created_at > timestamp '2017-02-01' or post.updated_at > timestamp '2017-02-01' group by post.creator_user_id ) tmp1 on tmp1.user_id = "user".id left join ( select reaction.user_id as user_id, count(reaction.id) as reactions_count from reaction where reaction.created_at > timestamp '2017-02-01' or reaction.modified_at > timestamp '2017-02-01' group by reaction.user_id ) tmp2 on tmp2.user_id = "user".id;
--CREATE DATABASE WMS CREATE TABLE Clients ( ClientId INT PRIMARY KEY IDENTITY, FirstName VARCHAR(50) NOT NULL, LastName VARCHAR(50) NOT NULL, Phone CHAR(12) CHECK(LEN(Phone)=12) NOT NULL ) CREATE TABLE Mechanics ( MechanicId INT PRIMARY KEY IDENTITY, FirstName VARCHAR(50) NOT NULL, LastName VARCHAR(50) NOT NULL, [Address] VARCHAR(255) NOT NULL ) CREATE TABLE Models ( ModelId INT PRIMARY KEY IDENTITY, [Name] VARCHAR(50) UNIQUE NOT NULL ) CREATE TABLE Jobs ( JobId INT PRIMARY KEY IDENTITY, ModelId INT FOREIGN KEY REFERENCES Models(ModelId) NOT NULL, [Status] VARCHAR(11) DEFAULT 'Pending' CHECK([Status] IN ('Pending', 'In Progress','Finished')) NOT NULL, ClientId INT FOREIGN KEY REFERENCES Clients(ClientId) NOT NULL, MechanicId INT FOREIGN KEY REFERENCES Mechanics(MechanicId), IssueDate DATE NOT NULL, FinishDate DATE ) CREATE TABLE Orders ( OrderId INT PRIMARY KEY IDENTITY, JobId INT FOREIGN KEY REFERENCES Jobs(JobId) NOT NULL, IssueDate DATE, Delivered BIT DEFAULT 0 ) CREATE TABLE Vendors ( VendorId INT PRIMARY KEY IDENTITY, [Name] VARCHAR(50) UNIQUE NOT NULL ) CREATE TABLE Parts ( PartId INT PRIMARY KEY IDENTITY, SerialNumber VARCHAR(50) UNIQUE NOT NULL, [Description] VARCHAR(255), Price DECIMAL(6,2) CHECK(Price > 0) NOT NULL, VendorId INT FOREIGN KEY REFERENCES Vendors(VendorId) NOT NULL, StockQty INT DEFAULT 0 CHECK(StockQty >= 0) ) CREATE TABLE OrderParts ( OrderId INT FOREIGN KEY REFERENCES Orders(OrderId) NOT NULL, PartId INT FOREIGN KEY REFERENCES Parts(PartId) NOT NULL, Quantity INT DEFAULT 1 CHECK(Quantity > 0) , PRIMARY KEY (OrderId, PartId) ) CREATE TABLE PartsNeeded ( JobId INT FOREIGN KEY REFERENCES Jobs(JobId) NOT NULL, PartId INT FOREIGN KEY REFERENCES Parts(PartId) NOT NULL, Quantity INT DEFAULT 1 CHECK(Quantity > 0) , PRIMARY KEY (JobId, PartId) )
CREATE TABLE account ( id INT PRIMARY KEY AUTO_INCREMENT, NAME VARCHAR(10), balance DOUBLE ); -- 添加数据 INSERT INTO account (NAME, balance) VALUES ('zhangsan', 1000), ('lisi', 1000); -- 员工表 CREATE TABLE emp ( id INT PRIMARY KEY, -- 员工id ename VARCHAR(50), -- 员工姓名 job_id INT, -- 职务id mgr INT , -- 上级领导 joindate DATE, -- 入职日期 salary DECIMAL(7,2), -- 工资 bonus DECIMAL(7,2), -- 奖金 dept_id INT -- 所在部门编号 ); -- 添加员工 INSERT INTO emp(id,ename,job_id,mgr,joindate,salary,bonus,dept_id) VALUES (1001,'孙悟空',4,1004,'2000-12-17','8000.00',NULL,20), (1002,'卢俊义',3,1006,'2001-02-20','16000.00','3000.00',30), (1003,'林冲',3,1006,'2001-02-22','12500.00','5000.00',30), (1004,'唐僧',2,1009,'2001-04-02','29750.00',NULL,20), (1005,'李逵',4,1006,'2001-09-28','12500.00','14000.00',30), (1006,'宋江',2,1009,'2001-05-01','28500.00',NULL,30), (1007,'刘备',2,1009,'2001-09-01','24500.00',NULL,10), (1008,'猪八戒',4,1004,'2007-04-19','30000.00',NULL,20), (1009,'罗贯中',1,NULL,'2001-11-17','50000.00',NULL,10), (1010,'吴用',3,1006,'2001-09-08','15000.00','0.00',30), (1011,'沙僧',4,1004,'2007-05-23','11000.00',NULL,20), (1012,'李逵',4,1006,'2001-12-03','9500.00',NULL,30), (1013,'小白龙',4,1004,'2001-12-03','30000.00',NULL,20), (1014,'关羽',4,1007,'2002-01-23','13000.00',NULL,10); -- 用户表 CREATE TABLE user ( id INT PRIMARY KEY AUTO_INCREMENT, USERNAME VARCHAR(10), PASSWORD VARCHAR(10) ); -- 添加数据 INSERT INTO user (USERNAME, PASSWORD) VALUES ('zhangsan', '123');
-- Warrior -- Set prices to zero UPDATE `npc_trainer` SET `MoneyCost`=0 WHERE `ID` IN (200001, 200002); -- Defensive Stance DELETE FROM `npc_trainer` WHERE `ID`=200002 AND `SpellID`=71; INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (200002, 71, 0, 0, 0, 10); -- Taunt DELETE FROM `npc_trainer` WHERE `ID`=200002 AND `SpellID`=355; INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (200002, 355, 0, 0, 0, 10); -- Sunder Armor DELETE FROM `npc_trainer` WHERE `ID`=200002 AND `SpellID`=7386; INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (200002, 7386, 0, 0, 0, 10); -- Berserker Stance DELETE FROM `npc_trainer` WHERE `ID`=200002 AND `SpellID`=2458; INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (200002, 2458, 0, 0, 0, 30); -- Intercept DELETE FROM `npc_trainer` WHERE `ID`=200002 AND `SpellID`=20252; INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (200002, 20252, 0, 0, 0, 30); -- Paladin -- Set prices to zero UPDATE `npc_trainer` SET `MoneyCost`=0 WHERE `ID` IN (200003, 200004, 200020, 200021); -- Redemption DELETE FROM `npc_trainer` WHERE `ID`=200003 AND `SpellID`=7328; INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (200003, 7328, 0, 0, 0, 12); DELETE FROM `npc_trainer` WHERE `ID`=200004 AND `SpellID`=7328; INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (200004, 7328, 0, 0, 0, 12); -- Hunter -- Set prices to zero UPDATE `npc_trainer` SET `MoneyCost`=0 WHERE `ID` IN (200013, 200014); -- Tame Beast DELETE FROM `npc_trainer` WHERE `ID`=200014 AND `SpellID`=1515; INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (200014, 1515, 0, 0, 0, 10); -- Call Pet DELETE FROM `npc_trainer` WHERE `ID`=200014 AND `SpellID`=883; INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (200014, 883, 0, 0, 0, 10); -- Dismiss Pet DELETE FROM `npc_trainer` WHERE `ID`=200014 AND `SpellID`=2641; INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (200014, 2641, 0, 0, 0, 10); -- Revive Pet DELETE FROM `npc_trainer` WHERE `ID`=200014 AND `SpellID`=982; INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (200014, 982, 0, 0, 0, 10); -- Feed Pet DELETE FROM `npc_trainer` WHERE `ID`=200014 AND `SpellID`=6991; INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (200014, 6991, 0, 0, 0, 10); -- Rogue -- Set prices to zero UPDATE `npc_trainer` SET `MoneyCost`=0 WHERE `ID` IN (200015, 200016); -- Priest -- Set prices to zero UPDATE `npc_trainer` SET `MoneyCost`=0 WHERE `ID` IN (200011, 200012); -- Death Knight -- Set prices to zero UPDATE `npc_trainer` SET `MoneyCost`=0 WHERE `ID` IN (200019); -- Shaman -- Set prices to zero UPDATE `npc_trainer` SET `MoneyCost`=0 WHERE `ID` IN (200017, 200018); -- Stoneskin Totem DELETE FROM `npc_trainer` WHERE `ID`=200018 AND `SpellID`=8071; INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (200018, 8071, 0, 0, 0, 4); -- Searing Totem DELETE FROM `npc_trainer` WHERE `ID`=200018 AND `SpellID`=3599; INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (200018, 3599, 0, 0, 0, 10); -- Healing Stream Totem DELETE FROM `npc_trainer` WHERE `ID`=200018 AND `SpellID`=5394; INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (200018, 5394, 0, 0, 0, 20); -- Mage -- Set prices to zero UPDATE `npc_trainer` SET `MoneyCost`=0 WHERE `ID` IN (200007, 200008); -- Warlock -- Set prices to zero UPDATE `npc_trainer` SET `MoneyCost`=0 WHERE `ID` IN (200009, 200010); -- Summon Voidwalker DELETE FROM `npc_trainer` WHERE `ID`=200010 AND `SpellID`=697; INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (200010, 697, 0, 0, 0, 10); -- Summon Succubus DELETE FROM `npc_trainer` WHERE `ID`=200010 AND `SpellID`=712; INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (200010, 712, 0, 0, 0, 20); -- Summon Felhunter DELETE FROM `npc_trainer` WHERE `ID`=200010 AND `SpellID`=691; INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (200010, 691, 0, 0, 0, 30); -- Druid -- Set prices to zero UPDATE `npc_trainer` SET `MoneyCost`=0 WHERE `ID` IN (200005, 200006); -- Bear Form DELETE FROM `npc_trainer` WHERE `ID`=200006 AND `SpellID`=5487; INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (200006, 5487, 0, 0, 0, 10); -- Growl DELETE FROM `npc_trainer` WHERE `ID`=200006 AND `SpellID`=6795; INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (200006, 6795, 0, 0, 0, 10); -- Maul DELETE FROM `npc_trainer` WHERE `ID`=200006 AND `SpellID`=6807; INSERT INTO `npc_trainer` (`ID`, `SpellID`, `MoneyCost`, `ReqSkillLine`, `ReqSkillRank`, `ReqLevel`) VALUES (200006, 6807, 0, 0, 0, 10);
-- MySQL Script generated by MySQL Workbench -- 11/21/16 17:50:26 -- Model: New Model Version: 1.0 -- MySQL Workbench Forward Engineering SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES'; -- ----------------------------------------------------- -- Schema TimeTracker -- ----------------------------------------------------- DROP SCHEMA IF EXISTS `TimeTracker` ; -- ----------------------------------------------------- -- Schema TimeTracker -- ----------------------------------------------------- CREATE SCHEMA IF NOT EXISTS `TimeTracker` DEFAULT CHARACTER SET utf8 ; USE `TimeTracker` ; -- ----------------------------------------------------- -- Table `TimeTracker`.`College` -- ----------------------------------------------------- DROP TABLE IF EXISTS `TimeTracker`.`College` ; CREATE TABLE IF NOT EXISTS `TimeTracker`.`College` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(200) NOT NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `TimeTracker`.`Department` -- ----------------------------------------------------- DROP TABLE IF EXISTS `TimeTracker`.`Department` ; CREATE TABLE IF NOT EXISTS `TimeTracker`.`Department` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(45) NOT NULL, `college_id` INT NOT NULL, PRIMARY KEY (`id`), CONSTRAINT `college_id_fk` FOREIGN KEY (`id`) REFERENCES `TimeTracker`.`College` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `TimeTracker`.`Course` -- ----------------------------------------------------- DROP TABLE IF EXISTS `TimeTracker`.`Course` ; CREATE TABLE IF NOT EXISTS `TimeTracker`.`Course` ( `course_number` VARCHAR(8) NOT NULL, `name` VARCHAR(45) NOT NULL, `department_id` INT NOT NULL, PRIMARY KEY (`course_number`), INDEX `department_id_idx` (`department_id` ASC), CONSTRAINT `department_id_fk` FOREIGN KEY (`department_id`) REFERENCES `TimeTracker`.`Department` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `TimeTracker`.`User` -- ----------------------------------------------------- DROP TABLE IF EXISTS `TimeTracker`.`User` ; CREATE TABLE IF NOT EXISTS `TimeTracker`.`User` ( `id` INT NOT NULL AUTO_INCREMENT, `first_name` VARCHAR(45) NOT NULL, `last_name` VARCHAR(45) NOT NULL, `username` VARCHAR(45) NOT NULL, `pwd` VARCHAR(45) NOT NULL, `groups` VARCHAR(45) NULL, `is_active` TINYINT(1) NULL, `last_login` DATETIME NULL, `date_joined` DATETIME NULL, PRIMARY KEY (`id`, `username`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `TimeTracker`.`Community_Partner` -- ----------------------------------------------------- DROP TABLE IF EXISTS `TimeTracker`.`Community_Partner` ; CREATE TABLE IF NOT EXISTS `TimeTracker`.`Community_Partner` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(45) NOT NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `TimeTracker`.`Project` -- ----------------------------------------------------- DROP TABLE IF EXISTS `TimeTracker`.`Project` ; CREATE TABLE IF NOT EXISTS `TimeTracker`.`Project` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(45) NULL, `course_number` VARCHAR(8) NULL, `community_partner_id` INT NOT NULL, `start_date` DATE NULL, `end_date` DATE NULL, `description` MEDIUMTEXT NULL, `location` POINT NULL, PRIMARY KEY (`id`), INDEX `community_partner_id_idx` (`community_partner_id` ASC), INDEX `pj_course_number_id_fk_idx` (`course_number` ASC), CONSTRAINT `community_partner_id_fk` FOREIGN KEY (`community_partner_id`) REFERENCES `TimeTracker`.`Community_Partner` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `pj_course_number_id_fk` FOREIGN KEY (`course_number`) REFERENCES `TimeTracker`.`Course` (`course_number`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `TimeTracker`.`Record_Category` -- ----------------------------------------------------- DROP TABLE IF EXISTS `TimeTracker`.`Record_Category` ; CREATE TABLE IF NOT EXISTS `TimeTracker`.`Record_Category` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(45) NULL, PRIMARY KEY (`id`), UNIQUE INDEX `name_UNIQUE` (`name` ASC)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `TimeTracker`.`Semester` -- ----------------------------------------------------- DROP TABLE IF EXISTS `TimeTracker`.`Semester` ; CREATE TABLE IF NOT EXISTS `TimeTracker`.`Semester` ( `id` INT NOT NULL AUTO_INCREMENT, `name` VARCHAR(8) NOT NULL, `start_date` DATE NOT NULL, `end_date` DATE NOT NULL, `is_active` TINYINT(1) NOT NULL DEFAULT 1, PRIMARY KEY (`id`), UNIQUE INDEX `name_UNIQUE` (`name` ASC)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `TimeTracker`.`Enrollment` -- ----------------------------------------------------- DROP TABLE IF EXISTS `TimeTracker`.`Enrollment` ; CREATE TABLE IF NOT EXISTS `TimeTracker`.`Enrollment` ( `id` INT NOT NULL AUTO_INCREMENT, `user_id` INT NOT NULL, `course_number` VARCHAR(8) NOT NULL, `semester_name` VARCHAR(8) NOT NULL, `meeting_days` VARCHAR(5) NOT NULL, `meeting_start_time` TIME(3) NOT NULL, `meeting_end_time` TIME(3) NOT NULL, `is_active` TINYINT(1) NOT NULL, PRIMARY KEY (`id`, `meeting_days`), INDEX `course_id_f_idx` (`course_number` ASC), INDEX `semester_name_fk_idx` (`semester_name` ASC), CONSTRAINT `student_id_fk` FOREIGN KEY (`user_id`) REFERENCES `TimeTracker`.`User` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `course_id_fk` FOREIGN KEY (`course_number`) REFERENCES `TimeTracker`.`Course` (`course_number`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `semester_name_fk` FOREIGN KEY (`semester_name`) REFERENCES `TimeTracker`.`Semester` (`name`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `TimeTracker`.`Record` -- ----------------------------------------------------- DROP TABLE IF EXISTS `TimeTracker`.`Record` ; CREATE TABLE IF NOT EXISTS `TimeTracker`.`Record` ( `id` INT NOT NULL AUTO_INCREMENT, `enrollment_id` INT NOT NULL, `project_id` INT NOT NULL, `date` DATE NOT NULL, `start_time` TIME(3) NULL, `total_hours` DECIMAL(4,2) NOT NULL, `location` POINT NULL, `category_id` INT NOT NULL, `is_active` TINYINT(1) NULL, `comments` MEDIUMTEXT NULL, `extra_field` VARCHAR(45) NULL, PRIMARY KEY (`id`), INDEX `project_id_idx` (`project_id` ASC), INDEX `category_id_idx` (`category_id` ASC), INDEX `enrollment_id_fk_idx` (`enrollment_id` ASC), CONSTRAINT `project_id_fk` FOREIGN KEY (`project_id`) REFERENCES `TimeTracker`.`Project` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `category_id_fk` FOREIGN KEY (`category_id`) REFERENCES `TimeTracker`.`Record_Category` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `enrollment_id_fk` FOREIGN KEY (`enrollment_id`) REFERENCES `TimeTracker`.`Enrollment` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; alter table `College` auto_increment = 1001; alter table `Community_Partner` auto_increment = 1001; alter table `Department` auto_increment = 1001; alter table `Enrollment` auto_increment = 1; alter table `Project` auto_increment = 1001; alter table `Record` auto_increment = 1; alter table `Record_Category` auto_increment = 1; alter table `Semester` auto_increment = 1001; alter table `User` auto_increment = 101; SET SQL_MODE=@OLD_SQL_MODE; SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
alter session set events '10046 trace name context off' /
/* Navicat MySQL Data Transfer Source Server : Mysql Source Server Version : 50505 Source Host : localhost:3306 Source Database : encuestas Target Server Type : MYSQL Target Server Version : 50505 File Encoding : 65001 Date: 2016-08-16 13:58:57 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for encuestas -- ---------------------------- DROP TABLE IF EXISTS `encuestas`; CREATE TABLE `encuestas` ( `id` int(8) NOT NULL AUTO_INCREMENT, `id_usuario` int(8) NOT NULL, `encuesta` varchar(64) NOT NULL, PRIMARY KEY (`id`), KEY `usuario_encuesta` (`id_usuario`), CONSTRAINT `usuario_encuesta` FOREIGN KEY (`id_usuario`) REFERENCES `usuarios` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for preguntas -- ---------------------------- DROP TABLE IF EXISTS `preguntas`; CREATE TABLE `preguntas` ( `id` int(24) NOT NULL AUTO_INCREMENT, `id_encuesta` int(8) NOT NULL, `id_tipo_respuesta` int(4) NOT NULL, `pregunta` varchar(255) NOT NULL, `estado` int(4) DEFAULT NULL, PRIMARY KEY (`id`), KEY `encuesta_pregunta` (`id_encuesta`), KEY `tipo_respuesta` (`id_tipo_respuesta`), CONSTRAINT `encuesta_pregunta` FOREIGN KEY (`id_encuesta`) REFERENCES `encuestas` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `tipo_respuesta` FOREIGN KEY (`id_tipo_respuesta`) REFERENCES `tipo_respuesta` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for respuestas -- ---------------------------- DROP TABLE IF EXISTS `respuestas`; CREATE TABLE `respuestas` ( `id` int(24) NOT NULL AUTO_INCREMENT, `id_pregunta` int(24) NOT NULL, `respuesta` varchar(255) NOT NULL, `fecha` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `pregunta_respuesta` (`id_pregunta`), CONSTRAINT `pregunta_respuesta` FOREIGN KEY (`id_pregunta`) REFERENCES `preguntas` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for sesiones -- ---------------------------- DROP TABLE IF EXISTS `sesiones`; CREATE TABLE `sesiones` ( `id` int(24) NOT NULL AUTO_INCREMENT, `id_usuario` int(8) NOT NULL, `codigo` varchar(128) NOT NULL, `ip` varchar(64) NOT NULL, `estado` int(4) NOT NULL, PRIMARY KEY (`id`), KEY `sesion_usuario` (`id_usuario`), CONSTRAINT `sesion_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuarios` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- ---------------------------- -- Table structure for tipo_respuesta -- ---------------------------- DROP TABLE IF EXISTS `tipo_respuesta`; CREATE TABLE `tipo_respuesta` ( `id` int(8) NOT NULL AUTO_INCREMENT, `id_usuario` int(8) NOT NULL, `nombre` varchar(64) NOT NULL, `slug` varchar(255) NOT NULL COMMENT 'texto a mostrar (Formato: Json, configurable por el usuario)', PRIMARY KEY (`id`), KEY `tipo_respuesta_usuario` (`id_usuario`), CONSTRAINT `tipo_respuesta_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `usuarios` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Por ejemplo 1- Rate, 2- Abierta, 3- 1 a 5\r\nLos registros del usuario 0 o el usuario administrador se muestra por default. Pero se agregan los registros del usuario que haya consultado.\r\nEstá tabla se nutre por la personalización de respuestas'; -- ---------------------------- -- Table structure for usuarios -- ---------------------------- DROP TABLE IF EXISTS `usuarios`; CREATE TABLE `usuarios` ( `id` int(8) NOT NULL AUTO_INCREMENT, `nombre` varchar(64) DEFAULT NULL, `fecha` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `correo` varchar(64) NOT NULL, `contrasena` varchar(128) NOT NULL, `token` varchar(128) NOT NULL COMMENT 'Para loger desde web al servidor, es decir, doble verficación ', `tipo_usuario` int(4) NOT NULL, `estado` int(2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- phpMyAdmin SQL Dump -- version 4.9.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Oct 31, 2020 at 05:46 PM -- Server version: 8.0.18 -- PHP Version: 7.3.11 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: `elearning1` -- -- -------------------------------------------------------- -- -- Table structure for table `about` -- CREATE TABLE `about` ( `a_id` int(10) NOT NULL, `about` varchar(500) COLLATE utf8_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cat` -- CREATE TABLE `cat` ( `cat_id` int(10) NOT NULL, `cat_name` text COLLATE utf8_unicode_ci NOT NULL, `cat_icon` text COLLATE utf8_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `cat` -- INSERT INTO `cat` (`cat_id`, `cat_name`, `cat_icon`) VALUES (1, 'Programming', '<i class=\"fas fa-laptop-code\"></i>'), (6, 'Database Management', '<i class=\"fa fa-database\"></i>'), (9, 'R programing', '<i class=\"fab fa-r-project\"></i>'), (10, 'Video Editing', '<i class=\"fas fa-film\"></i>'), (11, 'PHP', '<i class=\"fab fa-php\"></i>'); -- -------------------------------------------------------- -- -- Table structure for table `contact` -- CREATE TABLE `contact` ( `con_id` int(10) NOT NULL, `email` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `add1` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `add2` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `yt` varchar(20) COLLATE utf8_unicode_ci NOT NULL, `fb` varchar(20) COLLATE utf8_unicode_ci NOT NULL, `gp` varchar(20) COLLATE utf8_unicode_ci NOT NULL, `tw` varchar(20) COLLATE utf8_unicode_ci NOT NULL, `link` varchar(20) COLLATE utf8_unicode_ci NOT NULL, `phn` text COLLATE utf8_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `faqs` -- CREATE TABLE `faqs` ( `q_id` int(10) NOT NULL, `qsn` varchar(500) COLLATE utf8_unicode_ci NOT NULL, `ans` varchar(500) COLLATE utf8_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `faqs` -- INSERT INTO `faqs` (`q_id`, `qsn`, `ans`) VALUES (1, 'How can I pay?', 'Pls pay through the Paytm Wallet or Gpay'), (2, 'How do I read the course details?', 'By clicking on any of the Top Courses'), (3, 'How can I enroll in a course', 'By selecting course category'); -- -------------------------------------------------------- -- -- Table structure for table `lang` -- CREATE TABLE `lang` ( `lang_id` int(10) NOT NULL, `lang_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `lang` -- INSERT INTO `lang` (`lang_id`, `lang_name`) VALUES (1, 'Hindi'), (2, 'English'); -- -------------------------------------------------------- -- -- Table structure for table `sub_cat` -- CREATE TABLE `sub_cat` ( `sub_cat_id` int(11) NOT NULL, `sub_cat_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `cat_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `sub_cat` -- INSERT INTO `sub_cat` (`sub_cat_id`, `sub_cat_name`, `cat_id`) VALUES (1, 'PHP', 1), (3, 'DATABASE', 1); -- -------------------------------------------------------- -- -- Table structure for table `term` -- CREATE TABLE `term` ( `t_id` int(10) NOT NULL, `term` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `for_whom` varchar(20) COLLATE utf8_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `term` -- INSERT INTO `term` (`t_id`, `term`, `for_whom`) VALUES (1, 'Teachers should have...', 'Teacher'), (3, 'Student should have Registered', 'Student'); -- -- Indexes for dumped tables -- -- -- Indexes for table `about` -- ALTER TABLE `about` ADD PRIMARY KEY (`a_id`); -- -- Indexes for table `cat` -- ALTER TABLE `cat` ADD PRIMARY KEY (`cat_id`); -- -- Indexes for table `contact` -- ALTER TABLE `contact` ADD PRIMARY KEY (`con_id`); -- -- Indexes for table `faqs` -- ALTER TABLE `faqs` ADD PRIMARY KEY (`q_id`); -- -- Indexes for table `lang` -- ALTER TABLE `lang` ADD PRIMARY KEY (`lang_id`); -- -- Indexes for table `sub_cat` -- ALTER TABLE `sub_cat` ADD PRIMARY KEY (`sub_cat_id`); -- -- Indexes for table `term` -- ALTER TABLE `term` ADD PRIMARY KEY (`t_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `about` -- ALTER TABLE `about` MODIFY `a_id` int(10) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cat` -- ALTER TABLE `cat` MODIFY `cat_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; -- -- AUTO_INCREMENT for table `contact` -- ALTER TABLE `contact` MODIFY `con_id` int(10) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `faqs` -- ALTER TABLE `faqs` MODIFY `q_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `lang` -- ALTER TABLE `lang` MODIFY `lang_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `sub_cat` -- ALTER TABLE `sub_cat` MODIFY `sub_cat_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `term` -- ALTER TABLE `term` MODIFY `t_id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; 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 */;
DO $$ BEGIN BEGIN ALTER TABLE sys_user ADD COLUMN is_under_13 boolean DEFAULT false; EXCEPTION WHEN duplicate_column THEN RAISE NOTICE 'column is_under_13 already exists in sys_user.'; END; END; $$
-- Write a SQL query to find the top 5 best paid employees. SELECT TOP 5 e.FirstName + ' ' + e.LastName AS FullName, e.Salary FROM dbo.Employees e ORDER BY e.Salary DESC
--ESTA CONSULTA ES DE LA FOTO QUE PASO GUSTAVO SIN EL INTERSECT SELECT u1.id as id1, u2.id as id2 FROM persona as u1, persona as u2 WHERE u1.id != u2.id AND u1.id < u2.id AND NOT EXISTS ( SELECT p3.peliculaid FROM pelis_que_vio as p3 where p3.usuarioid = u1.id OR p3.usuarioid = u2.id EXCEPT ( SELECT p1.peliculaid FROM pelis_que_vio as p1, pelis_que_vio as p2 where p1.usuarioid = u1.id AND p2.usuarioid = u2.id AND p1.peliculaid = p2.peliculaid ) ); --ESTA CONSULTA ESTA UN POCO (BASTANTE) MAS MODIFICADA QUE LA ANTERIOR RESPECTO A LA DE LA FOTO SELECT u1.id as id1, u2.id as id2 FROM persona as u1, persona as u2 WHERE u1.id != u2.id AND u1.id < u2.id AND ((SELECT COUNT(p.peliculaid) FROM pelis_que_vio as p WHERE p.usuarioid = u1.id) = (SELECT COUNT(p.peliculaid) FROM pelis_que_vio as p WHERE p.usuarioid = u2.id)) AND NOT EXISTS ( (SELECT p1.peliculaid FROM pelis_que_vio as p1, pelis_que_vio as p2 where p1.usuarioid = u1.id AND p2.usuarioid = u2.id AND p1.peliculaid != p2.peliculaid ) ) ORDER BY id1, id2;
CREATE SEQUENCE id_seq; CREATE TABLE emails ( id INTEGER primary key not null default nextval('id_seq'), sender TEXT NOT NULL, recipient TEXT NOT NULL );
drop procedure if exists ifProc3; delimiter // create procedure ifProc3(score int) begin declare point int; -- 변수 declare credit char(4); -- 변수 set point = score; if point > 100 then signal sqlstate '45000' set message_text = '100점 이상의 점수는 판단할 수 없습니다.'; elseif point >= 90 then -- 조건이 ture일 때만 아래줄 실행 set credit = 'A'; -- true elseif point >= 80 then set credit = 'B'; elseif point >= 70 then set credit = 'C'; elseif point >= 60 then set credit = 'D'; elseif point < 60 && point >= 0 then -- 그 밖에 또는 나머지 조건 set credit = 'F'; else signal sqlstate '45000' set message_text = '0점 이하의 점수는 판단할 수 없습니다.'; end if; select concat('취득점수==>', point), concat('학점은==>', credit); -- concat: 이어서 여러개 출력 end // delimiter ; call ifProc3(199)
INSERT IGNORE INTO types VALUES (1, 'fiction'); INSERT IGNORE INTO types VALUES (2, 'non-fiction'); INSERT IGNORE INTO types VALUES (3, 'comedy'); INSERT IGNORE INTO types VALUES (4, 'history'); INSERT IGNORE INTO types VALUES (5, 'horror'); INSERT IGNORE INTO types VALUES (6, 'science'); INSERT IGNORE INTO types VALUES (7, 'adventure'); INSERT IGNORE INTO shelves VALUES (1, 'Want to read'); INSERT IGNORE INTO shelves VALUES (2, 'Read'); INSERT IGNORE INTO shelves VALUES (3, 'Currently Reading'); INSERT IGNORE INTO shelves VALUES (4, 'None'); INSERT IGNORE INTO books VALUES (1, 'On the Road', 'Jack Kerouac', '5', '2021-09-07', '2021-09-07', 2, 6); INSERT IGNORE INTO books VALUES (2, 'The Enzyme Factor', 'Shinya Hiromi', NULL, NULL , NULL , 4, 1); INSERT IGNORE INTO books VALUES (3, 'Viet Nam Dynasties', 'Quynh Cu', '9', '2021-09-07', '2021-09-07', 2, 4); INSERT IGNORE INTO books VALUES (4, 'How to Influence People', 'Dale Carnegie', '2', '2021-09-07', '2021-09-07', 2, 2); INSERT IGNORE INTO books VALUES (5, 'Deep Work', 'Cal Newport', '5', '2021-09-07', '2021-09-07', 2, 7);
-- phpMyAdmin SQL Dump -- version 4.0.10.10 -- http://www.phpmyadmin.net -- -- Хост: 127.0.0.1:3306 -- Время создания: Янв 14 2017 г., 15:43 -- Версия сервера: 5.5.45 -- Версия PHP: 5.3.29 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 utf8 */; -- -- База данных: `forum_project` -- -- -------------------------------------------------------- -- -- Структура таблицы `Categories` -- CREATE TABLE IF NOT EXISTS `Categories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `category` varchar(64) DEFAULT NULL, `color1` double DEFAULT NULL, `color2` double DEFAULT NULL, `color3` double DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; -- -- Дамп данных таблицы `Categories` -- INSERT INTO `Categories` (`id`, `category`, `color1`, `color2`, `color3`) VALUES (1, 'Рестораны', NULL, NULL, NULL), (2, 'Кинотеатры', NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Структура таблицы `Images` -- CREATE TABLE IF NOT EXISTS `Images` ( `id` int(11) NOT NULL AUTO_INCREMENT, `placeid` int(11) NOT NULL, `imagepath` varchar(256) DEFAULT NULL, PRIMARY KEY (`id`), KEY `placeid` (`placeid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Структура таблицы `Messages` -- CREATE TABLE IF NOT EXISTS `Messages` ( `id` int(11) NOT NULL AUTO_INCREMENT, `userid` int(11) NOT NULL, `comment` varchar(2048) DEFAULT NULL, `stamp` timestamp NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `userid` (`userid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ; -- -- Дамп данных таблицы `Messages` -- INSERT INTO `Messages` (`id`, `userid`, `comment`, `stamp`) VALUES (1, 1, 'First message', '2017-01-12 09:12:11'), (2, 2, 'Second message', '2017-01-10 02:13:43'), (3, 2, 'Third message', '2017-01-14 12:42:20'); -- -------------------------------------------------------- -- -- Структура таблицы `Places` -- CREATE TABLE IF NOT EXISTS `Places` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(128) DEFAULT NULL, `catid` int(11) NOT NULL, `lat` double DEFAULT NULL, `lng` double DEFAULT NULL, `info` varchar(1024) DEFAULT NULL, `ulike` int(11) DEFAULT NULL, `udislike` int(11) DEFAULT NULL, `statusid` int(11) NOT NULL, `userid` int(11) NOT NULL, `stamp` int(11) DEFAULT NULL, `link` varchar(256) DEFAULT NULL, PRIMARY KEY (`id`), KEY `catid` (`catid`), KEY `statusid` (`statusid`), KEY `userid` (`userid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ; -- -- Дамп данных таблицы `Places` -- INSERT INTO `Places` (`id`, `title`, `catid`, `lat`, `lng`, `info`, `ulike`, `udislike`, `statusid`, `userid`, `stamp`, `link`) VALUES (5, 'Порт Рояль', 1, 47.846823, 35.123796, 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae, nostrum!', NULL, NULL, 1, 1, NULL, NULL), (6, 'Интурист', 1, 47.839232, 35.137176, 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae, nostrum!', NULL, NULL, 1, 1, NULL, NULL), (7, 'Веселый Роджер', 1, 47.837906, 35.098992, 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae, nostrum!', NULL, NULL, 1, 1, NULL, NULL), (8, 'Кинотеатр Довженка', 2, 47.841783, 35.132994, 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae, nostrum!', NULL, NULL, 1, 1, NULL, NULL), (9, 'Кинотеатр Байда', 2, 47.838723, 35.141615, 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae, nostrum!', NULL, NULL, 1, 1, NULL, NULL), (10, 'Кинотеатр Маяковского', 2, 47.851412, 35.115534, 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Vitae, nostrum!', NULL, NULL, 1, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Структура таблицы `Posts` -- CREATE TABLE IF NOT EXISTS `Posts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `themeid` int(11) NOT NULL, `statusid` int(11) NOT NULL, `userid` int(11) NOT NULL, `content` varchar(2048) DEFAULT NULL, `stamp` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `themeid` (`themeid`), KEY `statusid` (`statusid`), KEY `userid` (`userid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Структура таблицы `Roles` -- CREATE TABLE IF NOT EXISTS `Roles` ( `id` int(11) NOT NULL AUTO_INCREMENT, `role` varchar(32) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ; -- -- Дамп данных таблицы `Roles` -- INSERT INTO `Roles` (`id`, `role`) VALUES (1, 'admin'), (2, 'moder'), (3, 'user'); -- -------------------------------------------------------- -- -- Структура таблицы `Statuses` -- CREATE TABLE IF NOT EXISTS `Statuses` ( `id` int(11) NOT NULL AUTO_INCREMENT, `status` varchar(32) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ; -- -- Дамп данных таблицы `Statuses` -- INSERT INTO `Statuses` (`id`, `status`) VALUES (1, 'new'), (2, 'ok'), (3, 'no'), (4, 'closed'); -- -------------------------------------------------------- -- -- Структура таблицы `Themes` -- CREATE TABLE IF NOT EXISTS `Themes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(256) NOT NULL, `catid` int(11) NOT NULL, `userid` int(11) NOT NULL, `stamp` int(11) DEFAULT NULL, `statusid` int(11) NOT NULL, `content` varchar(2048) DEFAULT NULL, PRIMARY KEY (`id`), KEY `catid` (`catid`), KEY `userid` (`userid`), KEY `statusid` (`statusid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Структура таблицы `Users` -- CREATE TABLE IF NOT EXISTS `Users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `login` varchar(64) DEFAULT NULL, `pass` varchar(256) DEFAULT NULL, `email` varchar(64) DEFAULT NULL, `roleid` int(11) NOT NULL, `stamp` int(11) DEFAULT NULL, `posts` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `roleid` (`roleid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ; -- -- Дамп данных таблицы `Users` -- INSERT INTO `Users` (`id`, `login`, `pass`, `email`, `roleid`, `stamp`, `posts`) VALUES (1, 'admin', '123456', 'mail@mail.com', 1, NULL, NULL), (2, 'moder', '123456', 'mail@mail.com', 2, NULL, NULL), (3, 'user', '123456', 'mail@mail.com', 3, NULL, NULL); -- -- Ограничения внешнего ключа сохраненных таблиц -- -- -- Ограничения внешнего ключа таблицы `Images` -- ALTER TABLE `Images` ADD CONSTRAINT `images_ibfk_1` FOREIGN KEY (`placeid`) REFERENCES `Places` (`id`) ON DELETE CASCADE; -- -- Ограничения внешнего ключа таблицы `Messages` -- ALTER TABLE `Messages` ADD CONSTRAINT `messages_ibfk_1` FOREIGN KEY (`userid`) REFERENCES `Users` (`id`) ON DELETE CASCADE; -- -- Ограничения внешнего ключа таблицы `Places` -- ALTER TABLE `Places` ADD CONSTRAINT `places_ibfk_1` FOREIGN KEY (`catid`) REFERENCES `Categories` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `places_ibfk_2` FOREIGN KEY (`statusid`) REFERENCES `Statuses` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `places_ibfk_3` FOREIGN KEY (`userid`) REFERENCES `Users` (`id`) ON DELETE CASCADE; -- -- Ограничения внешнего ключа таблицы `Posts` -- ALTER TABLE `Posts` ADD CONSTRAINT `posts_ibfk_1` FOREIGN KEY (`themeid`) REFERENCES `Themes` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `posts_ibfk_2` FOREIGN KEY (`statusid`) REFERENCES `Statuses` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `posts_ibfk_3` FOREIGN KEY (`userid`) REFERENCES `Users` (`id`) ON DELETE CASCADE; -- -- Ограничения внешнего ключа таблицы `Themes` -- ALTER TABLE `Themes` ADD CONSTRAINT `themes_ibfk_1` FOREIGN KEY (`catid`) REFERENCES `Categories` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `themes_ibfk_2` FOREIGN KEY (`userid`) REFERENCES `Users` (`id`) ON DELETE CASCADE, ADD CONSTRAINT `themes_ibfk_3` FOREIGN KEY (`statusid`) REFERENCES `Statuses` (`id`) ON DELETE CASCADE; -- -- Ограничения внешнего ключа таблицы `Users` -- ALTER TABLE `Users` ADD CONSTRAINT `users_ibfk_1` FOREIGN KEY (`roleid`) REFERENCES `Roles` (`id`) ON DELETE CASCADE; /*!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 */;
-- +goose Up -- SQL in this section is executed when the migration is applied. CREATE TABLE book_todo ( id SERIAL, book_id INTEGER NOT NULL, comment TEXT NOT NULL, created_at TIMESTAMPTZ NOT NULL DEFAULT now(), PRIMARY KEY (id), FOREIGN KEY (book_id) REFERENCES book (id) ); -- +goose Down -- SQL in this section is executed when the migration is rolled back. DROP TABLE book_todo;
SELECT UPPER(fiche_personne.nom) AS 'NOM', fiche_personne.prenom, abonnement.prix FROM fiche_personne INNER JOIN membre ON fiche_personne.id_perso = membre.id_fiche_perso INNER JOIN abonnement ON membre.id_abo = abonnement.id_abo WHERE abonnement.prix > 42 ORDER BY fiche_personne.nom, fiche_personne.prenom;
insert into memberTBL values('Figure', '연아', '경기도 군포시 당정동'); select * from memberTBL; update memberTBL set memeberaddress='서울 강남구 역삼동' where memberName='연아'; delete from memberTBL where membername='연아'; create table deletedMemberTBL( memberID char(8), memername nchar(5), memberaddress nvarchar2(20), deletedDate date --삭제한 날짜 ); create trigger trg_deleteMemberTBL --트리거 이름 after delete --삭제후에 작동하게 지정 on memberTBL --트리거를 부착할 테이블 for each row --각 행마다 적용됨 begin -- : old 테이블의 내용을 백업 테이블에 삽입 insert into deletedMemberTBL values(:old.memberID, :old.memberName, :old.memberaddress, sysdate()); end; select * from memberTBL; delete from memberTBL where memberName='당탕이'; select * from deletedMemberTBL;
--修改日期:20121127 --修改人:高枫 --修改内容:GJ-RZ-06_ 系统功能-融资保证金缴费通知 --修改内容:系统菜单 增加 融资保证金缴费通知 --参数设置: DECLARE VN_COUNT NUMBER; BEGIN SELECT COUNT(*) INTO VN_COUNT FROM bt_sys_res t1, bt_sys_res t2 WHERE t1.sys_code='cms' AND t1.res_name='融资保证金缴费通知' AND t1.father_code=t2.res_code AND t2.res_name='贷款管理'; IF VN_COUNT < 1 THEN 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) SELECT (SELECT MAX(T1.RES_CODE) + 1 FROM BT_SYS_RES T1), '融资保证金缴费通知', 'cms', RES_CODE, '/cms/outFinancRecordQueryLoad.jsp', '0', '1', '0', '0', (SELECT MAX(T2.RES_ORDER)+1 FROM BT_SYS_RES T2 WHERE T2.FATHER_CODE = T3.RES_CODE AND T2.SYS_CODE = 'cms'), NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 2, '' FROM BT_SYS_RES T3 WHERE T3.RES_NAME = '贷款管理' AND T3.SYS_CODE = 'cms'; END IF; COMMIT; END; / CREATE TABLE OUTFINANCRECORD( FINANCID VARCHAR2(32) NOT NULL, --融资通知id FINANCODE VARCHAR2(16), --融资通知code CORP_ID VARCHAR2(10), --融资申请单位 END_DATE DATE, --截止日期 OUTFINANCMONEY NUMBER(15,2), MARGINRATE NUMBER(9,6), --保证金比率 PAYOUTFINANCMONEY NUMBER(15,2),--应缴保证金 COUNTPAYOUTFINANCMONEY NUMBER(15,2), --累计已缴的保证金 THISPAYOUTFINANCMONEY NUMBER(15,2), --本次应应缴保证金 PAYDATE DATE, --缴费时间 STATE INT, --缴费记录状态 REMARK VARCHAR2(300), --附言 APPROVES VARCHAR2(200), --操作人 UPDATEUSER VARCHAR2(200), --修改人 NEXTCHECKER VARCHAR2(200), --确认人 VOUCHERNO VARCHAR2(20), --凭证号 CONSTRAINT PK_OUTFINANCRECORD PRIMARY KEY (FINANCID) );
BEGIN TRANSACTION; ALTER TABLE profile RENAME COLUMN identity_management_site_minder TO idm_site_minder; ALTER TABLE profile RENAME COLUMN identity_management_keycloak TO idm_keycloak; ALTER TABLE profile RENAME COLUMN identity_management_active_dir to idm_active_dir; END TRANSACTION;
delete from core_crm_available_duration where mykatastima=:mykatastima; INSERT INTO core_crm_available_duration( myid,mykatastima,title, totalmonths, ordering) VALUES (1,:mykatastima,'Μήνας', 1, 10), (5,:mykatastima,'2Μηνο', 2, 5), (10,:mykatastima,'3Mηνο', 3, 20), (20,:mykatastima,'4Mηνο', 4, 30), (30,:mykatastima,'6Mηνο', 6, 40), (40,:mykatastima,'8Mηνο', 8, 50), (50,:mykatastima,'Ετήσιο', 12, 60); INSERT INTO core_crm_available_duration( myid,mykatastima,title, totalweeks, ordering) VALUES (1000,:mykatastima,'Εβδομαδιαίο', 1, 1000); INSERT INTO core_crm_available_duration( myid,mykatastima,title, totalminutes, ordering) VALUES (2000,:mykatastima,'30''', 30, 2000), (2010,:mykatastima,'55''', 55, 2010), (2020,:mykatastima,'60''', 60, 2020); INSERT INTO core_crm_available_duration( myid,mykatastima,title, totaldays, ordering) VALUES (3000,:mykatastima,'Ημερήσιο', 1, 3000);
CREATE TABLE [Files].[Contents] ( [ContentId] INT IDENTITY (1, 1) NOT NULL, [Name] NVARCHAR (250) NOT NULL, [Content] VARBINARY (MAX) NULL, [Cheksum] VARCHAR (32) NOT NULL, CONSTRAINT [PK_tFileContents] PRIMARY KEY CLUSTERED ([ContentId] ASC) );
select id_acount, codarq, codmod, id_modulo, id_item, trim(nomemod) as esquema, trim(nomearq) as tabela, case actipo when 'A' then 'U' when 'E' then 'D' else 'I' end as operacao, 'db_auditoria_'|| trim(to_char(anousu, '0000')) || trim(to_char(mesusu, '00')) as particao, fc_xid_current() as transacao, datahr_sessao as datahora_sessao, datahr as datahora_servidor, anousu::text || mesusu::text as anomes, login, id_usuario, pkey_nome_campo, pkey_valor, mudancas_nome_campo, mudancas_valor_antigo, mudancas_valor_novo, codsequen, instit, anousu::text || '-' || mesusu::text ||'-01 00:00:00.000000' as datahora_ini, anousu::text || '-' || mesusu::text ||'-'|| fc_ultimodiames(anousu::INTEGER, mesusu::INTEGER)::TEXT || ' 23:59:59.999999' as datahora_fim from (select x.id_acount, b.codarq, b.codmod, coalesce(la.id_modulo, dp.id_modulo) as id_modulo, coalesce(la.id_item, dp.id_item) as id_item, c.nomemod, a.nomearq, x.actipo, coalesce((min(la.data)||' '||min(la.hora))::timestamp, to_timestamp(min(y.datahr))) as datahr, to_timestamp(min(y.datahr)) as datahr_sessao, extract(year from coalesce((min(la.data)||' '||min(la.hora))::timestamp, to_timestamp(min(y.datahr))) ) as anousu, extract(month from coalesce((min(la.data)||' '||min(la.hora))::timestamp, to_timestamp(min(y.datahr))) ) as mesusu, z.login, y.id_usuario, pkey_nome_campo, pkey_valor, array_accum((trim(w.nomecam)) order by y.codcam) as mudancas_nome_campo, array_accum( nullif((case x.actipo when 'E' then y.contatu else y.contant end), '') order by y.codcam) as mudancas_valor_antigo, array_accum( nullif((case x.actipo when 'E' then y.contant else y.contatu end), '') order by y.codcam) as mudancas_valor_novo, la.codsequen, coalesce(fc_iif(exists(select 1 from db_config where codigo = la.instit), la.instit, NULL), (coalesce( (select min(i.id_instit) from db_userinst i where i.id_usuario = y.id_usuario), (select codigo from db_config where prefeitura is true limit 1) ))) as instit from (select id_acount, actipo, array_accum(trim(nomecam) order by b.codcam) as pkey_nome_campo, array_accum(campotext order by b.codcam) as pkey_valor from db_acountkey{$sufixo} a join db_syscampo b on b.codcam = a.id_codcam where a.id_acount between {$acount_ini} and {$acount_fim} group by id_acount, actipo) as x join db_acount{$sufixo} y on y.id_acount = x.id_acount and trim(contant) <> trim(contatu) join db_syscampo w on w.codcam = y.codcam join db_sysarquivo a on a.codarq = y.codarq join db_sysarqmod b on b.codarq = y.codarq join db_sysmodulo c on c.codmod = b.codmod join db_usuarios z on z.id_usuario = y.id_usuario left join db_acountacesso{$sufixo} l on l.id_acount = y.id_acount left join db_logsacessa la on la.codsequen = l.codsequen and la.data between '{$data_ini}'::date and '{$data_fim}'::date and la.instit = any('{$instit}'::integer[]) left join db_auditoria_migracao_depara_codarq_codmod_id_modulo dp on dp.codarq = b.codarq and dp.codmod = b.codmod group by 1, 2, 3, 4, 5, 6, 7, 8, 13, 14, 15, 16, 20, 21) as acount;
-- Account ------------------------------------------------------------------------------------------------------------ SELECT * FROM kobalttown.user_account; SELECT * FROM kobalttown.user_credential; SELECT * FROM kobalttown.user_enable_code; SELECT * FROM kobalttown.cfg_enable_code_status; SELECT * FROM kobalttown.view_account; SELECT * FROM kobalttown.view_account_enable_code; SELECT * FROM kobalttown.log_account; SELECT * FROM kobalttown.log_credential; SELECT * FROM kobalttown.log_enable_code; -- Note --------------------------------------------------------------------------------------------------------------- SELECT * FROM kobalttown.user_note; SELECT * FROM kobalttown.user_note_snapshot; SELECT * FROM kobalttown.user_note_comment; SELECT * FROM kobalttown.view_note; SELECT * FROM kobalttown.view_note_comment;
-- replication_partners -- -- replication_partners maintains a list of SQL servers that -- should be used as mirrors for this schema. CREATE TABLE replication_partners ( id NUMBER, rephost VARCHAR2(100) );
create index IX_57835F0B on DXP_employee (uuid_[$COLUMN_LENGTH:75$], companyId); create unique index IX_FDE2C4D on DXP_employee (uuid_[$COLUMN_LENGTH:75$], groupId);
CREATE TABLE clowns ( id INTEGER PRIMARY KEY, name VARCHAR, nose_color VARCHAR, shoe_size INTEGER );
DROP TABLE IF EXISTS `dictionary`; CREATE TABLE IF NOT EXISTS `dictionary` ( `NR_SEQUENCE` int(255) NOT NULL AUTO_INCREMENT, `DS_NAME` varchar(255) NOT NULL, `CD_TYPE` int(255) NOT NULL, `DS_CONTENT` mediumtext, `DT_INSERTION` date NOT NULL, `CD_USER` int(255) NOT NULL, `IS_ACTIVE` tinyint(1) NOT NULL, PRIMARY KEY (`NR_SEQUENCE`), UNIQUE KEY `nr_sequence_UNIQUE` (`NR_SEQUENCE`), KEY `FK_OBJECT_TYPE_idx` (`CD_TYPE`), KEY `FK_DIC_USER_idx` (`CD_USER`), CONSTRAINT `FK_DIC_TYPE` FOREIGN KEY (`CD_TYPE`) REFERENCES `objects_types` (`CD_OBJECT_TYPE`), CONSTRAINT `FK_DIC_USER` FOREIGN KEY (`CD_USER`) REFERENCES `application_user` (`nr_sequence`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8;
CREATE PROCEDURE jxhpfs.getbal( DEPTIN char(3)) L1:BEGIN DECLARE v_at_end1 ,v_at_end2 integer DEFAULT 0; DECLARE v_ln_ac VARCHAR(27); DECLARE v_max_dte VARCHAR(10); DECLARE v_LNCONTRACTNO DECIMAL(15,2); DECLARE v_TXN_DTE DECIMAL(15,2); DECLARE v_PRC DECIMAL(15,2); DECLARE v_PAY_INT DECIMAL(15,2); DECLARE v_LN_BAL DECIMAL(15,2); DECLARE c1 CURSOR FOR select LNCONTRACTNO,max(TXN_DTE) from JXHPFS.XGJPAIED group by LNCONTRACTNO; DECLARE c2 CURSOR FOR select LNCONTRACTNO,TXN_DTE,PRC,PAY_INT from JXHPFS.XGJPAIED where LNCONTRACTNO = v_ln_ac and LN_BAL is null order by TXN_DTE desc; --最大日期 OPEN c1; FETCH_LOOP: LOOP FETCH c1 INTO v_ln_ac, v_max_dte; IF v_at_end1 <> 0 THEN -- loop until last row of the cursor LEAVE FETCH_LOOP; END IF; ---获取余额 select LN_BAL into v_LN_BAL from JXHPFS.XGJPAIED where LNCONTRACTNO = v_ln_ac and TXN_DTE= v_max_dte; --把其他都置为空 update JXHPFS.XGJPAIED set LN_BAL= null where LNCONTRACTNO = v_ln_ac and TXN_DTE !=v_max_dte; OPEN c2; FETCH_LOOP2: LOOP FETCH c2 INTO v_ln_ac, v_TXN_DTE,v_PRC,v_PAY_INT,v_LN_BAL; IF v_at_end2 <> 0 THEN -- loop until last row of the cursor LEAVE FETCH_LOOP2; END IF; set v_LN_BAL=v_PRC+v_PAY_INT+v_LN_BAL; update JXHPFS.XGJPAIED set LN_BAL = v_LN_BAL where LNCONTRACTNO = v_LNCONTRACTNO and TXN_DTE = v_TXN_DTE; END LOOP FETCH_LOOP2; close c2; END LOOP FETCH_LOOP; close c1; END L1 @
DELETE FROM deals WHERE true; INSERT INTO deals(id, user_id, status_id) VALUES (1, 1, 1), (2, 2, 1), (3, 3, 1);
UPDATE `subscribes` SET `stopped` = now() WHERE `id` = ?;
DROP TABLE IF EXISTS USUARIO_USR; CREATE TABLE USUARIO_USR ( USR_ID CHAR(32) NOT NULL, USR_LOGIN char(8) DEFAULT NULL, USR_ACTIVO char(1) DEFAULT NULL, USR_PASSWORD char(50) DEFAULT NULL, USR_NOMBRE char(50) DEFAULT NULL, USR_APELLIDO1 char(50) DEFAULT NULL, USR_APELLIDO2 char(50) DEFAULT NULL, USR_COUNTRY char(2) DEFAULT NULL, USR_LANG char(2) DEFAULT NULL, USR_VARIANT char(25) DEFAULT NULL, PRIMARY KEY (USR_ID), UNIQUE KEY INX_LOGIN (USR_LOGIN), KEY INX_ACTIVO (USR_ACTIVO,USR_LOGIN) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ; DROP TABLE IF EXISTS GRUPO_GRP; CREATE TABLE GRUPO_GRP ( GRP_ID CHAR(32) NOT NULL, GRP_DESC char(255) DEFAULT NULL, PRIMARY KEY (GRP_ID) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ; DROP TABLE IF EXISTS ROLE_ROL; CREATE TABLE ROLE_ROL ( ROL_ID CHAR(32) NOT NULL, ROL_NAME char(20) DEFAULT NULL, ROL_DESC char(255) DEFAULT NULL, PRIMARY KEY (ROL_ID), UNIQUE KEY INX_ROLNAME (ROL_NAME) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ; DROP TABLE IF EXISTS GRP_GRP; CREATE TABLE GRP_GRP ( GRP_ID CHAR(32) NOT NULL, GRP_ID1 CHAR(32) NOT NULL, PRIMARY KEY (GRP_ID,GRP_ID1), KEY INDX_GRP_ROL (GRP_ID) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ; DROP TABLE IF EXISTS GRP_ROL; CREATE TABLE GRP_ROL ( GRP_ID CHAR(32) NOT NULL, ROL_ID CHAR(32) NOT NULL, PRIMARY KEY (GRP_ID,ROL_ID), KEY INDX_GRP_ROL (GRP_ID) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ; DROP TABLE IF EXISTS USR_GRP; CREATE TABLE USR_GRP ( USR_ID CHAR(32) NOT NULL, GRP_ID CHAR(32) NOT NULL, PRIMARY KEY (USR_ID,GRP_ID), KEY INDX_USR_ROL (USR_ID) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ; DROP TABLE IF EXISTS USR_ROL; CREATE TABLE USR_ROL ( USR_ID CHAR(32) NOT NULL, ROL_ID CHAR(32) NOT NULL, PRIMARY KEY (USR_ID,ROL_ID), KEY INDX_USR_ROL (USR_ID) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ;
ALTER TABLE `videos` DROP COLUMN `created`, DROP COLUMN `updated`;
SELECT knife_extract_date('{"a":{"b": {"c": "1980"}}}', '.a.b.c', 'date', 'min'); SELECT knife_extract_date('{"a":{"b": {"c": "1980-02"}}}', '.a.b.c', 'date', 'min'); SELECT knife_extract_date('{"a":{"b": {"c": "1980-02-05"}}}', '.a.b.c', 'date', 'min'); SELECT knife_extract_date('{"a":{"b": {"c": "1980-02-05T08"}}}', '.a.b.c', 'date', 'min'); SELECT knife_extract_date('{"a":{"b": {"c": "1980-02-05T08:30"}}}', '.a.b.c', 'date', 'min'); SELECT knife_extract_date('{"a":["1980-02-05T08:30", "1976-01", "1952-02-03"]}', '.a', 'date', 'min'); SELECT knife_extract_date('{"a":{"b": {"c": "1980"}}}', '.a.b.c', 'date', 'max'); SELECT knife_extract_date('{"a":{"b": {"c": "1980-02"}}}', '.a.b.c', 'date', 'max'); SELECT knife_extract_date('{"a":{"b": {"c": "1980-02-05"}}}', '.a.b.c', 'date', 'max'); SELECT knife_extract_date('{"a":{"b": {"c": "1980-02-05T08"}}}', '.a.b.c', 'date', 'max'); SELECT knife_extract_date('{"a":{"b": {"c": "1980-02-05T08:30"}}}', '.a.b.c', 'date', 'max'); SELECT knife_extract_date('{"a":{"b": {"c": "1980-02-05T08:30+05"}}}', '.a.b.c', 'date', 'max'); SELECT knife_extract_date('{"a":["1980-02-05T08:30", "1976-01", "1952-02-03"]}', '.a', 'date', 'max'); --- time SELECT knife_extract_date('{"time": "11:00:00" }', '.time', 'time' , 'max'); SELECT knife_extract_date('{"time": "11:00:00" }', '.time', 'time' , 'min'); SELECT knife_extract_date('{"time": "23:59:59" }', '.time', 'time' , 'max'); SELECT knife_extract_date('{"time": "00:00:01" }', '.time', 'time' , 'min'); SELECT knife_extract_date('{"time": ["11:00:00", "12:00:00", "13:00:00"] }', '.time', 'time' , 'max'); SELECT knife_extract_date('{"time": ["11:00:00", "12:00:00", "13:00:00"] }', '.time', 'time' , 'min'); SELECT knife_extract_date('{"time": ["23:59:59", "11:00:00", "12:00:00"] }', '.time', 'time' , 'max'); SELECT knife_extract_date('{"time": ["00:00:01", "11:00:00", "12:00:00"] }', '.time', 'time' , 'min'); SELECT knife_extract_date('{"time": ["00:00:01", "11:00:00", "23:59:59"] }', '.time', 'time' , 'min'); SELECT knife_extract_date('{"time": ["00:00:01", "11:00:00", "23:59:59"] }', '.time', 'time' , 'max'); --- Period SELECT knife_extract_date('{"period": {"start": "1991-01-01", "end": "1991-12-31"}}', '.period', 'Period' , 'max'); SELECT knife_extract_date('{"period": {"start": "1991-01-01", "end": "1991-12-31"}}', '.period', 'Period' , 'min'); SELECT knife_extract_date('{"period": {"start": "1991-01-01"}}', '.period', 'Period' , 'max'); SELECT knife_extract_date('{"period": {"start": "1991-01-01"}}', '.period', 'Period' , 'min'); SELECT knife_extract_date('{"period": {"end": "1991-01-01"}}', '.period', 'Period' , 'max'); SELECT knife_extract_date('{"period": {"end": "1991-01-01"}}', '.period', 'Period' , 'min'); SELECT knife_extract_date('{"period": [{"start": "1991-01-01"}, {"start": "1991-01-01", "end": "1991-12-31"}, {"end": "1991-12-31"}]}', '.period', 'Period' , 'max'); SELECT knife_extract_date('{"period": [{"start": "1991-01-01"}, {"start": "1991-01-01", "end": "1991-12-31"}, {"end": "1991-12-31"}]}', '.period', 'Period' , 'min'); select '''{ "Period":{ "value": {"start": "1991-01-01", "end": "1991-12-31"}, "array": [{"start": "1991-01-01", "end": "1991-12-31"}, {"start": "1990-01-01", "end": "1991-12-31"}, {"start": "1981-01-01"}], "where": [{ "code": "value", "value": {"start": "1991-01-01", "end": "1991-12-31"} }, { "code": "array", "array": [{"start": "1991-01-01", "end": "1991-12-31"}, {"start": "1990-01-01", "end": "1991-12-31"}, {"start": "1981-01-01"}] }, { "code": "where", "where": [ {"code": "value", "value": {"start": "1991-01-01", "end": "1991-12-31"}}, {"code": "array", "array": [{"start": "1991-01-01", "end": "1991-12-31"}, {"start": "1990-01-01", "end": "1991-12-31"}, {"start": "1981-01-01"}]} ] } ] } }''' resource \gset SELECT knife_extract_date(:resource, '.Period.value', 'Period' , 'max'); SELECT knife_extract_date(:resource, '.Period.array', 'Period' , 'max'); SELECT knife_extract_date(:resource, '.Period.where.where(code=value).value', 'Period' , 'max'); SELECT knife_extract_date(:resource, '.Period.where.where(code=array).array', 'Period' , 'max'); SELECT knife_extract_date(:resource, '.Period.where.where(code=where).where.where(code=value).value', 'Period' , 'max'); SELECT knife_extract_date(:resource, '.Period.where.where(code=where).where.where(code=array).array', 'Period' , 'max'); --- Timing SELECT knife_extract_date('{"timing": {"event": ["1992-12-31"]}}', '.timing', 'Timing' , 'max'); SELECT knife_extract_date('{"timing": {"event": ["1992-10-10"]}}', '.timing', 'Timing' , 'max'); SELECT knife_extract_date('{"timing": {"event": ["1991-01-01"]}}', '.timing', 'Timing' , 'min'); SELECT knife_extract_date('{"timing": {"event": ["1991-01-04"]}}', '.timing', 'Timing' , 'min'); SELECT knife_extract_date('{"timing": {"event": ["1993-01-01", "1992-12-31"]}}', '.timing', 'Timing' , 'max'); SELECT knife_extract_date('{"timing": {"event": ["1993-01-01", "1992-12-31"]}}', '.timing', 'Timing' , 'min'); SELECT knife_extract_date('{"timing": [{"event": ["1992-12-31"]}, {"event": ["1993-12-31"]}, {"event": ["1994-12-31"]}]}', '.timing', 'Timing' , 'max'); SELECT knife_extract_date('{"timing": [{"event": ["1992-01-01"]}, {"event": ["1993-12-31"]}, {"event": ["1994-12-31"]}]}', '.timing', 'Timing' , 'min'); SELECT knife_extract_date('{"timing": [{"event": ["1991-01-01", "1992-12-31"]}, {"event": ["1990-01-01", "1995-12-31"]}, {"event": ["1994-12-31"]}]}', '.timing', 'Timing' , 'max'); SELECT knife_extract_date('{"timing": [{"event": ["1987-01-01", "1992-12-31"]}, {"event": ["1990-01-01", "1995-12-31"]}, {"event": ["1994-12-31"]}]}', '.timing', 'Timing' , 'min'); select '''{ "Timing":{ "value": {"event": ["1991-01-01", "1992-01-01"]}, "array": [{"event": ["1991-01-01"]}, {"event": ["2000-01-01", "1990-01-01"]}, {"event": ["1992-01-01"]}], "where": [{ "code": "value", "value": {"event": ["1991-01-01", "1992-01-01"]} }, { "code": "array", "array": [{"event": ["1991-01-01"]}, {"event": ["2000-01-01", "1990-01-01"]}, {"event": ["1992-01-01"]}] }, { "code": "where", "where": [ {"code": "value", "value": {"event": ["1991-01-01", "1992-01-01"]}}, {"code": "array", "array": [{"event": ["1991-01-01"]}, {"event": ["2000-01-01", "1990-01-01"]}, {"event": ["1992-01-01"]}]} ] } ] } }''' resource \gset SELECT knife_extract_date(:resource, '.Timing.value', 'Timing' , 'max'); SELECT knife_extract_date(:resource, '.Timing.array', 'Timing' , 'max'); SELECT knife_extract_date(:resource, '.Timing.where.where(code=value).value', 'Timing' , 'max'); SELECT knife_extract_date(:resource, '.Timing.where.where(code=array).array', 'Timing' , 'max'); SELECT knife_extract_date(:resource, '.Timing.where.where(code=where).where.where(code=value).value', 'Timing' , 'max'); SELECT knife_extract_date(:resource, '.Timing.where.where(code=where).where.where(code=array).array', 'Timing' , 'max'); SET TIME ZONE '+03'; -- SELECT fhirpath_date_bound('2005-08-09T13:30:42Z', 'min'); -- SELECT fhirpath_date_bound('2005-08-09T13:30:42Z', 'max'); -- SELECT fhirpath_date_bound('2005-08-09T13:30:42+03', 'min'); -- SELECT fhirpath_date_bound('2005-08-09T13:30:42+03', 'max'); SELECT knife_extract_date('{"a": "2005-08-09T13:00:00+03"}', '.a', 'date', 'min'); SELECT knife_extract_date('{"a": "2005-08-09T13:00:00Z"}', '.a', 'date', 'min'); SET TIME ZONE 'utc'; -- SELECT fhirpath_date_bound('2005-08-09T13:30:42Z', 'min'); -- SELECT fhirpath_date_bound('2005-08-09T13:30:42Z', 'max'); -- SELECT fhirpath_date_bound('2005-08-09T13:30:42+03', 'min'); -- SELECT fhirpath_date_bound('2005-08-09T13:30:42+03', 'max'); SELECT knife_extract_date('{"a": "2005-08-09T13:00:00+03"}', '.a', 'date', 'min'); SELECT knife_extract_date('{"a": "2005-08-09T13:00:00Z"}', '.a', 'date', 'min'); SELECT knife_extract_date('{"a": "2005-08-09T13:00:00Z"}', '.a', 'date', 'min'); SELECT knife_extract_date('{"a": "2005-08-09T13:00:00Z"}', '.a', 'date', 'min'); SELECT knife_extract_date('{"a": "2005-08-09T13"}', '.a', 'date', 'min'); SELECT knife_extract_date('{"a": "2005-08-09T13:0"}', '.a', 'date', 'min'); SELECT knife_extract_date('{"a": "2005-08-09T13:00"}', '.a', 'date', 'min'); SELECT knife_extract_date('{"a": "2005-08-09T13:00:00"}', '.a', 'date', 'min'); SELECT knife_extract_date('{"a": "2005-08-09T13:00:0"}', '.a', 'date', 'min'); SELECT knife_extract_date('{"a": "2005-08-09T13:00:00Z"}', '.a', 'date', 'min'); SELECT knife_extract_date('{"a": "2005-08-09T11:00:00+11"}', '.a', 'date', 'min'); SELECT knife_extract_date('{"a": "2005-08-09T11:00:00+11"}', '.a', 'date', 'max'); -- SELECT fhirpath_date_bound('2005-08-09T11:00:00+11', 'min'); -- SELECT fhirpath_date_bound('2005-08-09T11:00:00+11', 'max'); SELECT knife_extract_date('{"a": "2005-08-09T11:00:00+11"}', '.a', 'date', 'max') <= fhirpath_date_bound('2005-08-09T11:00:00+11', 'max'); SELECT knife_extract_date('{"a": "2005-08-09T11:00:00+11"}', '.a', 'date', 'min') >= fhirpath_date_bound('2005-08-09T11:00:00+11', 'min'); SELECT knife_extract_date('{"a": {"start": "2005-08-09T11:00:00+11"}}', '.a', 'Period', 'min'); SELECT knife_extract_date('{"a": {"start": "2005-08-09T11:00:00+11"}}', '.a', 'Period', 'min') >= fhirpath_date_bound('2005-08-09T11:00:00+11', 'min'); SELECT knife_extract_date('{"a": {"end": "2005-08-09T12:00:00+11"}}', '.a', 'Period', 'max'); SELECT knife_extract_date('{"a": {"end": "2005-08-09T12:00:00+11"}}', '.a', 'Period', 'max') <= fhirpath_date_bound('2005-08-09T12:00:00+11', 'min'); SELECT fhirpath_date_bound('2005-08-09T09:00:00+11', 'min'); -- should not be 2006 SELECT fhirpath_date_bound('2005', 'max'); SELECT fhirpath_date_bound('2005-03', 'max'); SELECT fhirpath_date_bound('2005-02', 'max'); SELECT fhirpath_date_bound('2005-03-03', 'max'); SELECT fhirpath_date_bound('2005-03-03T10:00', 'max'); SELECT fhirpath_date_bound('2005-03-03T10', 'max'); SELECT fhirpath_date_bound('2005-03-03T10:00:00', 'max'); SELECT fhirpath_date_bound('2005-03-03T10:00:00.5', 'max'); SELECT fhirpath_date_bound('2005-03-03T10:00:00.55', 'max'); SELECT fhirpath_date_bound('2005-03-03T10:00:00.555', 'max'); SELECT fhirpath_date_bound('2005-03-03T10:00:00.5555', 'max'); SELECT fhirpath_date_bound('2005-03-03T10:00:00.55555', 'max'); -- should not interesect SELECT fhirpath_date_bound('2005', 'max') < fhirpath_date_bound('2006', 'min'); SELECT fhirpath_date_bound('1979', 'max'); SELECT fhirpath_date_bound('1980', 'min'); SELECT fhirpath_date_bound('1979', 'max') < fhirpath_date_bound('1980', 'min'); SELECT knife_extract_date('{"propPeriod": {"end": "2005-08-09T12:00:00+11"}}', '.prop', 'Polymorphic', 'max'); -- poly select knife_extract_date('{"performedPeriod": {"start": "1991-01-01", "end": "1991-12-31"}}', '.performed', 'Polymorphic', 'max'); select knife_extract_date('{"performedDateTime": "1980-02-05T08:30"}', '.performed', 'Polymorphic', 'min'); select knife_extract_date('{"arr": [ {"code":"code_1", "performedPeriod": {"start": "1993-01-01", "end": "1993-12-31"}}, {"code":"code_2", "performedPeriod": {"start": "1991-01-01", "end": "1991-12-31"}} ]}', '.arr.where(code=code_1).performed', 'Polymorphic', 'max'); SELECT knife_extract_date('{"activity": {"detail": {"scheduledTiming": {"event": ["2017-02-12T00:00:00.000Z"]}}}}', '.activity.detail.scheduled', 'Polymorphic', 'max'); SELECT knife_extract_date('{"activity": {"detail": {"scheduledString": "some human date as string"}}}', '.activity.detail.scheduled', 'Polymorphic', 'max'); SELECT knife_extract_date('{"activity": {"detail": {"scheduled": {"event": ["2017-02-12T00:00:00.000Z"]}}}}', '.activity.detail.scheduled', 'Polymorphic', 'max') is null;
INSERT INTO magazine(name, number, update_time) VALUES('テスト雑誌', 'テスト号数', CURRENT_TIMESTAMP); UPDATE magazine SET magazine_id = 1;
-- phpMyAdmin SQL Dump -- version 3.5.1 -- http://www.phpmyadmin.net -- -- Хост: 127.0.0.1 -- Время создания: Дек 14 2016 г., 13:15 -- Версия сервера: 5.5.25 -- Версия PHP: 5.3.13 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 utf8 */; -- -- База данных: `test` -- -- -------------------------------------------------------- -- -- Структура таблицы `newslist` -- CREATE TABLE IF NOT EXISTS `newslist` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` text NOT NULL, `content` text NOT NULL, `categories` text NOT NULL, `filename` text NOT NULL, `filetype` text NOT NULL, `rating` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=54 ; -- -- Дамп данных таблицы `newslist` -- INSERT INTO `newslist` (`id`, `title`, `content`, `categories`, `filename`, `filetype`, `rating`) VALUES (1, 'Rustam', 'Обыкновенный', 'РљСЌСЃРєРёР»', '', '', 0), (33, '3 категории', 'Запись СЃ тремя категориями', 'РљСЌСЃРєРёР»,РљРѕРЅРєСѓСЂСЃС‹,asd', '', '', 0), (34, 'KAEF', 'РџС…Рґ работает', 'РљСЌСЃРєРёР»,asd', '["mountain-sound.jpg"]', '["image/jpeg"]', 0), (37, 'fdfd', 'fdfdf', 'РљСЌСЃРєРёР»,asd', '["motto.mp3"]', '["audio/mp3"]', 0), (38, 'Еще РѕРґРёРЅ трек', 'Хахаха', 'asd', '["wonder.mp3"]', '["audio/mp3"]', 0), (39, 'Гриффины', 'Прекол', 'РљСЌСЃРєРёР»', '["Family Guy (Гриффины) - Пожарная машина.mp4"]', '["video/mp4"]', 0), (42, 'Мистер Дудец', 'Текст', 'Нету', '["1446523a225d5e.mp3","maxresdefault (1).jpg"]', '["audio/mp3","image/jpeg"]', 0); /*!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 * from eproducts where id = $1;
--修改日期:20120918 --修改人:余川锋 --需求编号:XD-JD03-029 系统功能-增加贷款本金 --参数设置: CREATE OR REPLACE VIEW V_CMS_BILLING AS SELECT CLB.CLB_ID, CLB.CLB_NO, CLB.CLB_LOAN_CORP_ID AS BL_CORP_ID, BL.CORP_CODE AS BL_CORP_CODE, BL.CORP_NAME AS BL_CORP_NAME, CLB.CLB_BORROW_CORP_ID AS BB_CORP_ID, BB.CORP_CODE AS BB_CORP_CODE, BB.CORP_NAME AS BB_CORP_NAME, ROUND(CLB.CLB_LOAN_MONEY, 2) AS CLB_LOAN_MONEY, ROUND(NVL(SUM(CLA.CLA_MONEY), 0), 2) AS CLA_MONEY, ROUND(CLB.CLB_BALANCE, 2) AS CLB_BALANCE, ROUND(CLB.CLB_FIXED_RATE, 6) AS CLB_FIXED_RATE, ROUND(CLB.CLB_AGREEMENT_RATE, 6) AS CLB_AGREEMENT_RATE, CLB.CLB_START_DATE, CLB.CLB_END_DATE, CLB.CLB_LAST_BILLING_DATE FROM CMS_LOAN_BILL CLB LEFT JOIN CMS_LOAN_ABATE CLA ON CLB.CLB_ID = CLA.CLB_ID INNER JOIN BT_CORP BL ON CLB.CLB_LOAN_CORP_ID = BL.ID INNER JOIN BT_CORP BB ON CLB.CLB_BORROW_CORP_ID = BB.ID WHERE CLB.CLB_STATUS=95 GROUP BY CLB.CLB_NO,CLB.CLB_LOAN_CORP_ID,BL.CORP_CODE, BL.CORP_NAME,CLB.CLB_BORROW_CORP_ID,BB.CORP_CODE,BB.CORP_NAME, CLB.CLB_LOAN_MONEY,CLB.CLB_BALANCE,CLB.CLB_FIXED_RATE,CLB.CLB_LAST_BILLING_DATE, CLB.CLB_AGREEMENT_RATE,CLB.CLB_START_DATE,CLB.CLB_END_DATE,CLB.CLB_ID; CREATE OR REPLACE VIEW V_CMS_ACCOUNTINGFEE AS SELECT CLB.CLB_ID, CLB.CLB_NO, CLB.CLB_LOAN_CORP_ID AS BL_CORP_ID, BL.CORP_CODE AS BL_CORP_CODE, BL.CORP_NAME AS BL_CORP_NAME, CLB.CLB_BORROW_CORP_ID AS BB_CORP_ID, BB.CORP_CODE AS BB_CORP_CODE, BB.CORP_NAME AS BB_CORP_NAME, ROUND(CLB.CLB_LOAN_MONEY, 2) AS CLB_LOAN_MONEY, ROUND(NVL(SUM(CLA.CLA_MONEY), 0), 2) AS CLA_MONEY, ROUND(CB.CLB_BALANCE, 2) AS CLB_BALANCE, ROUND(CLB.CLB_FIXED_RATE, 6) AS CLB_FIXED_RATE, ROUND(CLB.CLB_AGREEMENT_RATE, 6) AS CLB_AGREEMENT_RATE, CLB.CLB_START_DATE, CLB.CLB_END_DATE, CB.Notice_Num, CB.FIX_FEE, CB.FIX_FEE_REAL, CB.AGREEMENT_FEE, CB.AGREEMENT_FEE_REAL, CB.BILLING_ID, CB.MAKER, CB.AUDITOR, BU.USER_NAME AS MAKER_NAME, BU2.USER_NAME AS AUDITOR_NAME, CB.STATUS FROM CMS_LOAN_BILL CLB LEFT JOIN CMS_LOAN_ABATE CLA ON CLB.CLB_ID = CLA.CLB_ID INNER JOIN BT_CORP BL ON CLB.CLB_LOAN_CORP_ID = BL.ID INNER JOIN BT_CORP BB ON CLB.CLB_BORROW_CORP_ID = BB.ID INNER JOIN CMS_BILLING CB ON CLB.CLB_ID = CB.CLB_ID LEFT JOIN BT_USER BU ON CB.MAKER=BU.USER_CODE LEFT JOIN BT_USER BU2 ON CB.AUDITOR=BU2.USER_CODE WHERE CLB.CLB_STATUS=95 AND CB.STATUS <> -12 GROUP BY CLB.CLB_ID, CLB.CLB_NO, CLB.CLB_LOAN_CORP_ID, BL.CORP_CODE, BL.CORP_NAME, CLB.CLB_BORROW_CORP_ID, BB.CORP_CODE, BB.CORP_NAME, CLB.CLB_LOAN_MONEY, CB.CLB_BALANCE, CLB.CLB_FIXED_RATE, CLB.CLB_AGREEMENT_RATE, CLB.CLB_START_DATE, CLB.CLB_END_DATE, CB.Notice_Num, CB.FIX_FEE, CB.FIX_FEE_REAL, CB.AGREEMENT_FEE, CB.AGREEMENT_FEE_REAL, BU.USER_NAME, BU2.USER_NAME, CB.MAKER, CB.AUDITOR, CB.BILLING_ID, CB.STATUS;
=========================================================================== ----------------Balance After---------------------------- =========================================================================== SELECT BI_BALAN_IDENT_CONTRACT_ID, BI_AGGR_CHRG_AMOUNT BALANCE_AFTER, BI_BALAN_SNAP_DATE_TIMESTAMP + BI_BALAN_SNAP_DATE_TIME_OFFSET / (60 * 60) / 24 RECEIVED_DATE, BI_BALAN_IDENT_EVENT_TYPE_DESC FROM (SELECT DISTINCT * FROM SYSADM_RX.BI_CRED_ACCOUNTS UNION SELECT DISTINCT * FROM SYSADM_RX.BI_ACCOUNTS) --TEST AND BI_BALAN_IDENT_CONTRACT_ID = 1000023131 ORDER BY 4 DESC ------------------ SELECT * FROM PR_SERV_SPCODE_HIST WHERE ACTION_TYPE_ENTRY = 'MANAGERATEPLAN' ORDER BY 2 DESC SELECT * FROM PR_SERV_SPCODE_HIST WHERE CO_ID = 1000032594 AND sncode = 14 1/21/2017 9:37:23 AM 1/21/2017 11:40:18 AM CTNDI0QMI74953 CTNDI0WC275214 SRV_CTNDI0WC275214 SELECT * FROM contract_all WHERE co_id = 1000032594 SELECT * FROM cashreceipts_all WHERE customer_Id = 1000032500 ORDER BY 1 SELECT BI.BI_AGGR_CHRG_AMOUNT,bi.BI_BALAN_IDENT_COREL_ID, BI_BALAN_SNAP_DATE_TIMESTAMP + BI_BALAN_SNAP_DATE_TIME_OFFSET / (60 * 60) / 24 RECEIVED_DATE, BI_BALAN_IDENT_EVENT_TYPE_DESC FROM SYSADM_RX.BI_CRED_ACCOUNTS BI WHERE BI.BI_BALAN_IDENT_CONTRACT_ID = 1000032594 --AND BI.BI_BALAN_IDENT_COREL_ID ORDER BY 4 DESC
/** * @name 135849752056204 * @manual * @public * @rolesAllowed admin */ Select replicate_generateSchemaName() AS schemaName From (Select COUNT(*) From DUMMYTABLE t1) t_generateSchemaName
-- phpMyAdmin SQL Dump -- version 4.6.6 -- https://www.phpmyadmin.net/ -- -- Servidor: localhost -- Tiempo de generación: 30-05-2019 a las 20:15:16 -- Versión del servidor: 5.7.17-log -- Versión de PHP: 5.6.30 SET FOREIGN_KEY_CHECKS=0; 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 */; -- -- Base de datos: `test_empleados` -- CREATE DATABASE IF NOT EXISTS `test_empleados` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; USE `test_empleados`; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `empleados` -- DROP TABLE IF EXISTS `empleados`; CREATE TABLE `empleados` ( `codigo` varchar(10) NOT NULL, `nombres` varchar(50) NOT NULL, `lugar_nacimiento` varchar(30) NOT NULL, `fecha_nacimiento` varchar(30) NOT NULL, `direccion` varchar(50) NOT NULL, `telefono` varchar(10) NOT NULL, `puesto` int(10) NOT NULL, `estado` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `empleados` -- INSERT INTO `empleados` (`codigo`, `nombres`, `lugar_nacimiento`, `fecha_nacimiento`, `direccion`, `telefono`, `puesto`, `estado`) VALUES ('12', 'jorge', 'solola', '15-05-2019', 'solola', 'solola', 4, 1), ('13', 'sadsad', 'asdasd', '30-05-2019', 'ass', '12321', 4, 1); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `puesto` -- DROP TABLE IF EXISTS `puesto`; CREATE TABLE `puesto` ( `idpuesto` int(10) NOT NULL, `puesto` varchar(50) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `puesto` -- INSERT INTO `puesto` (`idpuesto`, `puesto`) VALUES (2, 'Gerente'), (4, 'Vendedor'); -- -- Índices para tablas volcadas -- -- -- Indices de la tabla `empleados` -- ALTER TABLE `empleados` ADD PRIMARY KEY (`codigo`), ADD KEY `fk_empleados_puesto` (`puesto`); -- -- Indices de la tabla `puesto` -- ALTER TABLE `puesto` ADD PRIMARY KEY (`idpuesto`); -- -- AUTO_INCREMENT de las tablas volcadas -- -- -- AUTO_INCREMENT de la tabla `puesto` -- ALTER TABLE `puesto` MODIFY `idpuesto` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- Restricciones para tablas volcadas -- -- -- Filtros para la tabla `empleados` -- ALTER TABLE `empleados` ADD CONSTRAINT `fk_empleados_puesto` FOREIGN KEY (`puesto`) REFERENCES `puesto` (`idpuesto`) ON DELETE NO ACTION ON UPDATE NO ACTION; SET FOREIGN_KEY_CHECKS=1; /*!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 */;
## Count Basics # How many books are in the database? SELECT COUNT(*) FROM books; # How many author_lnames? SELECT COUNT(author_lname) FROM books; # How many DISTINCT author_lnames? SELECT COUNT(DISTINCT author_lname) FROM books; ##-------------------------------------------------------------------------------- ## GROUP BY SELECT author_lname, COUNT(*) FROM books GROUP BY author_lname; SELECT author_lname, COUNT(*) AS books_written FROM books GROUP BY author_lname ORDER BY books_written DESC; ## ----------------------------------------------------------------- ## MIN and MAX Basics # Find the longest book SELECT MAX(pages) FROM books; SELECT MIN(author_lname) FROM books; # What if I want the title of the longest book? SELECT MAX(pages), title FROM books; ##----------------------------------------------------------------------- ## Subqueries # What if I want the title of the longest book? SELECT title, pages FROM books WHERE pages = (SELECT MAX(pages) FROM books); SELECT MIN(released_year) FROM books; SELECT title, released_year FROM books WHERE released_year = (SELECT MIN(released_year) FROM books); ## --------------------------------------------------------------------- ## Grouping by Multiple Columns SELECT author_fname, author_lname, COUNT(*) FROM books GROUP BY author_lname, author_fname; SELECT CONCAT(author_fname, ' ', author_lname) AS author, COUNT(*) FROM books GROUP BY author; ## ------------------------------------------------------------- ## MIN and MAX with GROUP BY SELECT author_lname, MIN(released_year) FROM books GROUP BY author_lname; SELECT author_lname, MAX(released_year), MIN(released_year) FROM books GROUP BY author_lname; SELECT author_lname, COUNT(*) as books_written, MAX(released_year) AS latest_release, MIN(released_year) AS earliest_release, MAX(pages) AS longest_page_count FROM books GROUP BY author_lname; SELECT author_lname, author_fname, COUNT(*) as books_written, MAX(released_year) AS latest_release, MIN(released_year) AS earliest_release FROM books GROUP BY author_lname, author_fname; ##--------------------------------------------------------- ## SUM # Sum all pages in the entire database SELECT SUM(pages) FROM books; SELECT author_lname, COUNT(*), SUM(pages) FROM books GROUP BY author_lname; ## -------------------------------------------------------------------------- ## AVG SELECT AVG(pages) FROM books; # Calculate the average released_year across all books SELECT AVG(released_year) FROM books; # Calculate the average stock quantity for books released in the same year SELECT released_year, AVG(stock_quantity), COUNT(*) FROM books GROUP BY released_year; ## ------------------------------------------------------------------ ##
-- View: view_cjpl_xxx_contract_to_invoice_sale_typology -- DROP VIEW view_cjpl_xxx_contract_to_invoice_sale_typology; CREATE OR REPLACE VIEW view_cjpl_xxx_contract_to_invoice_sale_typology AS SELECT date(sale_order.date_order) AS date_order, sale_order.name AS so_number, sale_order.id AS so_id, account_invoice.number AS invoice_number, account_invoice.id AS invoice_id, account_invoice.date_invoice, account_analytic_account.name AS contract_number, account_invoice.state AS invoice_status, account_journal.name AS journal_name, account_invoice.contract_id, CASE WHEN sale_order.name IS NULL THEN 'Rental'::character varying ELSE sale_order_type.name END AS sale_type, CASE WHEN sale_order.name IS NULL THEN quote_literal('Direct Contract'::text) ELSE quote_literal('Order Contract'::text) END AS invoice_type FROM account_analytic_account JOIN account_invoice ON account_invoice.contract_id = account_analytic_account.id LEFT JOIN sale_order ON sale_order.project_id = account_analytic_account.id LEFT JOIN account_journal ON account_invoice.journal_id = account_journal.id LEFT JOIN sale_order_type ON sale_order.type_id = sale_order_type.id; ALTER TABLE view_cjpl_xxx_contract_to_invoice_sale_typology OWNER TO postgres; GRANT ALL ON TABLE view_cjpl_xxx_contract_to_invoice_sale_typology TO postgres; GRANT SELECT ON TABLE view_cjpl_xxx_contract_to_invoice_sale_typology TO joomla; -- View: view_cjpl_xxx_direct_invoice_sale_typology -- DROP VIEW view_cjpl_xxx_direct_invoice_sale_typology; CREATE OR REPLACE VIEW view_cjpl_xxx_direct_invoice_sale_typology AS SELECT NULL::date AS date_order, NULL::character varying AS so_number, NULL::integer AS so_id, account_invoice.number AS invoice_number, account_invoice.id AS invoice_id, account_invoice.date_invoice, NULL::integer AS contract_id, NULL::character varying AS contract_number, account_invoice.state AS invoice_status, account_journal.name AS journal_name, NULL::character varying AS sale_type, quote_literal('Direct Sale'::text) AS invoice_type FROM account_invoice JOIN account_journal ON account_invoice.journal_id = account_journal.id WHERE account_invoice.contract_id IS NULL AND NOT (account_invoice.id IN ( SELECT sale_order_invoice_rel.invoice_id FROM sale_order_invoice_rel)); ALTER TABLE view_cjpl_xxx_direct_invoice_sale_typology OWNER TO postgres; GRANT ALL ON TABLE view_cjpl_xxx_direct_invoice_sale_typology TO postgres; GRANT SELECT ON TABLE view_cjpl_xxx_direct_invoice_sale_typology TO joomla; -- View: view_cjpl_xxx_order_to_invoice_sale_typology -- DROP VIEW view_cjpl_xxx_order_to_invoice_sale_typology; CREATE OR REPLACE VIEW view_cjpl_xxx_order_to_invoice_sale_typology AS SELECT date(sale_order.date_order) AS date_order, sale_order.name AS so_number, sale_order.id AS so_id, account_invoice.number AS invoice_number, account_invoice.id AS invoice_id, account_invoice.date_invoice, NULL::integer AS contract_id, NULL::character varying AS contract_number, account_invoice.state AS invoice_status, account_journal.name AS journal_name, sale_order_type.name AS sale_type, quote_literal('Sale Order'::text) AS invoice_type FROM sale_order JOIN sale_order_invoice_rel ON sale_order_invoice_rel.order_id = sale_order.id JOIN account_invoice ON sale_order_invoice_rel.invoice_id = account_invoice.id LEFT JOIN account_journal ON account_invoice.journal_id = account_journal.id JOIN sale_order_type ON sale_order.type_id = sale_order_type.id; ALTER TABLE view_cjpl_xxx_order_to_invoice_sale_typology OWNER TO postgres; GRANT ALL ON TABLE view_cjpl_xxx_order_to_invoice_sale_typology TO postgres; GRANT SELECT ON TABLE view_cjpl_xxx_order_to_invoice_sale_typology TO joomla; -- View: view_cjpl_sale_orders_with_no_invoices -- DROP VIEW view_cjpl_sale_orders_with_no_invoices; CREATE OR REPLACE VIEW view_cjpl_sale_orders_with_no_invoices AS SELECT a.salesperson, a.team_name, a.so_number, a.id, a.order_date, a.order_party_name, a.so_state, a.contract_status FROM view_cjpl_order_basic a WHERE NOT (a.id IN ( SELECT b.so_id FROM view_cjpl_invoice_sale_type b WHERE b.so_id IS NOT NULL)) ORDER BY a.so_number; ALTER TABLE view_cjpl_sale_orders_with_no_invoices OWNER TO postgres; GRANT ALL ON TABLE view_cjpl_sale_orders_with_no_invoices TO postgres; GRANT SELECT ON TABLE view_cjpl_sale_orders_with_no_invoices TO joomla;
#8.查询课程编号1的成绩比课程编号2的成绩高的所有同学的学号、姓名 SELECT Student.SNo AS StudentId, Student.SName FROM Student, Score AS A, Score AS B WHERE Student.SNo = A.SNo AND A.CNo = 1 AND B.CNo = 2 AND A.SNo = B.SNo AND A.SScore > B.SScore; #9.查询所有课程成绩小于60分的同学的学号、姓名 SELECT Student.SNo AS StudentID, Student.SName FROM Student, (SELECT DISTINCT (SNo) FROM Score WHERE SScore < 60) AS A WHERE A.SNo = Student.SNo; #10.查询所有课程成绩大于60分的同学的学号、姓名 SELECT Student.SNo AS StudentID, Student.SName FROM Student, (SELECT DISTINCT (SNo) FROM Score WHERE SScore > 60) AS A WHERE A.SNo = Student.SNo; #11.查询没有学全所有课的同学的学号、姓名 SELECT Student.SNo, Student.SName FROM Score, Student WHERE Student.SNo = Score.SNo GROUP BY Score.SNo HAVING COUNT(Score.CNo) < (SELECT COUNT(Course.CNO) FROM Course); #12.查询至少有一门课程与学号为1的同学所学课程相同的同学的学号和姓名 SELECT DISTINCT Student.SNo, Student.SName FROM Student, Score WHERE Student.SNo = Score.SNo AND Score.CNo IN (SELECT CNo FROM Score WHERE SNo = 1) AND Score.SNo != 1;